We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a1960 commit 8b957b5Copy full SHA for 8b957b5
โencode-and-decode-strings/uraflower.js
@@ -0,0 +1,16 @@
1
+const encode = function (strs) {
2
+ const separator = '\\';
3
+ return strs.join(separator);
4
+}
5
+
6
7
+const decode = function (str) {
8
9
+ return str.split(separator);
10
11
12
+// ๋ฌธ์ ๊ฐ ๋๋ฌด ๋ณ๋ก๋ค
13
+// ๋ฌธ์ ์์ ์ ์ํ๊ณ ์๋ ํด๋ต๋ ๋ณ๋ก๋ค
14
+// ์ด๋ชจ์ง๊ฐ์ ๊ฑธ ๊ตฌ๋ถ์๋ก ์ฐ๊ฑฐ๋, length๋ฅผ ์์ ๋ฃ์ด์ ๊ตฌ๋ณํ๊ฑฐ๋ ํด๋ ์ฌ์ค ์ ๋๋ก ์ํธํํ๋ค๊ณ ๋งํ ์ ์์
15
+// ๊ทธ๋ฐ ๊ฑธ ์ ๋ต์ผ๋ก ์ ๊ณตํ ๊ฑฐ๋ฉด ์ด๋ฐ ๋ฌธ์ ๋ฅผ ์ ๋ด๋ ๊ฑฐ์ฌ
16
+// ์ด ๋ฌธ์ ๊ฐ Blind 75์ ์ํด ์๋ ์ด์ ๊ฐ ๋ญ๊น...?!
0 commit comments