[Swift 알고리즘] 신규 아이디 추천
1345 단어 프로그래머스 Lv1프로그래머스 Lv1
https://programmers.co.kr/learn/courses/30/lessons/72410
import Foundation
func solution(_ new_id:String) -> String {
var myID = new_id
//1
myID = myID.lowercased()
//2
var newID = ""
for i in myID {
if i.isLetter || i.isNumber || i == "-" || i == "_" || i == "." {
newID.append(i)
}
}
//3
if newID.contains("..") {
while newID.contains("..") {
newID = newID.replacingOccurrences(of: "..", with: ".")
}
}
//4
if newID.hasPrefix(".") {
newID.removeFirst()
}
if newID.hasSuffix(".") {
newID.removeLast()
}
//5
if newID.isEmpty {
newID = "a"
}
//6
if newID.count >= 16 {
let index = newID.index(newID.startIndex, offsetBy: 15)
newID = String(newID[newID.startIndex..<index])
if newID.hasSuffix(".") {
newID.removeLast()
}
}
//7
if newID.count <= 2 {
while newID.count != 3 {
newID = newID + String(newID.last!)
}
}
return newID
}
Author And Source
이 문제에 관하여([Swift 알고리즘] 신규 아이디 추천), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@isouvezz/Swift-알고리즘-신규-아이디-추천저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)