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
- 코틀린
- Kotlin
- 일본어문법
- PR
- ai
- errorhandling
- jlpt
- webflux
- 일본어기초
- 진짜일본어
- coroutine
- 책추천
- Android
- pullrequest
- GIT
- CustomTab
- rxjava
- 책리뷰
- suspend
- 진짜학습지후기
- 인공지능
- 학습지
- 안드로이드
- androidstudio
- github
- 진짜학습지
- KotlinInAction
- posting
- n3문법
- blog
Archives
코딩하는 개굴이
[HackerRank] Compare Triplets (Kotlin) 본문
반응형
Compare Triplets : https://www.hackerrank.com/challenges/compare-the-triplets/problem
간단한 문제이다.
fun compareTriplets(a: Array<Int>, b: Array<Int>): Array<Int> {
// Write your code here
var aScore = 0
var bScore = 0
for(i in a.indices) {
if(a[i] < b[i]) bScore++
else if(a[i] > b[i]) aScore++
}
val arr = Array(2) { 0 }
arr[0] = aScore
arr[1] = bScore
return arr
}
fun main(args: Array<String>) {
val a = readLine()!!.trimEnd().split(" ").map{ it.toInt() }.toTypedArray()
val b = readLine()!!.trimEnd().split(" ").map{ it.toInt() }.toTypedArray()
val result = compareTriplets(a, b)
println(result.joinToString(" "))
}
반응형
'알고리즘 > HackerRank' 카테고리의 다른 글
[HackerRank] Extra Long Factorials (Kotlin) (0) | 2022.07.30 |
---|---|
[HackerRank] Super Reduced String (Kotlin) (0) | 2022.07.09 |
Comments