Skip to content

Instantly share code, notes, and snippets.

@frapercan
frapercan / keybase.md
Last active February 27, 2024 18:01
keyabse

Keybase proof

I hereby claim:

  • I am frapercan on github.
  • I am frapercan (https://keybase.io/frapercan) on keybase.
  • I have a public key ASBPphZrdpIRQGfCFJ2Rir2lNoQ2QNhQXKl1uIdhDJ-cpwo

To claim this, I am signing this object:

@frapercan
frapercan / Dkfb-0.py
Created September 29, 2016 17:10
null created by frapercan - https://repl.it/Dkfb/0
def sum_digits3(n):
r = 0
while n:
r, n = r + (n % 10)**2, n // 10
return r
def reto(a):
r = 1