1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#!/usr/bin/env perl
# vim:set ts=4 sw=4 sts=4 et ai wm=0 nu:
#=============================================================================
# Copyright (c) 2024, Bob Lied
#=============================================================================
# ch-1.pl Perl Weekly Challenge 282 Task 1 Good Integer
#=============================================================================
# You are given a positive integer, $int, having 3 or more digits.
# Write a script to return the Good Integer in the given integer or -1
# if none found. A good integer is exactly three consecutive matching digits.
# Example 1 Input: $int = 12344456 Output: "444"
# Example 2 Input: $int = 1233334 Output: -1
# Example 3 Input: $int = 10020003 Output: "000"
#=============================================================================
use v5.40;
use Getopt::Long;
my $Verbose = false;
my $DoTest = false;
my $Benchmark = 0;
GetOptions("test" => \$DoTest, "verbose" => \$Verbose, "benchmark:i" => \$Benchmark);
exit(!runTest()) if $DoTest;
exit( runBenchmark($Benchmark) ) if $Benchmark;
say goodIint($_) for @ARGV;
sub goodInt($int)
{
my @digit = split(//, "$int");
my $d = shift @digit;
while ( defined $d )
{
my $consecutive = 1;
my $n;
++$consecutive while defined($n = shift @digit) && $n == $d;
return ($d x 3) if $consecutive == 3;
$d = $n;
}
return -1;
}
sub gi2($int)
{
( grep {length($_) == 3 } $int =~ m/((.)\2\2+)/g )[0] // -1 ;
}
sub runTest
{
use Test2::V0;
is( goodInt(12344456), "444", "Example 1");
is( goodInt(1233334), -1, "Example 2");
is( goodInt(10020003), "000", "Example 3");
is( goodInt(66612345), "666", "At front");
is( goodInt(12345666), "666", "At end");
is( goodInt(17775666), "777", "Two possibilities");
is( gi2(12344456), "444", "gi2 Example 1");
is( gi2(1233334), -1, "gi2 Example 2");
is( gi2(10020003), "000", "gi2 Example 3");
is( gi2(66612345), "666", "gi2 At front");
is( gi2(12345666), "666", "gi2 At end");
is( gi2(17775666), "777", "gi2 Two possibilities");
done_testing;
}
sub runBenchmark($repeat)
{
use Benchmark qw/cmpthese/;
my @input = ( 12344456, 1233334, 10020003, 66612345, 12345666, 17775666 );
cmpthese($repeat, {
gi_while => sub { goodInt($_) for @input },
gi_re => sub { gi2($_) for @input },
});
}
|