-
Ensure 100% success in the each test class
-
Create a class
WuTangConcatenator
which uses a compositeInteger
to identify divisibility.- Multiples of
3
are consideredWu
numbers. - Multiples of
5
are consideredTang
numbers. - Multiples of
3
and5
are consideredWuTang
numbers.
- Multiples of
-
Create a class
BasicUtilities
which evaluates integers with relational operators.isGreaterThan5
should returntrue
if the input is more than5
, else false.isLessThan7
should returntrue
if the input is less than7
, else false.IsBetween5And7
should returntrue
if the input is less than7
and more than 5, else false.
-
Create a class
IntegerArrayUtilities
hasEvenLength
should returntrue
if the input array has an even length.range
should return an array of integers fromstart
tostop
inclusively.