Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions python/exercises/10_summation_of_primes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@
import itertools
from functools import reduce

# Description of the problem
# We need to find the sum of the primes below 2,000,000
# The sum of the promes below 10 is 17 (2 + 3 + 5 + 7)


class Solution:

def solution(param: type) -> returnType:
def solution(self, max_number: int) -> int:
pass


input = []
print(Solution().solution(input))