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 6547750 commit bd504ffCopy full SHA for bd504ff
decode-ways/tolluset.ts
encode-and-decode-strings/tolluset.ts
@@ -0,0 +1,7 @@
1
+function encode(arr: string[]): string {
2
+ return arr.join("🎃");
3
+}
4
+
5
+function decode(str: string): string[] {
6
+ return str.split("🎃");
7
0 commit comments