You are viewing a single comment's thread. Return to all comments →
My Python Solution:
class TestDataEmptyArray: def get_array(): return [] class TestDataUniqueValues: def get_array(): return [9, 1] def get_expected_result(): return 1 class TestDataExactlyTwoDifferentMinimums: def get_array(): return [9, 1, 1] def get_expected_result(): return 1
Seems like cookies are disabled on this browser, please enable them to open this website
Day 27: Testing
You are viewing a single comment's thread. Return to all comments →
My Python Solution: