Tag: List<List<Integer>>
-
How to write JUnit test code in Java for the function finding Triplets who sum divisible by 9 from given array of Integers ?
This is the JUnit 5 solution to cover all kinds of inputs provided to find the Triplets whose sum divisible by 9 from an array of integers. This Unit test executes tests for the ‘ParseAnArrayInput’ function available in the class ‘TripletsSumDivBy9J8’.
-
How to find Triplets whose sum is divisible by 9 from the given array of Integers ?
This is the complete solution to find the Triplets whose sum is divisible by 9. This solution is designed to to solve the problem using an interface, super class and two derived classes implementing the interface.
