We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Day 27: Testing
Day 27: Testing
Sort by
recency
|
224 Discussions
|
Please Login in order to post a comment
Java
public class Solution { public static void main(String[] args) throws Exception {
}
class TestDataEmptyArray { public int[] get_array() { return new int[0]; } }
class TestDataUniqueValues { public int[] get_array() { return new int[]{3,2,6,9,6}; }
}
class TestDataExactlyTwoDifferentMinimums { public int[] get_array() { return new int[]{3,2,6,9,2,6}; }
}
python
JAVA 8
I wanted to go off track and use abstract classes, but everything ended up being more straightforward than I expected, haha.
Where is C# for this problem?