-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_solution.js
109 lines (100 loc) · 3.41 KB
/
my_solution.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/**
* @param {string} s
* @return {number}
*/
const lengthOfLongestSubstring = (s) => {
let tmpMap = new Map(),
charList = s.split(''),
tmpList = [], // Deciding result
result = [],
prevTmpList = [];
for (let i = 0; i < charList.length; i++) {
// Might need extra handle if there is upper/lower case.
let currChar = charList[i],
existCharMap = tmpMap.get(currChar);
if (tmpList.includes(currChar) && tmpList.length > prevTmpList.length) {
console.log("------------- replacing bc >");
prevTmpList = [...tmpList];
}
let nbRemove = tmpList.indexOf(currChar);
for (let j = 0; j <= nbRemove; j++) {
tmpList.shift();
}
tmpList.push(currChar);
// if (existCharMap) {
// if (tmpList.includes(currChar)) {
// console.log("------------- existing char, new tmp!!!");
//
// // console.log(prevTmpList)
// // console.log(tmpList)
//
// if (tmpList.length > prevTmpList.length) {
// console.log("------------- replacing bc >");
// prevTmpList = [...tmpList];
// } else {
// console.log("------------- idc");
//
// }
//
// let nbRemove = tmpList.indexOf(currChar);
// for (let j = 0; j <= nbRemove; j++) {
// console.log("shift loop")
// tmpList.shift();
// }
// tmpList.push(currChar);
//
// // console.log("QHIUSJHHJDSAKHJDKJHASDKJHDKJSAD")
// // console.log(prevTmpList)
// // console.log(tmpList)
//
// // if (tmpList[tmpList.length - 1] == currChar) {
// // tmpList = [currChar]
// // } else {
// // tmpList = [tmpList[tmpList.length - 1], currChar]; // new list
// // }
// } else {
// for (let j = 0; j <= tmpList.indexOf(currChar); j++) {
// console.log("shift loop")
// tmpList.shift();
// }
// tmpList.push(currChar);
// }
//
// // Update values
// existCharMap.nbAppeared += 1;
// tmpMap.set(currChar, existCharMap);
// // }
// } else {
// // Set it into the map if doesnt exists
// tmpMap.set(currChar, { index: i, nbAppeared: 1 });
// tmpList.push(currChar)
// }
// console.log("____________________ output each loop ____________________")
// console.log("tmpList")
// console.log(tmpList)
// console.log("prevTmpList")
// console.log(prevTmpList)
result = prevTmpList.length > tmpList.length ? prevTmpList : tmpList;
}
console.log("final output:")
console.log(tmpMap)
console.log(result)
console.log(result.length)
// console.log("charList output:")
// console.log(charList.length)
// console.log(charList[0])
// console.log(charList[1])
// console.log(charList[0] !== charList[1])
// console.log(result.length)
return result.length;
};
// lengthOfLongestSubstring("abcabcbb") // abc
// lengthOfLongestSubstring("bbbbb") // b
lengthOfLongestSubstring("pwwkew") // wke
// lengthOfLongestSubstring("dvdf") // vdf
// lengthOfLongestSubstring("aa") // 1
// lengthOfLongestSubstring(" ") // 1
// lengthOfLongestSubstring("au") // 2
// lengthOfLongestSubstring("cdd") // 1
// lengthOfLongestSubstring("anviaj") // 5
// lengthOfLongestSubstring("ckilbkd") // 5