2 lines
85 B
Scala
2 lines
85 B
Scala
def isEven( v:Int ) : Boolean = v % 2 == 0
|
|
def isOdd( v:Int ) : Boolean = v % 2 != 0
|