Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 야곰 # 야곰아카데미커리어스타터캠프 #iOS개발자 # 부트캠프
- modern concurrency
- 오블완
- APNS
- SWIFT
- WWDC
- modern concurrency deep dive
- 티스토리챌린지
- ios
Archives
- Today
- Total
Geon
Valid Parentheses 본문
Stack의 appned, pop 연산은 O(1)의 시간복잡도를 갖는다.
Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
class Solution {
func isValid(_ s: String) -> Bool {
var stack: [String] = []
for input in s {
if input == "(" {
stack.append(")")
} else if input == "[" {
stack.append("]")
} else if input == "{" {
stack.append("}")
} else if stack.isEmpty {
return false
} else if let validValue = stack.popLast(), validValue != String(input) {
print(validValue, input, validValue == String(input))
return false
}
}
return stack.isEmpty
}
}
제약조건
1 <= s.length <= 10^4
stack의 경우 list로 구현되어 있고, random access가 가능하여 O(1)의 시간복잡도를 갖고있는 메서드 사용, n번 만큼 for문을 수행함으로, O(n) 시간복잡도를 갖는다.
'코딩테스트' 카테고리의 다른 글
Design Browser History (0) | 2024.01.07 |
---|---|
Deque (0) | 2024.01.07 |
Two Pointer (2) | 2024.01.06 |
제한 조건 보는 법 (0) | 2024.01.04 |
FrogRiverOne (0) | 2022.05.15 |