MCPcopy Create free account
hub / github.com/TheAlgorithms/Python / solution

Function solution

project_euler/problem_037/sol1.py:111–115  ·  view source on GitHub ↗

Returns the sum of truncated primes

()

Source from the content-addressed store, hash-verified

109
110
111def solution() -> int:
112 """
113 Returns the sum of truncated primes
114 """
115 return sum(compute_truncated_primes(11))
116
117
118if __name__ == "__main__":

Callers

nothing calls this directly

Calls 1

compute_truncated_primesFunction · 0.85

Tested by

no test coverage detected