MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / solution.py

File solution.py

Codeforces_problems/Number Game/solution.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import math
2def is_prime(n):
3 for i in range(2,int(math.sqrt(n)) +1):
4 if n%i == 0:

Callers

nothing calls this directly

Calls 1

is_primeFunction · 0.85

Tested by

no test coverage detected