Returns the sum of truncated primes
()
| 109 | |
| 110 | |
| 111 | def solution() -> int: |
| 112 | """ |
| 113 | Returns the sum of truncated primes |
| 114 | """ |
| 115 | return sum(compute_truncated_primes(11)) |
| 116 | |
| 117 | |
| 118 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected