Skip to content

Commit 6b06080

Browse files
authored
Update README_EN.md
1 parent 70c1c7f commit 6b06080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solution/0200-0299/0216.Combination Sum III/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ function combinationSum3(k: number, n: number): number[][] {
677677
return ans;
678678
}
679679

680-
function bitCount(i: number) {
680+
function bitCount(i: number): number {
681681
i = i - ((i >>> 1) & 0x55555555);
682682
i = (i & 0x33333333) + ((i >>> 2) & 0x33333333);
683683
i = (i + (i >>> 4)) & 0x0f0f0f0f;

0 commit comments

Comments
 (0)