Skip to content

Instantly share code, notes, and snippets.

@Xpktro
Created August 10, 2013 22:30
Show Gist options
  • Save Xpktro/6202473 to your computer and use it in GitHub Desktop.
Save Xpktro/6202473 to your computer and use it in GitHub Desktop.
How to be hired by Antonio Ognio pt. 1
>>> def a(n):
... l = []
... t = 1
... while len(l) != n:
... if t % n == 0: l.append(t)
... t += 1
... return l
...
>>> sum(a(7) + a(13))
1379
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment