[Swift 알고리즘] - Valid Palindrome (LeetCode)
https://leetcode.com/problems/valid-palindrome/description/ 주어진 문장(s)을 소문자로 바꾼후, 영문/숫자가 아닌걸 제거하고, 주어진 문장과 거꾸로 읽어도 똑같다면 true를 리턴, 다르다면 false를 리턴 내 풀이 class Solution { func isPalindrome(_ s: String) -> Bool { let convertedStr = s .lowercased() .filter { $0.isNumber || $0.isLetter } let reversedStr = String(convertedStr.reversed()) return convertedStr == reversedStr ? true : false } } 소문자로 바꿔주는 메서드..
알고리즘
2023. 8. 22. 07:49
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift joined()
- swift 고차함수
- RTCCameraVideoCapturer
- swift property
- 원티드 프리온보딩
- swift protocol
- Swift 프로그래머스
- 2023년 회고
- swift (programmers)
- Swift Error Handling
- Swift final
- Swift
- ios
- Swift inout
- iOS error
- swift reduce
- removeLast()
- Swift 알고리즘
- Swift init
- swift programmers
- Combine: Asynchronous Programming with Swift
- Swift 내림차순
- Swift ModernRIBs
- Swift joined
- CS 네트워크
- Swift RIBs
- Class
- Swift 프로퍼티
- RIBs tutorial
- Swift Leetcode
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함