Created
April 5, 2017 19:14
-
-
Save VojtaStavik/002a7a80c8374204e6f283da72367f7d 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
func calculateHammingDistance(x: Int, y: Int) -> Int { | |
// Step 1: Find different bits | |
let differentBits = x ^ y | |
// Step 2: Count them | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment