Created
August 31, 2018 14:14
-
-
Save mauricioaniche/6658d03e9ab43bb7f5f937591205fe75 to your computer and use it in GitHub Desktop.
This file contains 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 bj(left, right): | |
ln = left | |
rn = right | |
if ln > 21: | |
ln = 0 | |
if rn > 21: | |
rn = 0 | |
if ln > rn: | |
return ln | |
else: | |
return rn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment