From b4c10c949c9ecade1377baf7f6468a0c0d77bcbe Mon Sep 17 00:00:00 2001 From: Lubos Kolouch Date: Mon, 28 Sep 2020 17:16:27 +0200 Subject: Added one more test --- challenge-080/lubos-kolouch/perl/ch-1.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/challenge-080/lubos-kolouch/perl/ch-1.pl b/challenge-080/lubos-kolouch/perl/ch-1.pl index 8decd6a953..b25e40390f 100644 --- a/challenge-080/lubos-kolouch/perl/ch-1.pl +++ b/challenge-080/lubos-kolouch/perl/ch-1.pl @@ -44,5 +44,6 @@ is(get_smallest_missing([5, 2, -2, 0]), 1); is(get_smallest_missing([1, 8, -1]), 2); is(get_smallest_missing([2, 0, -1]), 1); is(get_smallest_missing([2, 0, 1]), 0); +is(get_smallest_missing([2, 0, 1, 3, 4, 5]), 0); done_testing; -- cgit