forked from ZoranPandovski/al-go-rithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
498399c
commit 2f2910b
Showing
1 changed file
with
7 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
bit_manipulation/sum_of_pairwise_hamming_distance/README(KR).md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
두 개의 음이 아닌 정수 사이의 Hamming distance는 해당 비트가 다른 위치 수로 정의된다. | ||
|
||
예를 들면 | ||
|
||
HammingDistance(2, 7) 의 값은 2인데, 2(010)와 7(111)의 이진 표현에서 첫 번째 비트와 세 번째 비트만 다르기 때문이다. | ||
|
||
N개의 음이 아닌 정수의 배열을 지정하면 배열에 있는 모든 정수의 쌍에 대한 해밍 거리의 합을 구한다. 답안 모듈로 1000000007을 반환하십시오. |