We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 391efe4 + 57676f4 commit c6a817cCopy full SHA for c6a817c
number-of-1-bits/RiaOh.js
@@ -2,6 +2,8 @@
2
* @param {number} n
3
* @return {number}
4
*/
5
+
6
+// week3 다시 올림
7
var hammingWeight = function (n) {
8
const binary = n.toString(2);
9
const arr = [...binary];
valid-palindrome/RiaOh.js
@@ -2,6 +2,7 @@
* @param {string} s
* @return {boolean}
+// Week 3에 다시 올림
var isPalindrome = function (s) {
const arr = [...s];
let text = "";
0 commit comments