Created
October 21, 2019 13:12
-
-
Save NMZivkovic/530bce8caee8cadfb75e445a71fe55d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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