[프로그래머스] 이상한 문자 만들기 (12930)(Kotlin)
문제 설명
문자열 s는 한 개 이상의 단어로 구성되어 있습니다. 각 단어는 하나 이상의 공백문자로 구분되어 있습니다. 각 단어의 짝수번째 알파벳은 대문자로, 홀수번째 알파벳은 소문자로 바꾼 문자열을 리턴하는 함수, solution을 완성하세요.
제한 사항
- 문자열 전체의 짝/홀수 인덱스가 아니라, 단어(공백을 기준)별로 짝/홀수 인덱스를 판단해야합니다.
- 첫 번째 글자는 0번째 인덱스로 보아 짝수번째 알파벳으로 처리해야 합니다.
예제 입출력
s | return |
“try hello world” | “TrY HeLlO WoRlD” |
문제 풀이1
class Solution {
fun solution(s: String): String {
val str = s.split(" ")
val result = str.map {
String(CharArray(it.length) { index ->
if (index % 2 == 0) it[index].toUpperCase()
else it[index].toLowerCase()
})
}
return result.reduce { acc, s -> "$acc $s" }
}
}
문제 풀이2
class Solution {
fun solution(s: String): String = s.split(" ").map {
String(
CharArray(it.length) { index ->
if (index % 2 == 0) it[index].toUpperCase()
else it[index].toLowerCase()
}
)
}.reduce { acc, s -> "$acc $s" }
}