Skip to content

Commit 7f4b99d

Browse files
committed
[euler] Add test for solution to problem 105
1 parent fb2fa40 commit 7f4b99d

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

t/categories/euler.t

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v6;
22

33
use Test;
44

5-
plan 49;
5+
plan 50;
66

77
subtest {
88
plan 5;
@@ -471,6 +471,16 @@ if False {
471471
}, "prob104";
472472
}
473473

474+
subtest {
475+
plan 1;
476+
477+
my $problem = "prob105";
478+
my @authors = <shlomif>;
479+
my $expected-output = 73702;
480+
481+
check-example-solutions($problem, $expected-output, @authors)
482+
}, "prob105";
483+
474484
skip("prob149-shlomif.pl takes too long to run");
475485
if False {
476486
subtest {

0 commit comments

Comments
 (0)