diff options
| -rw-r--r-- | challenge-080/pete-houston/perl/ch-1.pl | 29 | ||||
| -rw-r--r-- | challenge-080/pete-houston/perl/ch-2.pl | 35 | ||||
| -rw-r--r-- | challenge-081/pete-houston/perl/ch-1.pl | 40 | ||||
| -rw-r--r-- | challenge-081/pete-houston/perl/ch-2.pl | 40 | ||||
| -rw-r--r-- | stats/pwc-challenge-080.json | 619 | ||||
| -rw-r--r-- | stats/pwc-current.json | 219 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 52 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 614 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 390 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 30 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 112 | ||||
| -rw-r--r-- | stats/pwc-summary-151-180.json | 42 | ||||
| -rw-r--r-- | stats/pwc-summary-181-210.json | 64 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 48 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 102 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 50 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 426 |
17 files changed, 1543 insertions, 1369 deletions
diff --git a/challenge-080/pete-houston/perl/ch-1.pl b/challenge-080/pete-houston/perl/ch-1.pl new file mode 100644 index 0000000000..bf161999be --- /dev/null +++ b/challenge-080/pete-houston/perl/ch-1.pl @@ -0,0 +1,29 @@ +#!/usr/bin/env perl +#=============================================================================== +# +# FILE: 8001.pl +# +# USAGE: ./8001.pl N ... +# +# DESCRIPTION: Print the smallest missing positive int from the +# argument list +# +# REQUIREMENTS: Params::Util +# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk +# ORGANIZATION: Openstrike +# VERSION: 1.0 +# CREATED: 28/09/20 +#=============================================================================== + +use strict; +use warnings; +use Params::Util '_POSINT'; + +# Build the hash from only the positive integers +my %pos; +$pos{$_} = 1 for grep { _POSINT ($_) } @ARGV; + +# Find the lowest missing value +my $lowest = 1; +$lowest++ while $pos{$lowest}; +print "$lowest\n"; diff --git a/challenge-080/pete-houston/perl/ch-2.pl b/challenge-080/pete-houston/perl/ch-2.pl new file mode 100644 index 0000000000..fc2eecd92b --- /dev/null +++ b/challenge-080/pete-houston/perl/ch-2.pl @@ -0,0 +1,35 @@ +#!/usr/bin/env perl +#=============================================================================== +# +# FILE: 8002.pl +# +# USAGE: ./8002.pl N ... +# +# DESCRIPTION: Candy counting +# +# OPTIONS: --- +# REQUIREMENTS: --- +# BUGS: --- +# NOTES: --- +# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk +# ORGANIZATION: Openstrike +# VERSION: 1.0 +# CREATED: 28/09/20 15:44:45 +# REVISION: --- +#=============================================================================== + +use strict; +use warnings; + +# Logic: +# if we have n canditates, that's a minimum of n candies. +my $tot = scalar @ARGV; + +# Then we have n-1 pairs. If each pair has the same ranking, there is no +# addition. If each pair has a different ranking, there is one extra +# candy awarded. +for my $i (1 .. $#ARGV) { + $tot++ unless $ARGV[$i] == $ARGV[$i-1]; +} + +print "$tot\n"; diff --git a/challenge-081/pete-houston/perl/ch-1.pl b/challenge-081/pete-houston/perl/ch-1.pl new file mode 100644 index 0000000000..1fa096d9b1 --- /dev/null +++ b/challenge-081/pete-houston/perl/ch-1.pl @@ -0,0 +1,40 @@ +#!/usr/bin/env perl +#=============================================================================== +# +# FILE: 8101.pl +# +# USAGE: ./8101.pl string1 string2 +# +# DESCRIPTION: Find complete common substrings +# +# REQUIREMENTS: Math::Prime::Util +# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk +# ORGANIZATION: Openstrike +# VERSION: 1.0 +# CREATED: 05/10/20 +#=============================================================================== + +use strict; +use warnings; +use Math::Prime::Util 'gcd'; + +# Find longest possible substring +my @str = @ARGV[0, 1]; +my @len = map { length } @str; +my $longest = gcd (@len); + +# Count up +my $ans; +LENGTH: +for my $i (1 .. $longest) { + my $substr = substr ($str[0], 0, $i); + last unless substr ($str[1], 0, $i) eq $substr; + for my $j (0, 1) { + next LENGTH if $len[$j] % $i; + next LENGTH if $str[$j] ne $substr x ($len[$j] / $i); + } + $ans = $substr; +} + +$ans //= 'No common base string'; +print "$ans\n"; diff --git a/challenge-081/pete-houston/perl/ch-2.pl b/challenge-081/pete-houston/perl/ch-2.pl new file mode 100644 index 0000000000..c527ee6509 --- /dev/null +++ b/challenge-081/pete-houston/perl/ch-2.pl @@ -0,0 +1,40 @@ +#!/usr/bin/env perl +#=============================================================================== +# +# FILE: 8102.pl +# +# USAGE: ./8102.pl [ infile ] +# +# DESCRIPTION: Word frequencies +# +# OPTIONS: Read data from STDIN if input filename is missing +# REQUIREMENTS: List::MoreUtils 0.42 or newer +# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk +# ORGANIZATION: Openstrike +# VERSION: 1.0 +# CREATED: 05/10/20 +#=============================================================================== + +use strict; +use warnings; + +use List::MoreUtils 0.420 'occurrences'; + +# Optionally open the file +my $fh = \*STDIN; +if (defined $ARGV[0]) { + open $fh, '<', $ARGV[0] or die "Cannot open $ARGV[0]: $!"; +} + +# Convert the input into an array of words +my @words; +while (<$fh>) { + s/[."(),]|'s|--//g; + push @words, split; +} + +# Find and display the frequencies +my @occ = occurrences (@words); +for my $i (0 .. $#occ) { + print "$i: " . join (' ', sort @{$occ[$i]}) . "\n" if defined $occ[$i]; +} diff --git a/stats/pwc-challenge-080.json b/stats/pwc-challenge-080.json index a48dcfc31a..527ccf8373 100644 --- a/stats/pwc-challenge-080.json +++ b/stats/pwc-challenge-080.json @@ -1,245 +1,17 @@ { - "tooltip" : { - "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>", - "followPointer" : 1, - "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>" - }, - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "[Champions: 41] Last updated at 2020-10-06 04:52:04 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - 080" - }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 080", - "data" : [ - { - "drilldown" : "Abigail", - "name" : "Abigail", - "y" : 2 - }, - { - "name" : "Adam Russell", - "y" : 3, - "drilldown" : "Adam Russell" - }, - { - "drilldown" : "Alexander Pankoff", - "name" : "Alexander Pankoff", - "y" : 2 - }, - { - "drilldown" : "Andinus", - "name" : "Andinus", - "y" : 4 - }, - { - "y" : 2, - "name" : "Andrew Shitov", - "drilldown" : "Andrew Shitov" - }, - { - "y" : 1, - "name" : "Anton Fedotov", - "drilldown" : "Anton Fedotov" - }, - { - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer", - "y" : 5 - }, - { - "name" : "Athanasius", - "y" : 4, - "drilldown" : "Athanasius" - }, - { - "name" : "Bob Lied", - "y" : 2, - "drilldown" : "Bob Lied" - }, - { - "y" : 2, - "name" : "Cheok-Yin Fung", - "drilldown" : "Cheok-Yin Fung" - }, - { - "drilldown" : "Colin Crain", - "name" : "Colin Crain", - "y" : 5 - }, - { - "drilldown" : "Cristina Heredia", - "name" : "Cristina Heredia", - "y" : 2 - }, - { - "drilldown" : "Dave Cross", - "name" : "Dave Cross", - "y" : 2 - }, - { - "name" : "Dave Jacoby", - "y" : 3, - "drilldown" : "Dave Jacoby" - }, - { - "name" : "Duncan C. White", - "y" : 2, - "drilldown" : "Duncan C. White" - }, - { - "drilldown" : "E. Choroba", - "name" : "E. Choroba", - "y" : 2 - }, - { - "drilldown" : "Flavio Poletti", - "y" : 4, - "name" : "Flavio Poletti" - }, - { - "drilldown" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", - "y" : 5 - }, - { - "y" : 2, - "name" : "James Smith", - "drilldown" : "James Smith" - }, - { - "name" : "Jan Krnavek", - "y" : 2, - "drilldown" : "Jan Krnavek" - }, - { - "drilldown" : "Jorg Sommrey", - "y" : 2, - "name" : "Jorg Sommrey" - }, - { - "name" : "Julio de Castro", - "y" : 4, - "drilldown" : "Julio de Castro" - }, - { - "drilldown" : "Kang-min Liu", - "name" : "Kang-min Liu", - "y" : 4 - }, - { - "name" : "Laurent Rosenfeld", - "y" : 5, - "drilldown" : "Laurent Rosenfeld" - }, - { - "drilldown" : "Lubos Kolouch", - "y" : 2, - "name" : "Lubos Kolouch" - }, - { - "name" : "Mark Anderson", - "y" : 2, - "drilldown" : "Mark Anderson" - }, - { - "y" : 2, - "name" : "Markus Holzer", - "drilldown" : "Markus Holzer" - }, - { - "drilldown" : "Mohammad S Anwar", - "y" : 5, - "name" : "Mohammad S Anwar" - }, - { - "drilldown" : "Myoungjin Jeon", - "name" : "Myoungjin Jeon", - "y" : 6 - }, - { - "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke", - "y" : 2 - }, - { - "drilldown" : "Nuno Vieira", - "name" : "Nuno Vieira", - "y" : 2 - }, - { - "y" : 5, - "name" : "Roger Bell_West", - "drilldown" : "Roger Bell_West" - }, - { - "y" : 2, - "name" : "Shawn Wagner", - "drilldown" : "Shawn Wagner" - }, - { - "drilldown" : "Simon Green", - "y" : 3, - "name" : "Simon Green" - }, - { - "drilldown" : "Simon Proctor", - "y" : 2, - "name" : "Simon Proctor" - }, - { - "name" : "Steven Wilson", - "y" : 2, - "drilldown" : "Steven Wilson" - }, - { - "drilldown" : "Ted Leahy", - "y" : 2, - "name" : "Ted Leahy" - }, - { - "name" : "Ulrich Rieke", - "y" : 4, - "drilldown" : "Ulrich Rieke" - }, - { - "name" : "Vinod Kumar K", - "y" : 2, - "drilldown" : "Vinod Kumar K" - }, - { - "y" : 3, - "name" : "Walt Mankowski", - "drilldown" : "Walt Mankowski" - }, - { - "drilldown" : "Wanderdoc", - "y" : 2, - "name" : "Wanderdoc" - } - ] - } - ], "drilldown" : { "series" : [ { + "id" : "Abigail", + "name" : "Abigail", "data" : [ [ "Perl", 2 ] - ], - "id" : "Abigail", - "name" : "Abigail" + ] }, { - "id" : "Adam Russell", "data" : [ [ "Perl", @@ -250,19 +22,22 @@ 1 ] ], - "name" : "Adam Russell" + "name" : "Adam Russell", + "id" : "Adam Russell" }, { - "name" : "Alexander Pankoff", "data" : [ [ "Perl", 2 ] ], + "name" : "Alexander Pankoff", "id" : "Alexander Pankoff" }, { + "id" : "Andinus", + "name" : "Andinus", "data" : [ [ "Perl", @@ -272,29 +47,27 @@ "Blog", 2 ] - ], - "id" : "Andinus", - "name" : "Andinus" + ] }, { + "name" : "Andrew Shitov", "data" : [ [ "Raku", 2 ] ], - "id" : "Andrew Shitov", - "name" : "Andrew Shitov" + "id" : "Andrew Shitov" }, { - "id" : "Anton Fedotov", + "name" : "Anton Fedotov", "data" : [ [ "Perl", 1 ] ], - "name" : "Anton Fedotov" + "id" : "Anton Fedotov" }, { "id" : "Arne Sommer", @@ -316,6 +89,7 @@ }, { "id" : "Athanasius", + "name" : "Athanasius", "data" : [ [ "Perl", @@ -325,32 +99,31 @@ "Raku", 2 ] - ], - "name" : "Athanasius" + ] }, { + "name" : "Bob Lied", "data" : [ [ "Perl", 2 ] ], - "id" : "Bob Lied", - "name" : "Bob Lied" + "id" : "Bob Lied" }, { + "id" : "Cheok-Yin Fung", "name" : "Cheok-Yin Fung", "data" : [ [ "Perl", 2 ] - ], - "id" : "Cheok-Yin Fung" + ] }, { - "name" : "Colin Crain", "id" : "Colin Crain", + "name" : "Colin Crain", "data" : [ [ "Perl", @@ -373,21 +146,20 @@ 2 ] ], - "id" : "Cristina Heredia", - "name" : "Cristina Heredia" + "name" : "Cristina Heredia", + "id" : "Cristina Heredia" }, { - "id" : "Dave Cross", + "name" : "Dave Cross", "data" : [ [ "Perl", 2 ] ], - "name" : "Dave Cross" + "id" : "Dave Cross" }, { - "name" : "Dave Jacoby", "id" : "Dave Jacoby", "data" : [ [ @@ -398,21 +170,22 @@ "Blog", 1 ] - ] + ], + "name" : "Dave Jacoby" }, { - "name" : "Duncan C. White", - "id" : "Duncan C. White", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Duncan C. White", + "id" : "Duncan C. White" }, { - "name" : "E. Choroba", "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", @@ -421,7 +194,6 @@ ] }, { - "name" : "Flavio Poletti", "id" : "Flavio Poletti", "data" : [ [ @@ -432,10 +204,10 @@ "Blog", 2 ] - ] + ], + "name" : "Flavio Poletti" }, { - "name" : "Jaldhar H. Vyas", "id" : "Jaldhar H. Vyas", "data" : [ [ @@ -450,7 +222,8 @@ "Blog", 1 ] - ] + ], + "name" : "Jaldhar H. Vyas" }, { "id" : "James Smith", @@ -473,8 +246,8 @@ "name" : "Jan Krnavek" }, { - "name" : "Jorg Sommrey", "id" : "Jorg Sommrey", + "name" : "Jorg Sommrey", "data" : [ [ "Perl", @@ -497,7 +270,7 @@ "id" : "Julio de Castro" }, { - "name" : "Kang-min Liu", + "id" : "Kang-min Liu", "data" : [ [ "Perl", @@ -508,11 +281,11 @@ 2 ] ], - "id" : "Kang-min Liu" + "name" : "Kang-min Liu" }, { - "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -535,12 +308,12 @@ 2 ] ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch" }, { - "name" : "Mark Anderson", "id" : "Mark Anderson", + "name" : "Mark Anderson", "data" : [ [ "Raku", @@ -559,7 +332,6 @@ "id" : "Markus Holzer" }, { - "name" : "Mohammad S Anwar", "data" : [ [ "Perl", @@ -574,10 +346,10 @@ 1 ] ], + "name" : "Mohammad S Anwar", "id" : "Mohammad S Anwar" }, { - "id" : "Myoungjin Jeon", "data" : [ [ "Perl", @@ -592,17 +364,18 @@ 2 ] ], - "name" : "Myoungjin Jeon" + "name" : "Myoungjin Jeon", + "id" : "Myoungjin Jeon" }, { "id" : "Niels van Dijke", + "name" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] - ], - "name" : "Niels van Dijke" + ] }, { "id" : "Nuno Vieira", @@ -615,7 +388,17 @@ "name" : "Nuno Vieira" }, { - "id" : "Roger Bell_West", + "id" : "Pete Houston", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Pete Houston" + }, + { + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -630,11 +413,11 @@ 1 ] ], - "name" : "Roger Bell_West" + "id" : "Roger Bell_West" }, { - "name" : "Shawn Wagner", "id" : "Shawn Wagner", + "name" : "Shawn Wagner", "data" : [ [ "Perl", @@ -643,7 +426,6 @@ ] }, { - "name" : "Simon Green", "id" : "Simon Green", "data" : [ [ @@ -654,41 +436,42 @@ "Blog", 1 ] - ] + ], + "name" : "Simon Green" }, { - "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ [ "Raku", 2 ] ], - "name" : "Simon Proctor" + "id" : "Simon Proctor" }, { + "name" : "Steven Wilson", "data" : [ [ "Perl", 2 ] ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + "id" : "Steven Wilson" }, { - "id" : "Ted Leahy", "data" : [ [ "Perl", 2 ] ], - "name" : "Ted Leahy" + "name" : "Ted Leahy", + "id" : "Ted Leahy" }, { - "name" : "Ulrich Rieke", "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -701,18 +484,17 @@ ] }, { - "id" : "Vinod Kumar K", "data" : [ [ "Perl", 2 ] ], - "name" : "Vinod Kumar K" + "name" : "Vinod Kumar K", + "id" : "Vinod Kumar K" }, { "name" : "Walt Mankowski", - "id" : "Walt Mankowski", "data" : [ [ "Perl", @@ -722,38 +504,271 @@ "Blog", 1 ] - ] + ], + "id" : "Walt Mankowski" }, { - "id" : "Wanderdoc", "data" : [ [ "Perl", 2 ] ], - "name" : "Wanderdoc" + "name" : "Wanderdoc", + "id" : "Wanderdoc" } ] }, + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, "legend" : { "enabled" : 0 }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "series" : [ + { + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 080", + "data" : [ + { + "y" : 2, + "name" : "Abigail", + "drilldown" : "Abigail" + }, + { + "y" : 3, + "drilldown" : "Adam Russell", + "name" : "Adam Russell" + }, + { + "name" : "Alexander Pankoff", + "drilldown" : "Alexander Pankoff", + "y" : 2 + }, + { + "y" : 4, + "name" : "Andinus", + "drilldown" : "Andinus" + }, + { + "y" : 2, + "drilldown" : "Andrew Shitov", + "name" : "Andrew Shitov" + }, + { + "y" : 1, + "drilldown" : "Anton Fedotov", + "name" : "Anton Fedotov" + }, + { + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer", + "y" : 5 + }, + { + "name" : "Athanasius", + "drilldown" : "Athanasius", + "y" : 4 + }, + { + "y" : 2, + "drilldown" : "Bob Lied", + "name" : "Bob Lied" + }, + { + "y" : 2, + "drilldown" : "Cheok-Yin Fung", + "name" : "Cheok-Yin Fung" + }, + { + "drilldown" : "Colin Crain", + "name" : "Colin Crain", + "y" : 5 + }, + { + "y" : 2, + "name" : "Cristina Heredia", + "drilldown" : "Cristina Heredia" + }, + { + "y" : 2, + "drilldown" : "Dave Cross", + "name" : "Dave Cross" + }, + { + "y" : 3, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "y" : 2, + "name" : "Duncan C. White", + "drilldown" : "Duncan C. White" + }, + { + "y" : 2, + "drilldown" : "E. Choroba", + "name" : "E. Choroba" + }, + { + "y" : 4, + "name" : "Flavio Poletti", + "drilldown" : "Flavio Poletti" + }, + { + "y" : 5, + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" + }, + { + "drilldown" : "James Smith", + "name" : "James Smith", + "y" : 2 + }, + { + "drilldown" : "Jan Krnavek", + "name" : "Jan Krnavek", + "y" : 2 + }, + { + "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey", + "y" : 2 + }, + { + "y" : 4, + "name" : "Julio de Castro", + "drilldown" : "Julio de Castro" + }, + { + "drilldown" : "Kang-min Liu", + "name" : "Kang-min Liu", + "y" : 4 + }, + { + "y" : 5, + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Lubos Kolouch", + "drilldown" : "Lubos Kolouch", + "y" : 2 + }, + { + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Markus Holzer", + "name" : "Markus Holzer" + }, + { + "drilldown" : "Mohammad S Anwar", + "name" : "Mohammad S Anwar", + "y" : 5 + }, + { + "drilldown" : "Myoungjin Jeon", + "name" : "Myoungjin Jeon", + "y" : 6 + }, + { + "name" : "Niels van Dijke", + "drilldown" : "Niels van Dijke", + "y" : 2 + }, + { + "name" : "Nuno Vieira", + "drilldown" : "Nuno Vieira", + "y" : 2 + }, + { + "y" : 2, + "name" : "Pete Houston", + "drilldown" : "Pete Houston" + }, + { + "y" : 5, + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "drilldown" : "Shawn Wagner", + "name" : "Shawn Wagner", + "y" : 2 + }, + { + "name" : "Simon Green", + "drilldown" : "Simon Green", + "y" : 3 + }, + { + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor", + "y" : 2 + }, + { + "y" : 2, + "name" : "Steven Wilson", + "drilldown" : "Steven Wilson" + }, + { + "name" : "Ted Leahy", + "drilldown" : "Ted Leahy", + "y" : 2 + }, + { + "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke", + "y" : 4 + }, + { + "y" : 2, + "name" : "Vinod Kumar K", + "drilldown" : "Vinod Kumar K" + }, + { + "drilldown" : "Walt Mankowski", + "name" : "Walt Mankowski", + "y" : 3 + }, + { + "name" : "Wanderdoc", + "drilldown" : "Wanderdoc", + "y" : 2 + } + ] } - }, + ], "chart" : { "type" : "column" }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } + "subtitle" : { + "text" : "[Champions: 42] Last updated at 2020-10-06 06:16:27 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 080" + }, + "tooltip" : { + "followPointer" : 1, + "headerForma |
