File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 605605 * [ Newton Raphson] ( maths/newton_raphson.py )
606606 * [ Number Of Digits] ( maths/number_of_digits.py )
607607 * [ Numerical Integration] ( maths/numerical_integration.py )
608+ * [ Odd Sieve] ( maths/odd_sieve.py )
608609 * [ Perfect Cube] ( maths/perfect_cube.py )
609610 * [ Perfect Number] ( maths/perfect_number.py )
610611 * [ Perfect Square] ( maths/perfect_square.py )
712713 * [ Gauss Easter] ( other/gauss_easter.py )
713714 * [ Graham Scan] ( other/graham_scan.py )
714715 * [ Greedy] ( other/greedy.py )
716+ * [ Guess The Number Search] ( other/guess_the_number_search.py )
715717 * [ H Index] ( other/h_index.py )
716718 * [ Least Recently Used] ( other/least_recently_used.py )
717719 * [ 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:
148148 break
149149
150150 print (f"guess the number : { last_numbers [- 1 ]} " )
151- print (f"details : { str ( last_numbers ) } " )
151+ print (f"details : { last_numbers !s } " )
152152
153153
154154def main () -> None :
You can’t perform that action at this time.
0 commit comments