aboutsummaryrefslogtreecommitdiff
path: root/challenge-036
diff options
context:
space:
mode:
authorLubos Kolouch <lubos@kolouch.net>2019-11-30 13:15:11 +0100
committerLubos Kolouch <lubos@kolouch.net>2019-11-30 13:15:11 +0100
commitdc72005eab9bd9e05e894cb755611af99f590eee (patch)
tree39170818728c72dcfc0307f7b2becd7d2d7fdf46 /challenge-036
parentb0b7d523f9c49f536cd7f2da7807c33378c1db44 (diff)
downloadperlweeklychallenge-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.pl2
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";
}
}