Skip to content

Commit 1bcb238

Browse files
committed
提交191 位1的个数
1 parent 885ef00 commit 1bcb238

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

191.位1的个数/191 solution.html

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>Document</title>
8+
</head>
9+
<body>
10+
<script>
11+
// Source : https://leetcode.com/problems/number-of-1-bits/
12+
// Author : 悬笔e绝
13+
// Date : 2019-10-01
14+
15+
/**
16+
* @param {number} n - a positive integer
17+
* @return {number}
18+
*/
19+
20+
var hammingWeight = function(n) {
21+
var ans = 0;
22+
while(n) {
23+
if (n & 1) ans ++;
24+
n /= 2;
25+
}
26+
return ans;
27+
};
28+
</script>
29+
</body>
30+
</html>

0 commit comments

Comments
 (0)