달나라 노트

Kotlin - shuffled (collecion에 있는 요소들을 랜덤하게 재배열하기) 본문

Kotlin

Kotlin - shuffled (collecion에 있는 요소들을 랜덤하게 재배열하기)

CosmosProject 2021. 4. 13. 01:45
728x90
반응형

 

 

 

shuffled 함수는 collection의 요소들을 랜덤하게 재배열합니다.

 

fun main() {
    var fruits = listOf("Apple", "Strawberry", "Tomato", "Watermelon", "Grape")
    fruits = fruits.shuffled()
    println(fruits)
}


-- Result
[Strawberry, Tomato, Apple, Watermelon, Grape]

 

fruits라는 list를 생성하고 shuffled를 적용시켜보았습니다.

그 결과를 보면 fruits의 요소들이 랜덤하게 재정렬된 것을 볼 수 있습니다.

(따라서 이 결과는 위 코드를 실행할 때 마다 달라질 것입니다.)

 

 

 

 

 

 

 

728x90
반응형
Comments