Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created October 21, 2019 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/530bce8caee8cadfb75e445a71fe55d9 to your computer and use it in GitHub Desktop.
Save NMZivkovic/530bce8caee8cadfb75e445a71fe55d9 to your computer and use it in GitHub Desktop.
def nBackAtYa(n: int):
if n < 111:
return n
else:
raise ValueError('n must less than 111')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment