File tree 2 files changed +2
-2
lines changed
project_euler/problem_045
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ def is_pentagonal(n: int) -> bool:
43
43
44
44
def solution (start : int = 144 ) -> int :
45
45
"""
46
- Returns the next number which is traingular , pentagonal and hexagonal.
46
+ Returns the next number which is triangular , pentagonal and hexagonal.
47
47
>>> solution(144)
48
48
1533776805
49
49
"""
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def get_all_tweets(screen_name: str) -> None:
32
32
while len (new_tweets ) > 0 :
33
33
print (f"getting tweets before { oldest } " )
34
34
35
- # all subsiquent requests use the max_id param to prevent duplicates
35
+ # all subsequent requests use the max_id param to prevent duplicates
36
36
new_tweets = api .user_timeline (
37
37
screen_name = screen_name , count = 200 , max_id = oldest
38
38
)
You can’t perform that action at this time.
0 commit comments