diff options
| author | Lubos Kolouch <lubos@kolouch.net> | 2019-11-30 13:15:11 +0100 |
|---|---|---|
| committer | Lubos Kolouch <lubos@kolouch.net> | 2019-11-30 13:15:11 +0100 |
| commit | dc72005eab9bd9e05e894cb755611af99f590eee (patch) | |
| tree | 39170818728c72dcfc0307f7b2becd7d2d7fdf46 /challenge-036 | |
| parent | b0b7d523f9c49f536cd7f2da7807c33378c1db44 (diff) | |
| download | perlweeklychallenge-club-dc72005eab9bd9e05e894cb755611af99f590eee.tar.gz perlweeklychallenge-club-dc72005eab9bd9e05e894cb755611af99f590eee.tar.bz2 perlweeklychallenge-club-dc72005eab9bd9e05e894cb755611af99f590eee.zip | |
Fix wrong message
Diffstat (limited to 'challenge-036')
| -rw-r--r-- | challenge-036/lubos-kolouch/perl5/ch-2.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-036/lubos-kolouch/perl5/ch-2.pl b/challenge-036/lubos-kolouch/perl5/ch-2.pl index 34d1104d5f..746911cb07 100644 --- a/challenge-036/lubos-kolouch/perl5/ch-2.pl +++ b/challenge-036/lubos-kolouch/perl5/ch-2.pl @@ -89,7 +89,7 @@ for my $count ( 1 .. scalar @list ) { if ($max_value) { say "Best combination for $count boxes is $max_boxes with value $max_value"; } else { - say "There is no possible combination for $count boxes under or equal value $max_value"; + say "There is no possible combination for $count boxes under or equal weight $weight_limit"; } } |
