[LeetCode] 3. Longest Substring Without Repeating Characters
·
PS/LeetCode
문제https://leetcode.com/problems/longest-substring-without-repeating-characters/description/입력s: String = 문자열0 결과ans: Int = 가장 긴 반복되지 않은 부분문자열 길이해석이제는 생각보다 빠르게 카테고리를 캐치해낸 것 같다. 두개의 포인터를 가지고 이전에 나왔던 문자열이 나오면 왼쪽 인덱스가 증가하고 그렇지 않으면 오른쪽 인덱스가 증가하는 조건이 될 것 같다. 코드import Foundationclass Solution { func lengthOfLongestSubstring(_ s: String) -> Int { let arr = Array(s) let n = arr.c..