세 개의 구분자 class Solution { fun solution(myStr: String): Array = myStr .split(Regex("[abc]")) .filterNot { it.isEmpty() } .ifEmpty { listOf("EMPTY") } .toTypedArray() } 배열의 원소만큼 추가하기 class Solution { fun solution(arr: IntArray): IntArray { var result = intArrayOf() arr.map { num -> repeat(num){ result = result.plus(num) } } return result } } 빈 배열에 추가, 삭제하기 import java.util.Stack class Solution { f..