Search Results

Searching for: if

Individual Exercises

0 / 50

The number 6 is a truly great number. Given two int values, a and b, return true if either one is 6. Or if their sum or difference is 6....

0 / 70

Given an integer array length of 1 or more, return the difference between the largest and smallest values in the array. Note that the...

0 / 50

Return an array that is "left shifted" by one--so for an input of {6, 2, 5, 3}, the method returns {2, 5, 3, 6}. You may modify and...