diff options
Diffstat (limited to 'challenge-009/veesh-goldman/perl5/ch-1.pl')
| -rwxr-xr-x | challenge-009/veesh-goldman/perl5/ch-1.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/challenge-009/veesh-goldman/perl5/ch-1.pl b/challenge-009/veesh-goldman/perl5/ch-1.pl new file mode 100755 index 0000000000..4c47b1a33c --- /dev/null +++ b/challenge-009/veesh-goldman/perl5/ch-1.pl @@ -0,0 +1,6 @@ +#!/usr/bin/perl + +use feature 'say'; +use List::Util qw/uniq first/; + +say first { 5 <= uniq split //, $_ **2 } 1..10000 |
