728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12919
Code
class Solution {
fun solution(seoul: Array<String>): String = "김서방은 ${seoul.indexOfFirst { it == "Kim" }}에 있다"
}
조건상 반드시 배열 안에 있다고 했기 때문에 처음 발견되는 "Kim"의 index를 리턴시켜줬다.
728x90