Fix broken links by PR #7277 (#7319)

This commit is contained in:
Sagar Giri
2022-10-16 22:45:25 +09:00
committed by GitHub
parent d728f5a96b
commit b5b1eb2f00
3 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,7 @@
def get_1s_count(number: int) -> int:
"""
Count the number of set bits in a 32 bit integer using Brian Kernighan's way.
Ref - http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetKernighan
Ref - https://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetKernighan
>>> get_1s_count(25)
3
>>> get_1s_count(37)