We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 696420a commit c21ee61Copy full SHA for c21ee61
README.md
@@ -45,8 +45,6 @@ Minimal and clean example implementations of data structures and algorithms in P
45
- [single_number](bit/single_number.py)
46
- [subsets](bit/subsets.py)
47
- [add_without_operator](bit/add_without_operator.py)
48
-- [cache](cache)
49
- - [lru_cache](cache/lru_cache.py)
50
- [calculator](calculator)
51
- [math_parser](calculator/math_parser.py)
52
- [dfs](dfs)
cache/lru_cache.py
math/nth_digit.py
@@ -17,4 +17,4 @@ def find_nth_digit(n):
17
start *= 10
18
start += (n-1) / len
19
s = str(start)
20
- return int(s[(n-1) % len])
+ return int(s[(n-1) % len])
0 commit comments