Skip to content

Commit 98fddff

Browse files
committed
Create: 0271-encode-and-decode-strings.ts
1 parent ee7a3bc commit 98fddff

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
function encode(strs: string[]): string {
2+
return strs.map((str) => `${str.length}#${str}`).join('');
3+
}
4+
5+
function decode(str: string): string[] {
6+
let decodedWords: string[] = [];
7+
let i = 0;
8+
9+
while (i < str.length) {
10+
let j: number = i;
11+
while (str[j] !== '#') {
12+
j++;
13+
}
14+
let len: number = parseInt(str.slice(i, j), 10);
15+
decodedWords.push(str.slice(j + 1, j + 1 + len));
16+
i = j + 1 + len;
17+
}
18+
return decodedWords;
19+
}
20+
21+
export {};

0 commit comments

Comments
 (0)