[Swift 알고리즘] - Valid Parentheses (LeetCode)
https://leetcode.com/problems/valid-parentheses/description/ 주어진 문자열(s)가 유효한지 확인 모든 열려있는 괄호는 같은 타입의 괄호로 닫혀야 함 내 풀이 class Solution { func isValid(_ s: String) -> Bool { guard s.count > 1 else { return false } var stack = [Character]() for char in s { switch char { case "(", "{", "[": stack.append(char) case ")": if stack.last == "(" { stack.removeLast() } else { return false } case "}": if stack...
알고리즘
2023. 8. 24. 09:39
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- swift reduce
- swift (programmers)
- swift programmers
- Swift joined()
- Swift 알고리즘
- Combine: Asynchronous Programming with Swift
- Swift init
- ios
- Swift ModernRIBs
- Swift joined
- swift 고차함수
- RIBs tutorial
- 원티드 프리온보딩
- iOS error
- Swift Leetcode
- Swift
- removeLast()
- Swift inout
- Swift 내림차순
- swift property
- swift protocol
- Swift RIBs
- Swift 프로퍼티
- RTCCameraVideoCapturer
- CS 네트워크
- Class
- 2023년 회고
- Swift Error Handling
- Swift 프로그래머스
- Swift final
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함