Skip to content

Instantly share code, notes, and snippets.

@vkorbes
Created February 13, 2018 21:25
Show Gist options
  • Save vkorbes/b08426a2939228c7efcfcc49832cd51a to your computer and use it in GitHub Desktop.
Save vkorbes/b08426a2939228c7efcfcc49832cd51a to your computer and use it in GitHub Desktop.
a, _ := strconv.ParseInt(“00011100011”, 2, 64)
b, _ := strconv.ParseInt(“1001100110011001”, 2, 64)
c, _ := strconv.ParseInt(“000011111100100010100”, 2, 64)
fmt.Printf(“%x %x %x”, a, b, c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment