Solve more problems road to 200.

This commit is contained in:
2024-05-04 09:24:18 -04:00
parent 5ce2c5bcbf
commit a07f34075b
6 changed files with 182 additions and 1 deletions

View File

@@ -102,7 +102,6 @@ def prime_nth(n):
is 1 indexed, i.e. n = 1 -> 2, n = 2 -> 3, etc.
:param n:
"""
if n == 1:
return 2