aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Sommrey <28217714+jo-37@users.noreply.github.com>2020-11-20 18:18:16 +0100
committerJörg Sommrey <28217714+jo-37@users.noreply.github.com>2020-11-20 18:18:16 +0100
commita1ab7caf7f1502016865fa63b841ba44ca7fd573 (patch)
tree231581e72651c604d9726a8d71a6b03faa3cde23
parent4a325913cc14493bda69434e1347e82964b1cb44 (diff)
downloadperlweeklychallenge-club-a1ab7caf7f1502016865fa63b841ba44ca7fd573.tar.gz
perlweeklychallenge-club-a1ab7caf7f1502016865fa63b841ba44ca7fd573.tar.bz2
perlweeklychallenge-club-a1ab7caf7f1502016865fa63b841ba44ca7fd573.zip
remove unneeded uses
-rwxr-xr-xchallenge-087/jo-37/perl/ch-1.pl2
1 files changed, 0 insertions, 2 deletions
diff --git a/challenge-087/jo-37/perl/ch-1.pl b/challenge-087/jo-37/perl/ch-1.pl
index 6eaeea9087..acf4ed0550 100755
--- a/challenge-087/jo-37/perl/ch-1.pl
+++ b/challenge-087/jo-37/perl/ch-1.pl
@@ -1,9 +1,7 @@
#!/usr/bin/perl
-use 5.012;
use Test2::V0;
use List::Util qw(reduce uniqnum);
-use Data::Dump;
# Find longest consecutive sequence in a list of integers. An empty
# result in boolean context gives zero as requested.