Kotlinlearncs.online LogoJava
Return to List

Solve: Two As One

Imported By: Geoffrey Challen
/ Version: 2021.6.0

Given three ints return true if it is possible to add two of the them to equal the third.

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

Related Lessons

Stuck? You may find these lessons helpful: