[Swift 코테 기초] String to Character

2022. 3. 10. 13:40Swift 코딩테스트/Swift 코테 기초

728x90
var test = readLine()!.map({ (value) in Character(extendedGraphemeClusterLiteral: value) })


//input = "oxoxoxoxo"
//test = ["o", "x", "o", "x", "o", "x", "o", "x", "o"]

 

728x90