Skip to content

Instantly share code, notes, and snippets.

@hyunsikjeong
Created September 6, 2020 16:10
Show Gist options
  • Save hyunsikjeong/eaacc9570dc954ccdcd13a143f8234d3 to your computer and use it in GitHub Desktop.
Save hyunsikjeong/eaacc9570dc954ccdcd13a143f8234d3 to your computer and use it in GitHub Desktop.
harmagedon
val = 0xB77C7C
ans = []
while val > 0:
print(val)
val >>= 2
val -= 1
ans.append(val % 4)
ans = ans[::-1]
print(ans)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment