summaryrefslogtreecommitdiffstats
path: root/3.pl
diff options
context:
space:
mode:
Diffstat (limited to '3.pl')
-rwxr-xr-x3.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/3.pl b/3.pl
deleted file mode 100755
index 7fbf7ad..0000000
--- a/3.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/perl
-use strict;
-use warnings;
-
-my $num = 317584931803;
-my $test = 3;
-while (1) {
- if ($num % $test) {
- $test += 2;
- }
- else {
- $num /= $test;
- }
- last if $test > sqrt $num;
-}
-print "$num\n";