aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2022-04-04 00:34:14 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2022-04-04 00:34:14 +0100
commit5827a5edfc2a6cd770f8d715d65eb43141ae58a8 (patch)
tree3876cce21af331817e408bacb835077e79a2fbae
parentf280ee43d6621f3547988b1ed4df64dc5a52e905 (diff)
downloadperlweeklychallenge-club-5827a5edfc2a6cd770f8d715d65eb43141ae58a8.tar.gz
perlweeklychallenge-club-5827a5edfc2a6cd770f8d715d65eb43141ae58a8.tar.bz2
perlweeklychallenge-club-5827a5edfc2a6cd770f8d715d65eb43141ae58a8.zip
- Added solutions by Colin Crain.
-rwxr-xr-xchallenge-158/colin-crain/perl/ch-1.pl111
-rwxr-xr-xchallenge-158/colin-crain/perl/ch-2.pl56
-rwxr-xr-xchallenge-158/colin-crain/raku/ch-1.raku18
-rwxr-xr-xchallenge-158/colin-crain/raku/ch-2.raku19
-rw-r--r--stats/pwc-current.json532
-rw-r--r--stats/pwc-language-breakdown-summary.json68
-rw-r--r--stats/pwc-language-breakdown.json2274
-rw-r--r--stats/pwc-leaders.json744
-rw-r--r--stats/pwc-summary-1-30.json38
-rw-r--r--stats/pwc-summary-121-150.json44
-rw-r--r--stats/pwc-summary-151-180.json32
-rw-r--r--stats/pwc-summary-181-210.json42
-rw-r--r--stats/pwc-summary-211-240.json34
-rw-r--r--stats/pwc-summary-241-270.json44
-rw-r--r--stats/pwc-summary-31-60.json114
-rw-r--r--stats/pwc-summary-61-90.json108
-rw-r--r--stats/pwc-summary-91-120.json106
-rw-r--r--stats/pwc-summary.json570
18 files changed, 2583 insertions, 2371 deletions
diff --git a/challenge-158/colin-crain/perl/ch-1.pl b/challenge-158/colin-crain/perl/ch-1.pl
new file mode 100755
index 0000000000..127ce51645
--- /dev/null
+++ b/challenge-158/colin-crain/perl/ch-1.pl
@@ -0,0 +1,111 @@
+#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# add-another-prime-to-the-pile.pl
+#
+# Additive Primes
+# Submitted by: Mohammad S Anwar
+#
+# Write a script to find out all Additive Primes <= 100.
+#
+# Additive primes are prime numbers for which the sum of their
+# decimal digits are also primes.
+#
+# Output
+# 2, 3, 5, 7, 11, 23, 29, 41, 43, 47, 61, 67, 83, 89
+#
+# method
+#
+# You know, sometimes when I do these problems I like to
+# pretend that I'm not good at math. Which is to say choose to
+# I regard the problem as a computing problem, rather than a
+# math problem, or or even more broadly a problem in search of
+# a structure that will solve it, rather than any specific
+# answer.
+#
+# Or put another way solve a more generalized version with more
+# unknowns.
+#
+# In this problem we need a bunch of prime numbers. A quick bit
+# of mathematical reasoning tells us
+#
+# 1. that 100 is not a additive prime, as it adds to 1
+# 2. the that largest digit-sum we'll need to deal with is
+# for the value 99, where 9 + 9 = 18.
+# 3. thus, using preexisting knowledge we only need to consider
+# the primes 2, 3, 5, 7, 11, 13, and 17
+#
+# But you know what? We're going to pretend we don't know that,
+# and instead compute as many primes as required. Along the way
+# we'll make the upper limit user-configurable, which will
+# allow us to find the number 102 should we wish, which by the
+# looks of it is an addative prime.
+#
+# What we'll need to do is make a lookup of primes that
+# contains every prime less than the largest value we have
+# tried to date. The digit sum will always be less than or
+# equal to the value. If we exceed the last prime found, we'll
+# expand our bounds in the list of found primes as required.
+#
+# We can then construct a lookup hash to check for primality.
+#
+# Then we can break apart the number into its digits and sum
+# them, and do a quick lookup to see whether the result is
+# prime.
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+use List::Util qw( sum0 );
+
+my @primes;
+my %lookup;
+my @additives;
+
+## make a closed prime iterator function
+## modified to add to the prime lookup hash
+my $pg = sub {
+ if ( @primes < 2 ) {
+ push @primes, @primes == 0 ? 2 : 3;
+ $lookup{ $primes[-1] } = 1;
+ return $primes[-1];
+ }
+
+ my $candidate = $primes[-1] ;
+ CANDIDATE: while ( $candidate += 2 ) {
+ my $sqrt_candidate = sqrt( $candidate );
+ for my $test ( @primes ) {
+ next CANDIDATE if $candidate % $test == 0;
+ last if $test > $sqrt_candidate;
+ }
+ push @primes, $candidate;
+ $lookup{ $candidate } = 1;
+ return $candidate;
+ }
+} ;
+$pg->(); ## init the prime array with 2
+
+my $limit = shift @ARGV // 100;
+
+## look at the numbers 1 to $limit,
+## checking each for primality and primality in the digit sum
+for ( 1..$limit ) {
+ $pg->() if $primes[-1] <= $_ ;
+ next unless $lookup{$_} ;
+ my $sum = sum0( split //, $_ );
+ push @additives, $_ if $lookup{$sum};
+}
+
+say join ', ', @additives;
+
+
+
+
diff --git a/challenge-158/colin-crain/perl/ch-2.pl b/challenge-158/colin-crain/perl/ch-2.pl
new file mode 100755
index 0000000000..b20bfc5f96
--- /dev/null
+++ b/challenge-158/colin-crain/perl/ch-2.pl
@@ -0,0 +1,56 @@
+#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# cubans-in-their-prime.pl
+#
+# First Series Cuban Primes
+# Submitted by: Mohammad S Anwar
+# Write a script to compute first series Cuban Primes <= 1000.
+# Please refer wikipedia page for more informations.
+#
+# Output:
+# 7, 19, 37, 61, 127, 271, 331, 397, 547, 631, 919.
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+
+sub nth_series_cubic ( $dif ) {
+ my @c;
+ my $x;
+ for my $y ( 1..100 ) {
+ $x = $y + $dif;
+ push @c, ($x**3 - $y**3) / ($x - $y) ;
+ }
+ return @c;
+}
+
+sub is_prime ($num) {
+ for ( 2..sqrt $num ) {
+ return 0 unless $num % $_;
+ }
+ return 1;
+}
+
+## output section
+my $out;
+for my $diff ( 1..10 ) {
+ $out .= sprintf " %3s | %s\n",
+ $diff,
+ join ' ', grep { is_prime($_) && $_ <= 1000 } nth_series_cubic( $diff ) ;
+}
+
+say<<~"END";
+ series | sequence
+ -------+------------------------------------------
+ $out
+ END
+
diff --git a/challenge-158/colin-crain/raku/ch-1.raku b/challenge-158/colin-crain/raku/ch-1.raku
new file mode 100755
index 0000000000..f89ff21663
--- /dev/null
+++ b/challenge-158/colin-crain/raku/ch-1.raku
@@ -0,0 +1,18 @@
+#!/usr/bin/env perl6
+#
+#
+# .raku
+#
+#
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+unit sub MAIN () ;
+
+put (^100).grep(*.is-prime )
+ .grep(*.comb.sum.is-prime);
+
+
diff --git a/challenge-158/colin-crain/raku/ch-2.raku b/challenge-158/colin-crain/raku/ch-2.raku
new file mode 100755
index 0000000000..164b06d769
--- /dev/null
+++ b/challenge-158/colin-crain/raku/ch-2.raku
@@ -0,0 +1,19 @@
+#!/usr/bin/env perl6
+#
+#
+# .raku
+#
+#
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+unit sub MAIN ( $limit = 1000) ;
+
+say gather for 1..* -> $x {
+ my $n = 3 * $x² + 3 * $x + 1;
+ last if $n > $limit;
+ take $n if $n.is-prime;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index c73802993b..4c8b88905f 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,242 +1,35 @@
{
- "legend" : {
- "enabled" : 0
- },
- "subtitle" : {
- "text" : "[Champions: 33] Last updated at 2022-04-03 23:14:51 GMT"
- },
- "series" : [
- {
- "name" : "The Weekly Challenge - 158",
- "data" : [
- {
- "y" : 2,
- "drilldown" : "Alexander Pankoff",
- "name" : "Alexander Pankoff"
- },
- {
- "y" : 2,
- "drilldown" : "Ali Moradi",
- "name" : "Ali Moradi"
- },
- {
- "y" : 2,
- "drilldown" : "Andrezgz",
- "name" : "Andrezgz"
- },
- {
- "y" : 5,
- "name" : "Arne Sommer",
- "drilldown" : "Arne Sommer"
- },
- {
- "y" : 4,
- "drilldown" : "Athanasius",
- "name" : "Athanasius"
- },
- {
- "y" : 4,
- "name" : "Bruce Gray",
- "drilldown" : "Bruce Gray"
- },
- {
- "y" : 2,
- "drilldown" : "Colin Crain",
- "name" : "Colin Crain"
- },
- {
- "y" : 3,
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby"
- },
- {
- "drilldown" : "Duncan C. White",
- "name" : "Duncan C. White",
- "y" : 2
- },
- {
- "y" : 2,
- "name" : "E. Choroba",
- "drilldown" : "E. Choroba"
- },
- {
- "y" : 6,
- "name" : "Flavio Poletti",
- "drilldown" : "Flavio Poletti"
- },
- {
- "y" : 5,
- "name" : "Jaldhar H. Vyas",
- "drilldown" : "Jaldhar H. Vyas"
- },
- {
- "y" : 3,
- "drilldown" : "James Smith",
- "name" : "James Smith"
- },
- {
- "y" : 2,
- "drilldown" : "Jan Krnavek",
- "name" : "Jan Krnavek"
- },
- {
- "drilldown" : "Jorg Sommrey",
- "name" : "Jorg Sommrey",
- "y" : 2
- },
- {
- "y" : 5,
- "drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
- },
- {
- "y" : 2,
- "drilldown" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
- },
- {
- "drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari",
- "y" : 8
- },
- {
- "drilldown" : "Mark Anderson",
- "name" : "Mark Anderson",
- "y" : 2
- },
- {
- "y" : 2,
- "name" : "Marton Polgar",
- "drilldown" : "Marton Polgar"
- },
- {
- "y" : 2,
- "name" : "Matthew Neleigh",
- "drilldown" : "Matthew Neleigh"
- },
- {
- "drilldown" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar",
- "y" : 2
- },
- {
- "drilldown" : "Niels van Dijke",
- "name" : "Niels van Dijke",
- "y" : 2
- },
- {
- "y" : 2,
- "name" : "Paulo Custodio",
- "drilldown" : "Paulo Custodio"
- },
- {
- "y" : 2,
- "drilldown" : "Pete Houston",
- "name" : "Pete Houston"
- },
- {
- "y" : 3,
- "name" : "Peter Campbell Smith",
- "drilldown" : "Peter Campbell Smith"
- },
- {
- "y" : 2,
- "name" : "PokGoPun",
- "drilldown" : "PokGoPun"
- },
- {
- "name" : "Robert DiCicco",
- "drilldown" : "Robert DiCicco",
- "y" : 4
- },
- {
- "y" : 2,
- "name" : "Robert Ransbottom",
- "drilldown" : "Robert Ransbottom"
- },
- {
- "name" : "Roger Bell_West",
- "drilldown" : "Roger Bell_West",
- "y" : 5
- },
- {
- "name" : "Simon Green",
- "drilldown" : "Simon Green",
- "y" : 3
- },
- {
- "y" : 4,
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke"
- },
- {
- "y" : 3,
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
- }
- ],
- "colorByPoint" : 1
- }
- ],
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "xAxis" : {
- "type" : "category"
- },
- "tooltip" : {
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "followPointer" : 1
- },
- "title" : {
- "text" : "The Weekly Challenge - 158"
- },
- "chart" : {
- "type" : "column"
- },
"drilldown" : {
"series" : [
{
+ "id" : "Alexander Pankoff",
+ "name" : "Alexander Pankoff",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Alexander Pankoff",
- "id" : "Alexander Pankoff"
+ ]
},
{
+ "id" : "Ali Moradi",
+ "name" : "Ali Moradi",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Ali Moradi",
- "id" : "Ali Moradi"
+ ]
},
{
"name" : "Andrezgz",
+ "id" : "Andrezgz",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Andrezgz"
+ ]
},
{
"data" : [
@@ -257,7 +50,6 @@
"id" : "Arne Sommer"
},
{
- "name" : "Athanasius",
"data" : [
[
"Perl",
@@ -268,9 +60,11 @@
2
]
],
- "id" : "Athanasius"
+ "id" : "Athanasius",
+ "name" : "Athanasius"
},
{
+ "id" : "Bruce Gray",
"name" : "Bruce Gray",
"data" : [
[
@@ -281,21 +75,27 @@
"Raku",
2
]
- ],
- "id" : "Bruce Gray"
+ ]
},
{
"name" : "Colin Crain",
+ "id" : "Colin Crain",
"data" : [
[
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
"Blog",
2
]
- ],
- "id" : "Colin Crain"
+ ]
},
{
- "name" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -306,30 +106,30 @@
1
]
],
+ "name" : "Dave Jacoby",
"id" : "Dave Jacoby"
},
{
+ "name" : "Duncan C. White",
"id" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Duncan C. White"
+ ]
},
{
- "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
- "name" : "E. Choroba"
+ "name" : "E. Choroba",
+ "id" : "E. Choroba"
},
{
- "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -344,10 +144,10 @@
2
]
],
- "name" : "Flavio Poletti"
+ "name" : "Flavio Poletti",
+ "id" : "Flavio Poletti"
},
{
- "id" : "Jaldhar H. Vyas",
"data" : [
[
"Perl",
@@ -362,6 +162,7 @@
1
]
],
+ "id" : "Jaldhar H. Vyas",
"name" : "Jaldhar H. Vyas"
},
{
@@ -375,8 +176,8 @@
1
]
],
- "id" : "James Smith",
- "name" : "James Smith"
+ "name" : "James Smith",
+ "id" : "James Smith"
},
{
"data" : [
@@ -385,8 +186,8 @@
2
]
],
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ "name" : "Jan Krnavek",
+ "id" : "Jan Krnavek"
},
{
"data" : [
@@ -395,8 +196,8 @@
2
]
],
- "id" : "Jorg Sommrey",
- "name" : "Jorg Sommrey"
+ "name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey"
},
{
"data" : [
@@ -427,7 +228,6 @@
"name" : "Lubos Kolouch"
},
{
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -438,40 +238,40 @@
6
]
],
- "name" : "Luca Ferrari"
+ "name" : "Luca Ferrari",
+ "id" : "Luca Ferrari"
},
{
- "id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
+ "id" : "Mark Anderson",
"name" : "Mark Anderson"
},
{
- "id" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
],
+ "id" : "Marton Polgar",
"name" : "Marton Polgar"
},
{
- "id" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
],
+ "id" : "Matthew Neleigh",
"name" : "Matthew Neleigh"
},
{
- "id" : "Mohammad S Anwar",
"data" : [
[
"Perl",
@@ -482,40 +282,40 @@
1
]
],
+ "id" : "Mohammad S Anwar",
"name" : "Mohammad S Anwar"
},
{
+ "name" : "Niels van Dijke",
"id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Niels van Dijke"
+ ]
},
{
- "id" : "Paulo Custodio",
"data" : [
[
"Perl",
2
]
],
+ "id" : "Paulo Custodio",
"name" : "Paulo Custodio"
},
{
- "id" : "Pete Houston",
"data" : [
[
"Perl",
2
]
],
+ "id" : "Pete Houston",
"name" : "Pete Houston"
},
{
- "name" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -526,20 +326,20 @@
1
]
],
- "id" : "Peter Campbell Smith"
+ "id" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith"
},
{
"id" : "PokGoPun",
+ "name" : "PokGoPun",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "PokGoPun"
+ ]
},
{
- "name" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -550,19 +350,22 @@
2
]
],
- "id" : "Robert DiCicco"
+ "id" : "Robert DiCicco",
+ "name" : "Robert DiCicco"
},
{
"id" : "Robert Ransbottom",
+ "name" : "Robert Ransbottom",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Robert Ransbottom"
+ ]
},
{
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -576,9 +379,7 @@
"Blog",
1
]
- ],
- "id" : "Roger Bell_West",
- "name" : "Roger Bell_West"
+ ]
},
{
"data" : [
@@ -595,6 +396,8 @@
"name" : "Simon Green"
},
{
+ "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -604,11 +407,11 @@
"Raku",
2
]
- ],
- "name" : "Ulrich Rieke",
- "id" : "Ulrich Rieke"
+ ]
},
{
+ "id" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -618,10 +421,215 @@
"Blog",
1
]
- ],
- "name" : "W. Luis Mochan",
- "id" : "W. Luis Mochan"
+ ]
}
]
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "series" : [
+ {
+ "name" : "The Weekly Challenge - 158",
+ "colorByPoint" : 1,
+ "data" : [
+ {
+ "y" : 2,
+ "name" : "Alexander Pankoff",
+ "drilldown" : "Alexander Pankoff"
+ },
+ {
+ "drilldown" : "Ali Moradi",
+ "name" : "Ali Moradi",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Andrezgz",
+ "y" : 2,
+ "name" : "Andrezgz"
+ },
+ {
+ "name" : "Arne Sommer",
+ "y" : 5,
+ "drilldown" : "Arne Sommer"
+ },
+ {
+ "drilldown" : "Athanasius",
+ "name" : "Athanasius",
+ "y" : 4
+ },
+ {
+ "drilldown" : "Bruce Gray",
+ "y" : 4,
+ "name" : "Bruce Gray"
+ },
+ {
+ "drilldown" : "Colin Crain",
+ "y" : 6,
+ "name" : "Colin Crain"
+ },
+ {
+ "name" : "Dave Jacoby",
+ "y" : 3,
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "drilldown" : "Duncan C. White",
+ "name" : "Duncan C. White",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "name" : "E. Choroba",
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "drilldown" : "Flavio Poletti",
+ "y" : 6,
+ "name" : "Flavio Poletti"
+ },
+ {
+ "y" : 5,
+ "name" : "Jaldhar H. Vyas",
+ "drilldown" : "Jaldhar H. Vyas"
+ },
+ {
+ "drilldown" : "James Smith",
+ "name" : "James Smith",
+ "y" : 3
+ },
+ {
+ "y" : 2,
+ "name" : "Jan Krnavek",
+ "drilldown" : "Jan Krnavek"
+ },
+ {
+ "drilldown" : "Jorg Sommrey",
+ "y" : 2,
+ "name" : "Jorg Sommrey"
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5,
+ "name" : "Laurent Rosenfeld"
+ },
+ {
+ "y" : 2,
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch"
+ },
+ {
+ "y" : 8,
+ "name" : "Luca Ferrari",
+ "drilldown" : "Luca Ferrari"
+ },
+ {
+ "y" : 2,
+ "name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson"
+ },
+ {
+ "name" : "Marton Polgar",
+ "y" : 2,
+ "drilldown" : "Marton Polgar"
+ },
+ {
+ "drilldown" : "Matthew Neleigh",
+ "name" : "Matthew Neleigh",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "name" : "Mohammad S Anwar",
+ "drilldown" : "Mohammad S Anwar"
+ },
+ {
+ "y" : 2,
+ "name" : "Niels van Dijke",
+ "drilldown" : "Niels van Dijke"
+ },
+ {
+ "y" : 2,
+ "name" : "Paulo Custodio",
+ "drilldown" : "Paulo Custodio"
+ },
+ {
+ "drilldown" : "Pete Houston",
+ "name" : "Pete Houston",
+ "y" : 2
+ },
+ {
+ "name" : "Peter Campbell Smith",
+ "y" : 3,
+ "drilldown" : "Peter Campbell Smith"
+ },
+ {
+ "y" : 2,
+ "name" : "PokGoPun",
+ "drilldown" : "PokGoPun"
+ },
+ {
+ "drilldown" : "Robert DiCicco",
+ "y" : 4,
+ "name" : "Robert DiCicco"
+ },
+ {
+ "drilldown" : "Robert Ransbottom",
+ "name" : "Robert Ransbottom",
+ "y" : 2
+ },
+ {
+ "name" : "Roger Bell_West",
+ "y" : 5,
+ "drilldown" : "Roger Bell_West"
+ },
+ {
+ "drilldown" : "Simon Green",
+ "name" : "Simon Green",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
+ "y" : 4
+ },
+ {
+ "drilldown" : "W. Luis Mochan",
+ "y" : 3,
+ "name" : "W. Luis Mochan"
+ }
+ ]
+ }
+ ],
+ "legend" : {
+ "enabled" : 0
+ },
+ "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/>"
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "subtitle" : {
+ "text" : "[Champions: 33] Last updated at 2022-04-03 23:22:18 GMT"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 158"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 6155447bd4..3a7fc06588 100644
--- a/stats/pwc-language-breakdown-summary