Skip to content

Commit f4e70d2

Browse files
committed
🎉 [190] Reverse Bits
1 parent 8d1a547 commit f4e70d2

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

190/my_solution.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* @param {number} n - a positive integer
3+
* @return {number} - a positive integer
4+
*/
5+
const reverseBits = (n) => {
6+
return;
7+
}

190/solution.js

Whitespace-only changes.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
- [22. Generate Parentheses](./22/)
1717
- [53. Maximum Subarray](./53/)
1818
- [121. Best Time to Buy and Sell Stock](./121/)
19+
- [190. Reverse Bits](./190/)
1920
- [191. Number of 1 Bits](./191/)
2021
- [198. House Robber](./198/)
2122
- [200. Number of Islands](./200/)
@@ -54,7 +55,7 @@ iex ./.../solution.ex
5455

5556
Quick create in bash
5657
```ssh
57-
chapter=268 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
58+
chapter=190 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
5859
```
5960

6061
<!--

0 commit comments

Comments
 (0)