We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd19d81 commit 60ad329Copy full SHA for 60ad329
project_euler/problem_045/sol1.py
@@ -43,7 +43,7 @@ def is_pentagonal(n: int) -> bool:
43
44
def solution(start: int = 144) -> int:
45
"""
46
- Returns the next number which is traingular, pentagonal and hexagonal.
+ Returns the next number which is triangular, pentagonal and hexagonal.
47
>>> solution(144)
48
1533776805
49
web_programming/get_user_tweets.py
@@ -32,7 +32,7 @@ def get_all_tweets(screen_name: str) -> None:
32
while len(new_tweets) > 0:
33
print(f"getting tweets before {oldest}")
34
35
- # all subsiquent requests use the max_id param to prevent duplicates
+ # all subsequent requests use the max_id param to prevent duplicates
36
new_tweets = api.user_timeline(
37
screen_name=screen_name, count=200, max_id=oldest
38
)
0 commit comments