티스토리 뷰
728x90
[Swift 알고리즘] - Find Numbers with Even Number of Digits(Leetcode)
https://leetcode.com/explore/learn/card/fun-with-arrays/521/introduction/3237/
내 풀이
class Solution {
func findNumbers(_ numbs: [Int]) -> Int {
return numbs.filter { String($0).count % 2 == 0 }.count
}
}
1. input의 배열 요소의 숫자자리수를 count해 짝수인것만 필터 후
2. 필터된 배열의 count만 return 하였습니다.
728x90
'알고리즘' 카테고리의 다른 글
[Swift 알고리즘] - 알수없는 숫자 더하기 (Programmers) (1) | 2022.10.01 |
---|---|
[Swift 알고리즘] - Squares of a Sorted Array (Leetcode) (0) | 2022.05.20 |
[Swift 알고리즘] - 키패드 누르기 (Programmers) (0) | 2022.05.18 |
[Swift 알고리즘] - 이상한 문자 만들기(Programmers) (0) | 2022.05.16 |
[Swift 알고리즘] - 콜라츠 추측 (Programmers) (0) | 2022.05.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Class
- swift protocol
- swift (programmers)
- Swift init
- swift programmers
- 원티드 프리온보딩
- 2023년 회고
- Swift 프로퍼티
- Swift inout
- Swift 알고리즘
- Swift ModernRIBs
- swift 고차함수
- swift reduce
- CS 네트워크
- Swift 프로그래머스
- Swift joined
- Swift Leetcode
- Swift final
- swift property
- iOS error
- Swift 내림차순
- RIBs tutorial
- Swift
- RTCCameraVideoCapturer
- removeLast()
- ios
- Combine: Asynchronous Programming with Swift
- Swift Error Handling
- Swift RIBs
- Swift joined()
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함