8 lines
148 B
Plaintext
Vendored
8 lines
148 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
import java.util.ArrayList
|
|
|
|
fun foo(array: IntArray): List<Int> {
|
|
val result = array.filter { it % 3 == 0 }
|
|
return result
|
|
}
|