``` fun testFP(nums: IntArray): Boolean = !nu...
# functional
p
Copy code
fun testFP(nums: IntArray): Boolean =
     !nums.all { it !=1 && it !=4 }