diff options
| author | Bob Lied <boblied+github@gmail.com> | 2024-03-30 09:21:33 -0500 |
|---|---|---|
| committer | Bob Lied <boblied+github@gmail.com> | 2024-03-30 09:21:33 -0500 |
| commit | cf8b890586305cb9ceccf9c0ba3419a898279b68 (patch) | |
| tree | 15b5be1d12b3ea0796efcb586ac215525a64fa9c | |
| parent | 3c4895f766e26d0c55315eca93adb59db999238e (diff) | |
| download | perlweeklychallenge-club-cf8b890586305cb9ceccf9c0ba3419a898279b68.tar.gz perlweeklychallenge-club-cf8b890586305cb9ceccf9c0ba3419a898279b68.tar.bz2 perlweeklychallenge-club-cf8b890586305cb9ceccf9c0ba3419a898279b68.zip | |
Week 262 solution with blog
| -rw-r--r-- | challenge-262/bob-lied/perl/ch-2.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-262/bob-lied/perl/ch-2.pl b/challenge-262/bob-lied/perl/ch-2.pl index f2ca12bbcc..6930f240b8 100644 --- a/challenge-262/bob-lied/perl/ch-2.pl +++ b/challenge-262/bob-lied/perl/ch-2.pl @@ -52,7 +52,7 @@ sub runTest use Test2::V0; is( countEqDiv(2, (3,1,2,2,2,1,3) ), 4, "Example 1"); - is( countEqDiv(2, (1,2,3) ), 0, "Example 2"); + is( countEqDiv(1, (1,2,3) ), 0, "Example 2"); done_testing; } |
