(백준/Kotlin) 1159번 : 농구 경기
·
CodingTest
난이도: Bronze 2 프로그래밍 언어: Kotlin 문제명: 농구 경기 푼일자: 2022년 1월 주소: https://www.acmicpc.net/problem/1159 문제풀기 몇분만에 푼 문제였습니다. fun main() = with(System.`in`.bufferedReader()) { // 농구 경기 val arr = IntArray(26) val sb = StringBuilder() repeat(readLine().toInt()) { arr[readLine()[0].code - 0x61]++ } arr.forEachIndexed { index, i -> if (i >= 5) sb.append((index + 0x61).toChar()) } print(if (sb.toString().isEm..