Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upHacktoberfest: Project Euler Solution Problem 77 #2782
Conversation
a5ed0b2
to
cf15167
@@ -0,0 +1,68 @@ | |||
""" | |||
Prime summations | |||
Problem 77 |
""" | ||
|
||
|
||
def solution(length=5000) -> int: |
dhruvmanila
Oct 10, 2020
Member
def solution(length=5000) -> int: | |
def solution(length: int = 5000) -> int: |
|
||
|
||
def solution(length=5000) -> int: | ||
"""Ways to write sum of primes |
dhruvmanila
Oct 10, 2020
Member
"""Ways to write sum of primes | |
""" | |
Ways to write the sum of primes |
>>> solution() | ||
71 |
Announcement:This message is sent to all pull requests which are OPEN, NOT MERGED, not containing 'wontfix' label and contains 'Project Euler' or 'Project' or 'Euler' (case doesn't matter) in their title. If this message doesn't apply to your pull request, please ignore this. Message:This is to notify all the users submitting a pull request for the Project Euler solution that the README.md file has been updated with all the style requirements necessary for the directory and solution files. Please read through it and make all the necessary changes required to your submission. |
Describe your change:
Added Euler Project Solution for Problem 77
Checklist:
Fixes: #{$ISSUE_NO}
.