Skip to content

Commit 2393936

Browse files
authored
Update 0535-encode-and-decode-tinyurl.js
Looking at the code I noticed that the toString function there was pointless considering the fact that js type coersion already converts the number to the string during concatenation. Also I also noticed the else block only returned true or false rather than the string as the question requested, so I added what I think is a fitting solution to that.
1 parent 73882c7 commit 2393936

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

javascript/0535-encode-and-decode-tinyurl.js

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,18 @@
11
// problem link https://leetcode.com/problems/encode-and-decode-tinyurl
22
// time complexity O(1)
33

4-
54
const encodeMap = new Map();
65
const decodeMap = new Map();
76
const base = 'http://tinyurl.com/';
87

98
var encode = function(longUrl) {
109
let shortUrl = ''
1110
if(!encodeMap.has(longUrl)) {
12-
shortUrl = (base + encodeMap.size + 1).toString();
11+
shortUrl = base + encodeMap.size + 1
1312
encodeMap.set(longUrl, shortUrl);
1413
decodeMap.set(shortUrl, longUrl);
15-
} else {
16-
return encodeMap.has(longUrl);
17-
}
18-
19-
return shortUrl;
14+
}
15+
return shortUrl || encodeMap.get(longUrl);
2016
};
2117

2218
var decode = function(shortUrl) {

0 commit comments

Comments
 (0)