Skip to content

Instantly share code, notes, and snippets.

@mauricioaniche
Created August 31, 2018 14:14
Show Gist options
  • Save mauricioaniche/6658d03e9ab43bb7f5f937591205fe75 to your computer and use it in GitHub Desktop.
Save mauricioaniche/6658d03e9ab43bb7f5f937591205fe75 to your computer and use it in GitHub Desktop.
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