250x250
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
- swift 연속된 부분 수열의 합
- swift gRPC
- 연속된 부분 수열의 합 swift
- swift 연속된 부분 수열의 합 풀이
- iOS Charts
- swift ac
- 백준 2xn 타일링
- swift 알고리즘
- ios
- swift ac 문제풀이
- 연속된 부분 수열의 합 투포인터
- swift algorithm
- swift 백준 9095
- 123 더하기 풀이
- swift 9095 풀이
- swift codility
- swift
- ac 투포인터
- ac swift 풀이
- ac 구현 풀이
- MVVM
- swift dfs
- swift 2xn 타일링 풀이
- swift ac 풀이
- rxswift
- swift 프로그래머스
- 백준 2xn 타일링 풀이
- 1 2 3 더하기 풀이
- swift 2xn 타일링 백준
- swift 2xn 타일링
Archives
- Today
- Total
boraBong
[Swift] LongestPassword 문제 풀이 [Codility - Exercise 1. 2015 Contest] 본문
iOS/Algorithm
[Swift] LongestPassword 문제 풀이 [Codility - Exercise 1. 2015 Contest]
보라봉_ 2023. 3. 30. 20:26728x90
💬 문제
https://app.codility.com/programmers/trainings/1/longest_password/
💬 Idea
- 코딜리티는 풀이 언어로 Swift4를 지원하는데, Swift4에서는 Character에서 isLetter, isNumber를 사용하는 것이 안되는 것 같다..
- 찾아보니 Character에서 Unicode 속성을 테스트 할 수 있는 속성들은 Swift5에서 추가되었네요 ~!
- https://jercy.tistory.com/10
- 그래서 정규표현식을 사용하여 문제를 풀이했다.
- “문자가 짝수개일 것” 조건을 판별해주기 위해 숫자인 문자들을 “”으로 치환해주었다. 치환 후에는 문자만 남게 되기 때문에 치환 후 남은 문자의 개수를 세어 판별했다.
💬 풀이
public func solution(_ S : inout String) -> Int {
let s = S.components(separatedBy: .whitespaces).filter({ $0.count % 2 == 1 })
var longestSCount = -1
for i in s {
if checkIsValidString(i) {
if longestSCount < i.count {
longestSCount = i.count
}
}
}
return longestSCount
}
public func checkIsValidString(_ S: String) -> Bool {
// 1. 숫자와 영문자만 포함할 것
let regexPattern = "^[0-9a-zA-Z]*$"
guard let _ = S.range(of: regexPattern, options: .regularExpression) else { return false }
// 2. 문자가 짝수개일 것
if S.replacingOccurrences(of: "[0-9]", with: "", options: .regularExpression).count % 2 != 0 { return false }
return true
}
https://app.codility.com/demo/results/trainingH74JG3-CYY/
반응형
'iOS > Algorithm' 카테고리의 다른 글
[Swift] MissingInteger 문제 풀이 [Codility - Lesson 4. Counting Elements] (0) | 2023.03.30 |
---|---|
[Swift] StrSymmetryPoint 문제 풀이 [Codility - Exercise 4. Algorithmic Skills] (0) | 2023.03.30 |
[Swift] 타겟 넘버 문제 풀이 [Programmers - Level2 (DFS/BFS)] (0) | 2023.03.30 |
[Swift] 단어 변환 문제 풀이 [Programmers - Level3 (DFS/BFS)] (0) | 2023.03.29 |
[Swift] MaxCounters 문제 풀이 [Codility - Lesson4. Counting Elements] (1) | 2023.03.28 |
Comments