문제 링크
https://programmers.co.kr/learn/courses/30/lessons/72410?language=swift
문제 요약
신규 유저가 입력한 아이디를 나타내는 new_id가 매개변수로 주어질 때, "네오"가 설계한 7단계의 처리 과정을 거친 후의 추천 아이디를 return 하도록 solution 함수를 완성하시오.
1단계 new_id의 모든 대문자를 대응되는 소문자로 치환합니다.
2단계 new_id에서 알파벳 소문자, 숫자, 빼기(-), 밑줄(_), 마침표(.)를 제외한 모든 문자를 제거합니다.
3단계 new_id에서 마침표(.)가 2번 이상 연속된 부분을 하나의 마침표(.)로 치환합니다.
4단계 new_id에서 마침표(.)가 처음이나 끝에 위치한다면 제거합니다.
5단계 new_id가 빈 문자열이라면, new_id에 "a"를 대입합니다.
6단계 new_id의 길이가 16자 이상이면, new_id의 첫 15개의 문자를 제외한 나머지 문자들을 모두 제거합니다.
만약 제거 후 마침표(.)가 new_id의 끝에 위치한다면 끝에 위치한 마침표(.) 문자를 제거합니다.
7단계 new_id의 길이가 2자 이하라면, new_id의 마지막 문자를 new_id의 길이가 3이 될 때까지 반복해서 끝에 붙입니다.
풀이 코드
문제를 풀지 못한 사람들이 쉽게 이해할 수 있도록 단계별로 나누어 작성해보았습니다.
func solution(_ new_id:String) -> String {
// if !((new_id.count >= 3) && (new_id.count <= 15)) {
// return "아이디의 길이는 3자 이상 15자 이하여야 합니다."
// }
var firstPhase: String = ""
var secondPhase: String = ""
let dontRemove: [String] = ["-", "_", "."]
// 1단계
new_id.forEach { (elem) in
firstPhase.append(elem.lowercased())
}
// 2단계
firstPhase.forEach { (elem) in
if elem.isLowercase || elem.isNumber || dontRemove.contains(String(elem)) {
secondPhase.append(elem)
}
}
// 3단계
while secondPhase.contains("..") {
secondPhase = secondPhase.replacingOccurrences(of: "..", with: ".")
}
// 4단계
var thirdPhase = secondPhase.trimmingCharacters(in: ["."])
// 5단계
if thirdPhase.isEmpty {
thirdPhase.append("a")
}
// 6단계
if thirdPhase.count > 15 {
let start = thirdPhase.startIndex
let end = thirdPhase.index(start, offsetBy: 14)
thirdPhase = String(thirdPhase[start...end])
}
// 7단계
while thirdPhase.count < 3 {
let insertIndex = thirdPhase.index(before: thirdPhase.endIndex)
thirdPhase += String(thirdPhase[insertIndex])
}
return String(thirdPhase).trimmingCharacters(in: ["."])
}
틀린부분이 있거나, 더 좋은 방법이 있다면 댓글로 남겨주세요!
🌈댓글은 언제나 환영입니다🙏🏻
반응형
'CodingTest 문제풀이' 카테고리의 다른 글
[프로그래머스 L1] 문자열 내림차순으로 배치하기 - swift (2) | 2021.08.20 |
---|---|
[프로그래머스 L1] 문자열 다루기 기본 - swift (0) | 2021.08.20 |
[프로그래머스 L1] 문자열을 정수로 바꾸기 - swift (0) | 2021.08.20 |
[프로그래머스 L2] [1차] 뉴스 클러스터링 - swift (0) | 2021.07.22 |
코딩테스트 볼 때 참고 자료 (2) | 2021.07.17 |