Skip to content

Commit 58d5215

Browse files
rain84idoocs
authored andcommitted
style: format code and docs with prettier
1 parent 0edbc6e commit 58d5215

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

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

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -712,14 +712,15 @@ function bitCount(i) {
712712
```
713713

714714
function bitCount(i: number): number {
715-
i = i - ((i >>> 1) & 0x55555555);
716-
i = (i & 0x33333333) + ((i >>> 2) & 0x33333333);
717-
i = (i + (i >>> 4)) & 0x0f0f0f0f;
718-
i = i + (i >>> 8);
719-
i = i + (i >>> 16);
720-
return i & 0x3f;
715+
i = i - ((i >>> 1) & 0x55555555);
716+
i = (i & 0x33333333) + ((i >>> 2) & 0x33333333);
717+
i = (i + (i >>> 4)) & 0x0f0f0f0f;
718+
i = i + (i >>> 8);
719+
i = i + (i >>> 16);
720+
return i & 0x3f;
721721
}
722-
```
722+
723+
````
723724
724725
#### C#
725726
@@ -754,7 +755,7 @@ public class Solution {
754755
return cnt;
755756
}
756757
}
757-
```
758+
````
758759

759760
<!-- tabs:end -->
760761

0 commit comments

Comments
 (0)