Kotlinlearncs.online LogoJava
Return to List

Solve: Two Last Digit

Imported By: Geoffrey Challen
/ Version: 2021.4.0

Given two non-negative int values, return true if they have the same last digit, such as with 27 and 57. Note that the % operator computes remainders, so 17 % 10 is 7.

boolean lastDigit(int first, int second) {
return false; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: