Skip to content

Instantly share code, notes, and snippets.

@uyu423
Created September 2, 2025 14:49
Show Gist options
  • Select an option

  • Save uyu423/26e65a076db1a8c359b9e8beb81cde64 to your computer and use it in GitHub Desktop.

Select an option

Save uyu423/26e65a076db1a8c359b9e8beb81cde64 to your computer and use it in GitHub Desktop.
// 비트 연산으로 해시 충돌 최소화
// (단순한 % 연산보다 빠르지만 의도를 이해하기 어려우므로 설명을 남김)
val hash: Int = key.hashCode() & (capacity - 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment