[Swift 알고리즘] - 문자열 다루기 기본(Programmers)
https://school.programmers.co.kr/learn/courses/30/lessons/12918 문제 사진 내 풀이 func solution(_ s:String) -> Bool { if s.count == 4 || s.count == 6 { if Int(s) != nil { return true } } return false } solution("12a4") Int로 변환시키는 Int()메서드를 사용하였습니다. 여기서 주의해야할 점은 String -> Int 로 변환시 숫자가 아닌 문자열이 들어갈 수도 있기때문에 Optional로 반환됩니다. 그래서 아래와 같이 nil 이 아닐경우 true를 리턴하게 해줬습니다. if Int(s) != nil { // code } 다른사람의 풀이 fun..
알고리즘
2022. 10. 13. 13:48
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift 내림차순
- Swift 프로퍼티
- swift (programmers)
- Swift ModernRIBs
- ios
- 2023년 회고
- swift property
- Swift 알고리즘
- swift programmers
- RTCCameraVideoCapturer
- Swift Error Handling
- RIBs tutorial
- swift protocol
- CS 네트워크
- swift 고차함수
- Swift Leetcode
- removeLast()
- Combine: Asynchronous Programming with Swift
- 원티드 프리온보딩
- Swift 프로그래머스
- Swift joined()
- Class
- Swift RIBs
- Swift init
- swift reduce
- Swift final
- Swift joined
- iOS error
- Swift
- Swift inout
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함