index
:
clp.git
main
A small Python compiler with optimizer written in Java
Ubuntu
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
progs
/
a459.py
blob: 0ea51a81a7bb75af6c9c25f52cc75a2f7a626636 (
plain
)
1
2
3
4
def divisor(n): for i in range(n): x = len([i for i in range(1,n+1) if not n % i]) return x