Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 일본어문법
- n3문법
- pullrequest
- suspend
- KotlinInAction
- 진짜학습지
- ai
- rxjava
- PR
- androidstudio
- Kotlin
- 일본어기초
- coroutine
- Android
- 진짜일본어
- 진짜학습지후기
- GIT
- CustomTab
- github
- webflux
- 책리뷰
- blog
- posting
- 안드로이드
- 학습지
- 책추천
- jlpt
- errorhandling
- 코틀린
- 인공지능
Archives
코딩하는 개굴이
[HackerRank] Super Reduced String (Kotlin) 본문
반응형
Super Reduced String : https://www.hackerrank.com/challenges/reduced-string/problem
2개 이상 중복되는 캐릭터가 있으면 삭제하는 문제이다. 재귀로 반복적인 확인을 수행하면 해결할 수 있다.
fun superReducedString(s: String): String {
// Write your code here
for (i in s.indices) {
if (i == s.length-1) {
return s
}
if (s[i] == s[i+1]) {
val beforeString = if (i > 0) {
s.substring(0,i)
} else {
""
}
val afterString = if (i+2 == s.length) {
""
} else {
s.substring(i+2, s.length)
}
return superReducedString(beforeString + afterString)
}
}
return s
}
fun main(args: Array<String>) {
val s = readLine()!!
var result = superReducedString(s)
if (result.isEmpty()) {
result = "Empty String"
}
println(result)
}
반응형
'알고리즘 > HackerRank' 카테고리의 다른 글
[HackerRank] Extra Long Factorials (Kotlin) (0) | 2022.07.30 |
---|---|
[HackerRank] Compare Triplets (Kotlin) (0) | 2022.07.09 |
Comments