9 lines
100 B
Plaintext
9 lines
100 B
Plaintext
== Compliant Solution
|
|
|
|
[source,text]
|
|
----
|
|
public boolean isOdd(int x) {
|
|
return x % 2 != 0;
|
|
}
|
|
----
|