Skip to content

Instantly share code, notes, and snippets.

@schaitanya
Created January 22, 2019 03:42
Show Gist options
  • Save schaitanya/bf9a08af6359ead056929c968b8afe16 to your computer and use it in GitHub Desktop.
Save schaitanya/bf9a08af6359ead056929c968b8afe16 to your computer and use it in GitHub Desktop.
func singleNumber(nums []int) int {
i := 0
for _, v := range nums {
i ^= v
}
return i
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment