티스토리 뷰

Android/Etc

[ Etc #11 ] Collection List 비교 (..ing)

녹색꼬맹이 2022. 12. 20. 15:00
반응형
SMALL

두 리스트를 비교해서 업데이트 하는 방법을 지속적으로 업데이트 하고자 한다.

 

val current = listOf<Int>(1, 2, 3, 4, 5)
val new = listOf<Int>(4, 5, 6, 7, 8)

println("******* [[ Result ]] *******")
println("제거되야할 값들 >> ${current.filterNot { it in new }.toString()}")
println("추가해야할 값들 >> ${new.filterNot { it in current }.toString()}")
println("****************************")

 

반응형

 

반응형
LIST
댓글