-
Notifications
You must be signed in to change notification settings - Fork 20
/
LongestSubstringWithoutRepeatingCharacters.js
67 lines (55 loc) · 1.44 KB
/
LongestSubstringWithoutRepeatingCharacters.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* Given a string, find the length of the longest substring without repeating characters.
* Examples:
*
* Given "abcabcbb", the answer is "abc", which the length is 3.
* Given "bbbbb", the answer is "b", with the length of 1.
* Given "pwwkew", the answer is "wke", with the length of 3. Note that the answer must be a substring, "pwke" is a subsequence and not a substring.
*
* Result: Accepted
*/
/**
* @param {string} s
* @return {number}
*/
let lengthOfLongestSubstring = function (s) {
if (s.length === 0) {
return 0;
}
let result = "";
let tmp = "";
let inputChars = s.split('');
for (let i = 0; i < inputChars.length; i++) {
for (let j = 0; j < tmp.length; j++) {
if (inputChars[i] === (tmp[j])) {
tmp = tmp.slice(j + 1, tmp.length);
break;
}
}
tmp += inputChars[i].toString();
if (tmp.length > result.length) {
result = tmp
}
}
return result.length
};
if (lengthOfLongestSubstring("pwwkew") === 3) {
console.log("pass")
} else {
console.error("failed")
}
if (lengthOfLongestSubstring("bbbbbb") === 1) {
console.log("pass")
} else {
console.error("failed")
}
if (lengthOfLongestSubstring("abcabcbb") === 3) {
console.log("pass")
} else {
console.error("failed")
}
if (lengthOfLongestSubstring("dvdf") === 3) {
console.log("pass")
} else {
console.error("failed")
}