diff options
| author | Paulo Custodio <pauloscustodio@gmail.com> | 2021-11-03 16:10:13 +0000 |
|---|---|---|
| committer | Paulo Custodio <pauloscustodio@gmail.com> | 2021-11-03 16:10:13 +0000 |
| commit | d12a3c58624c219f252e34b926797aa1b68a69fa (patch) | |
| tree | 507a3ff52cb4a2185864239190ba13155df1cbf8 /challenge-092 | |
| parent | dd979819d8042c04464033dcff0c2853546e34c1 (diff) | |
| download | perlweeklychallenge-club-d12a3c58624c219f252e34b926797aa1b68a69fa.tar.gz perlweeklychallenge-club-d12a3c58624c219f252e34b926797aa1b68a69fa.tar.bz2 perlweeklychallenge-club-d12a3c58624c219f252e34b926797aa1b68a69fa.zip | |
use Modern::Perl
Diffstat (limited to 'challenge-092')
| -rw-r--r-- | challenge-092/paulo-custodio/perl/ch-1.pl | 4 | ||||
| -rw-r--r-- | challenge-092/paulo-custodio/perl/ch-2.pl | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/challenge-092/paulo-custodio/perl/ch-1.pl b/challenge-092/paulo-custodio/perl/ch-1.pl index 49a153e10b..22c464c456 100644 --- a/challenge-092/paulo-custodio/perl/ch-1.pl +++ b/challenge-092/paulo-custodio/perl/ch-1.pl @@ -19,9 +19,7 @@ # Input: $A = "sum"; $B = "add" # Output: 0 -use strict; -use warnings; -use 5.030; +use Modern::Perl; say isomorphic(@ARGV); diff --git a/challenge-092/paulo-custodio/perl/ch-2.pl b/challenge-092/paulo-custodio/perl/ch-2.pl index c21ff45f55..05c8c6bf1a 100644 --- a/challenge-092/paulo-custodio/perl/ch-2.pl +++ b/challenge-092/paulo-custodio/perl/ch-2.pl @@ -18,9 +18,7 @@ # Input $S = (1,5), (7,9); $N = (10,11) # Output: (1,5), (7,9), (10,11) -use strict; -use warnings; -use 5.030; +use Modern::Perl; my @intervals; # set of all intervals add_interval(parse($_)) for @ARGV; |
