deno.land / x / masx200_leetcode_test@10.6.5 / cells-with-odd-values-in-a-matrix / binary_count_one_bigint.ts

binary_count_one_bigint.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
export function binaryCountOneBigint(n: bigint) { let ans = 0n; while (n !== 0n) { if (n % 2n) { ans++; } n >>= 1n; } return ans;}
masx200_leetcode_test

Version Info

Tagged at
a year ago