1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/8kyu/opposites_attract/solution.kt

2 lines
84 B
Kotlin
Raw Normal View History

fun loveFun(flowerA: Int, flowerB: Int): Boolean = flowerA.xor(flowerB).and(1) != 0