반응형
프로그래머스
-
-
프로그래머스 - 베스트 앨범알고리즘 문제 풀이 2020. 7. 13. 22:45
최근 프로그래머스에 있는 베스트 앨범 문제를 풀어보았는 데다른 사람의 코드를 보고 아주 놀라서 정리해 보았다.아래의 코드로 결과가 나오는데 딱 보기에는 이해가 되지 않아서한줄씩 출력해본 결과를 정리했다.genres.indices.groupBy { genres[it] } .toList() .sortedByDescending { it.second.sumBy { plays[it] } } .map { it.second.sortedByDescending { plays[it] }.take(2) } .flatten() .toIntArray()genres.indices >>> indices: 0..4indicesReturns the range of valid indices for the array. Returns an..