This commit is contained in:
Dmitri 2025-07-29 14:25:26 +02:00
commit e4d7afc06a
Signed by: kanopo
GPG Key ID: 759ADD40E3132AC7

View File

@ -0,0 +1,12 @@
// @leet start
function lengthOfLongestSubstring(s: string): number {
let max = 0;
s.split("").map((value, index) => {
const seenString = new Set();
while (true) { }
});
return max;
}
// @leet end