Skip to content

Instantly share code, notes, and snippets.

@nathankrishnan
Created April 9, 2017 18:10
Show Gist options
  • Save nathankrishnan/77cc4b892957039a1fba702ebe5af240 to your computer and use it in GitHub Desktop.
Save nathankrishnan/77cc4b892957039a1fba702ebe5af240 to your computer and use it in GitHub Desktop.
public func insert(_ element: T) {
for hashValuePosition in computeHashes(element) {
array[hashValuePosition] = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment