File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 605
605
* [ Newton Raphson] ( maths/newton_raphson.py )
606
606
* [ Number Of Digits] ( maths/number_of_digits.py )
607
607
* [ Numerical Integration] ( maths/numerical_integration.py )
608
+ * [ Odd Sieve] ( maths/odd_sieve.py )
608
609
* [ Perfect Cube] ( maths/perfect_cube.py )
609
610
* [ Perfect Number] ( maths/perfect_number.py )
610
611
* [ Perfect Square] ( maths/perfect_square.py )
712
713
* [ Gauss Easter] ( other/gauss_easter.py )
713
714
* [ Graham Scan] ( other/graham_scan.py )
714
715
* [ Greedy] ( other/greedy.py )
716
+ * [ Guess The Number Search] ( other/guess_the_number_search.py )
715
717
* [ H Index] ( other/h_index.py )
716
718
* [ Least Recently Used] ( other/least_recently_used.py )
717
719
* [ Lfu Cache] ( other/lfu_cache.py )
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ def answer(number: int) -> str:
148
148
break
149
149
150
150
print (f"guess the number : { last_numbers [- 1 ]} " )
151
- print (f"details : { str ( last_numbers ) } " )
151
+ print (f"details : { last_numbers !s } " )
152
152
153
153
154
154
def main () -> None :
You can’t perform that action at this time.
0 commit comments