diff options
| -rwxr-xr-x | challenge-186/colin-crain/perl/ch-1.pl | 71 | ||||
| -rwxr-xr-x | challenge-186/colin-crain/perl/ch-2.pl | 94 | ||||
| -rw-r--r-- | stats/pwc-current.json | 589 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 54 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 1314 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 764 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 32 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 34 | ||||
| -rw-r--r-- | stats/pwc-summary-151-180.json | 104 | ||||
| -rw-r--r-- | stats/pwc-summary-181-210.json | 42 | ||||
| -rw-r--r-- | stats/pwc-summary-211-240.json | 38 | ||||
| -rw-r--r-- | stats/pwc-summary-241-270.json | 46 | ||||
| -rw-r--r-- | stats/pwc-summary-271-300.json | 56 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 124 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 54 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 40 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 590 |
17 files changed, 2113 insertions, 1933 deletions
diff --git a/challenge-186/colin-crain/perl/ch-1.pl b/challenge-186/colin-crain/perl/ch-1.pl new file mode 100755 index 0000000000..2a13991796 --- /dev/null +++ b/challenge-186/colin-crain/perl/ch-1.pl @@ -0,0 +1,71 @@ +#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# .pl
+#
+# Zip List
+# Submitted by: Mohammad S Anwar
+# You are given two list @a and @b of same size.
+#
+# Create a subroutine sub zip(@a, @b) that merge the two list as
+# shown in the example below.
+#
+# Example
+#
+# Input: @a = qw/1 2 3/; @b = qw/a b c/;
+# Output: zip(@a, @b) should return qw/1 a 2 b 3 c/;
+# zip(@b, @a) should return qw/a 1 b 2 c 3/;
+#
+# method
+# I've never much been a fan of Perl function prototypes. They
+# always seemed a half-measure, emphasising what they were not,
+# which is is proper subroutine signature. They added a minor
+# hassle with little practical benefit, for me at least. And
+# others too, apparently, as they never much caught on.
+
+# When actual subroutine signatures were introduced things got a
+# little wierder, as protptypes and signatures occupy the same
+# semantic positioning. This is obviated by the :prototype keyword,
+# which must now be used should two need to coexist. Personally I
+# find this more pleasing, as it very much labels the prototypes as
+# *not* being a signature, which I always brought down the
+# readability of code using them. They're still esoteric, but at
+# least less outright confusingly.
+
+# All this is to satisfy Mohammads request that we provide a zip
+# subroutine that is fed two arrays, and not array references.
+# Sneaky twist that, but we deliver noethelass.
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+
+sub zip :prototype(\@@);
+
+my @a = (1,2,3);
+my @b = (4,5,6);
+
+my @res = zip @a, @b;
+say "@res";
+
+
+sub zip :prototype(\@@) ($one, @two) {
+ my @out;
+ for ($one->@*) {
+ push @out, $_, shift @two;
+ }
+ return @out;
+}
+
+
+
+
+
diff --git a/challenge-186/colin-crain/perl/ch-2.pl b/challenge-186/colin-crain/perl/ch-2.pl new file mode 100755 index 0000000000..a7b14ec29d --- /dev/null +++ b/challenge-186/colin-crain/perl/ch-2.pl @@ -0,0 +1,94 @@ +#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# uni-no-local.pl
+
+# Unicode Makeover
+# Submitted by: Mohammad S Anwar
+# You are given a string with possible unicode characters.
+#
+# Create a subroutine sub makeover($str) that replace the unicode
+# characters with ascii equivalent. For this task, let us assume it
+# only contains alphabets.
+#
+# Example 1
+# Input: $str = 'ÃÊÍÒÙ'
+# Output: 'AEIOU'
+#
+# Example 2
+# Input: $str = 'âÊíÒÙ'
+# Output: 'aEiOU'
+#
+# method:
+#
+# Let's being by saying this job, the big, job, the _real_ job, is
+# non-trivial. It's not exactly clear what a unicode character with
+# an ascii equivalent means. There are, for instance, characters
+# like the Icelandic Thorn, which map very cleanly to the English
+# ASCII characters TH. This isn't an approximation either, as the
+# glyph was orignally part of the English alphabet to designate
+# that exact sound.
+#
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+use open ":std", ":encoding(UTF-8)";
+use charnames ':full';
+
+use Text::Unidecode;
+
+my $str = 'âÊíÒÙ';
+my $let = $str;
+
+say "input: ", $str;
+
+say "unidecode: ", unidecode( $str );
+say "makeover: ", makeover($str);
+
+sub makeover ($str) {
+ my @in = split //, $str;
+ my $out;
+ for (@in) {
+ $out .= uni2ascii($_);
+ }
+ return $out;
+
+
+}
+
+sub uni2ascii ( $char ) {
+ my $let = $char;
+ my $hex = sprintf '%x', ord $char;
+ my $name = charnames::viacode("0x$hex");
+
+ my $qualifier = '(?:AFRICAN |REVERSED |TURNED )';
+ return '' if $name =~ /^COMBINING/; ## strip combining characters
+
+ if ($name =~ /LATIN (CAPITAL|SMALL) LETTER ([A-Z])(?:\s|\n|$)/) {
+ $let = $1 eq 'SMALL'
+ ? lc($2)
+ : $2 ;
+ }
+
+ return $let;
+
+}
+
+
+
+use Test::More;
+
+is makeover( 'ÃÊÍÒÙ' ), 'AEIOU', 'ex-1';
+is makeover( 'âÊíÒÙ' ), 'aEiOU', 'ex-2';
+is makeover( 'resumé' ), 'resume', 'mixed ascii + unicode';
+is makeover( 'Ģ' ), 'G', 'LATIN CAPITAL LETTER G WITH CEDILLA';
+
+done_testing();
diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 655450f3a8..f0b5e4c8f4 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,225 +1,14 @@ { - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "xAxis" : { - "type" : "category" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "legend" : { - "enabled" : 0 - }, - "chart" : { - "type" : "column" - }, "subtitle" : { - "text" : "[Champions: 36] Last updated at 2022-10-16 21:44:58 GMT" + "text" : "[Champions: 37] Last updated at 2022-10-16 22:27:39 GMT" }, "title" : { "text" : "The Weekly Challenge - 186" }, - "series" : [ - { - "name" : "The Weekly Challenge - 186", - "data" : [ - { - "name" : "Adam Russell", - "y" : 4, - "drilldown" : "Adam Russell" - }, - { - "name" : "Arne Sommer", - "y" : 5, - "drilldown" : "Arne Sommer" - }, - { - "name" : "Athanasius", - "y" : 4, - "drilldown" : "Athanasius" - }, - { - "drilldown" : "Cheok-Yin Fung", - "y" : 3, - "name" : "Cheok-Yin Fung" - }, - { - "drilldown" : "Dario Mazzeo", - "y" : 1, - "name" : "Dario Mazzeo" - }, - { - "y" : 2, - "name" : "Dave Cross", - "drilldown" : "Dave Cross" - }, - { - "drilldown" : "Dave Jacoby", - "y" : 2, - "name" : "Dave Jacoby" - }, - { - "drilldown" : "Duncan C. White", - "name" : "Duncan C. White", - "y" : 1 - }, - { - "name" : "E. Choroba", - "y" : 2, - "drilldown" : "E. Choroba" - }, - { - "drilldown" : "Feng Chang", - "name" : "Feng Chang", - "y" : 2 - }, - { - "drilldown" : "Flavio Poletti", - "name" : "Flavio Poletti", - "y" : 6 - }, - { - "drilldown" : "izem", - "y" : 2, - "name" : "izem" - }, - { - "y" : 5, - "name" : "Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas" - }, - { - "name" : "James Smith", - "y" : 3, - "drilldown" : "James Smith" - }, - { - "name" : "Jan Krnavek", - "y" : 2, - "drilldown" : "Jan Krnavek" - }, - { - "drilldown" : "Jorg Sommrey", - "name" : "Jorg Sommrey", - "y" : 2 - }, - { - "name" : "Julien Fiegehenn", - "y" : 2, - "drilldown" : "Julien Fiegehenn" - }, - { - "drilldown" : "Kjetil Skotheim", - "y" : 2, - "name" : "Kjetil Skotheim" - }, - { - "drilldown" : "Kueppo Wesley", - "y" : 4, - "name" : "Kueppo Wesley" - }, - { - "y" : 5, - "name" : "Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld" - }, - { - "name" : "Lubos Kolouch", - "y" : 2, - "drilldown" : "Lubos Kolouch" - }, - { - "y" : 8, - "name" : "Luca Ferrari", - "drilldown" : "Luca Ferrari" - }, - { - "drilldown" : "Mark Anderson", - "y" : 2, - "name" : "Mark Anderson" - }, - { - "drilldown" : "Marton Polgar", - "name" : "Marton Polgar", - "y" : 2 - }, - { - "y" : 2, - "name" : "Matthew Neleigh", - "drilldown" : "Matthew Neleigh" - }, - { - "y" : 2, - "name" : "Mohammad S Anwar", - "drilldown" : "Mohammad S Anwar" - }, - { - "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke", - "y" : 1 - }, - { - "name" : "Peter Campbell Smith", - "y" : 3, - "drilldown" : "Peter Campbell Smith" - }, - { - "name" : "Robert DiCicco", - "y" : 4, - "drilldown" : "Robert DiCicco" - }, - { - "drilldown" : "Robert Ransbottom", - "y" : 2, - "name" : "Robert Ransbottom" - }, - { - "name" : "Roger Bell_West", - "y" : 4, - "drilldown" : "Roger Bell_West" - }, - { - "drilldown" : "Solathian", - "name" : "Solathian", - "y" : 1 - }, - { - "drilldown" : "Stephen G. Lynn", - "name" : "Stephen G. Lynn", - "y" : 5 - }, - { - "drilldown" : "Tim Potapov", - "name" : "Tim Potapov", - "y" : 2 - }, - { - "name" : "Ulrich Rieke", - "y" : 3, - "drilldown" : "Ulrich Rieke" - }, - { - "y" : 3, - "name" : "W. Luis Mochan", - "drilldown" : "W. Luis Mochan" - } - ], - "colorByPoint" : 1 + "yAxis" : { + "title" : { + "text" : "Total Solutions" } - ], - "tooltip" : { - "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>", - "followPointer" : 1, - "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>" }, "drilldown" : { "series" : [ @@ -234,10 +23,11 @@ 2 ] ], - "name" : "Adam Russell", - "id" : "Adam Russell" + "id" : "Adam Russell", + "name" : "Adam Russell" }, { + "name" : "Arne Sommer", "data" : [ [ "Perl", @@ -252,10 +42,10 @@ 1 ] ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + "id" : "Arne Sommer" }, { + "id" : "Athanasius", "data" : [ [ "Perl", @@ -266,12 +56,9 @@ 2 ] ], - "id" : "Athanasius", "name" : "Athanasius" }, { - "name" : "Cheok-Yin Fung", - "id" : "Cheok-Yin Fung", "data" : [ [ "Perl", @@ -281,7 +68,19 @@ "Blog", 1 ] - ] + ], + "id" : "Cheok-Yin Fung", + "name" : "Cheok-Yin Fung" + }, + { + "id" : "Colin Crain", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Colin Crain" }, { "data" : [ @@ -290,12 +89,12 @@ 1 ] ], - "name" : "Dario Mazzeo", - "id" : "Dario Mazzeo" + "id" : "Dario Mazzeo", + "name" : "Dario Mazzeo" }, { - "id" : "Dave Cross", "name" : "Dave Cross", + "id" : "Dave Cross", "data" : [ [ "Perl", @@ -304,38 +103,38 @@ ] }, { + "name" : "Dave Jacoby", "data" : [ [ "Perl", 2 ] ], - "name" : "Dave Jacoby", "id" : "Dave Jacoby" }, { + "name" : "Duncan C. White", "data" : [ [ "Perl", 1 ] ], - "id" : "Duncan C. White", - "name" : "Duncan C. White" + "id" : "Duncan C. White" }, { "name" : "E. Choroba", - "id" : "E. Choroba", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "E. Choroba" }, { - "id" : "Feng Chang", "name" : "Feng Chang", + "id" : "Feng Chang", "data" : [ [ "Raku", @@ -344,6 +143,8 @@ ] }, { + "name" : "Flavio Poletti", + "id" : "Flavio Poletti", "data" : [ [ "Perl", @@ -357,23 +158,20 @@ "Blog", 2 ] - ], - "id" : "Flavio Poletti", - "name" : "Flavio Poletti" + ] }, { - "id" : "izem", "name" : "izem", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "izem" }, { "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", "data" : [ [ "Perl", @@ -387,11 +185,10 @@ "Blog", 1 ] - ] + ], + "name" : "Jaldhar H. Vyas" }, { - "name" : "James Smith", - "id" : "James Smith", "data" : [ [ "Perl", @@ -401,50 +198,51 @@ "Blog", 1 ] - ] + ], + "id" : "James Smith", + "name" : "James Smith" }, { "id" : "Jan Krnavek", - "name" : "Jan Krnavek", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Jan Krnavek" }, { + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey", "data" : [ [ "Perl", 2 ] - ], - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey" + ] }, { + "id" : "Julien Fiegehenn", "data" : [ [ "Perl", 2 ] ], - "name" : "Julien Fiegehenn", - "id" : "Julien Fiegehenn" + "name" : "Julien Fiegehenn" }, { - "id" : "Kjetil Skotheim", "name" : "Kjetil Skotheim", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Kjetil Skotheim" }, { - "name" : "Kueppo Wesley", "id" : "Kueppo Wesley", "data" : [ [ @@ -455,11 +253,10 @@ "Raku", 2 ] - ] + ], + "name" : "Kueppo Wesley" }, { - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -473,7 +270,9 @@ "Blog", 1 ] - ] + ], + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" }, { "data" : [ @@ -496,12 +295,12 @@ 6 ] ], - "name" : "Luca Ferrari", - "id" : "Luca Ferrari" + "id" : "Luca Ferrari", + "name" : "Luca Ferrari" }, { - "id" : "Mark Anderson", "name" : "Mark Anderson", + "id" : "Mark Anderson", "data" : [ [ "Raku", @@ -516,20 +315,22 @@ 2 ] ], - "name" : "Marton Polgar", - "id" : "Marton Polgar" + "id" : "Marton Polgar", + "name" : "Marton Polgar" }, { - "name" : "Matthew Neleigh", "id" : "Matthew Neleigh", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Matthew Neleigh" }, { + "name" : "Mohammad S Anwar", + "id" : "Mohammad S Anwar", "data" : [ [ "Perl", @@ -539,21 +340,20 @@ "Raku", 1 ] - ], - "id" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar" + ] }, { - "id" : "Niels van Dijke", - "name" : "Niels van Dijke", "data" : [ [ "Perl", 1 ] - ] + ], + "id" : "Niels van Dijke", + "name" : "Niels van Dijke" }, { + "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -564,12 +364,9 @@ 1 ] ], - "name" : "Peter Campbell Smith", "id" : "Peter Campbell Smith" }, { - "id" : "Robert DiCicco", - "name" : "Robert DiCicco", "data" : [ [ "Perl", @@ -579,7 +376,9 @@ "Raku", 2 ] - ] + ], + "id" : "Robert DiCicco", + "name" : "Robert DiCicco" }, { "data" : [ @@ -588,10 +387,11 @@ 2 ] ], - "name" : "Robert Ransbottom", - "id" : "Robert Ransbottom" + "id" : "Robert Ransbottom", + "name" : "Robert Ransbottom" }, { + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -606,20 +406,20 @@ 1 ] ], - "name" : "Roger Bell_West", "id" : "Roger Bell_West" }, { "id" : "Solathian", - "name" : "Solathian", "data" : [ [ "Perl", 1 ] - ] + ], + "name" : "Solathian" }, { + "id" : "Stephen G. Lynn", "data" : [ [ "Perl", @@ -634,22 +434,20 @@ 1 ] ], - "name" : "Stephen G. Lynn", - "id" : "Stephen G. Lynn" + "name" : "Stephen G. Lynn" }, { - "id" : "Tim Potapov", - "name" : "Tim Potapov", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Tim Potapov", + "name" : "Tim Potapov" }, { "id" : "Ulrich Rieke", - "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -659,9 +457,11 @@ "Raku", 2 ] - ] + ], + "name" : "Ulrich Rieke" }, { + "name" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -672,9 +472,224 @@ 1 ] ], - "name" : "W. Luis Mochan", "id" : "W. Luis Mochan" } ] - } + }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>", + "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>" + }, + "legend" : { + "enabled" : 0 + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "xAxis" : { + "type" : "category" + }, + "chart" : { + "type" : "column" + }, + "series" : [ + { + "data" : [ + { + "name" : "Adam Russell", + "y" : 4, + "drilldown" : "Adam Russell" + }, + { + "drilldown" : "Arne Sommer", + "y" : 5, + "name" : "Arne Sommer" + }, + { + "drilldown" : "Athanasius", + "name" : "Athanasius", + "y" : 4 + }, + { + "name" : "Cheok-Yin Fung", + "y" : 3, + "drilldown" : "Cheok-Yin Fung" + }, + { + "name" : "Colin Crain", + "y" : 2, + "drilldown" : "Colin Crain" + }, + { + "drilldown" : "Dario Mazzeo", + "name" : "Dario Mazzeo", + "y" : 1 + }, + { + "drilldown" : "Dave Cross", + "name" : "Dave Cross", + "y" : 2 + }, + { + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby", + "y" : 2 + }, + { + "drilldown" : "Duncan C. White", + "y" : 1, + "name" : "Duncan C. White" + }, + { + "y" : 2, + "name" : "E. Choroba", + "drilldown" : "E. Choroba" + }, + { + "name" : "Feng Chang", + "y" : 2, + "drilldown" : "Feng Chang" + }, + { + "drilldown" : "Flavio Poletti", + "name" : "Flavio Poletti", + "y" : 6 + }, + { + "drilldown" : "izem", + "name" : "izem", + "y" : 2 + }, + { + "y" : 5, + "name" : "Jaldhar H. Vyas", + "drilldown" : "Jaldhar H. Vyas" + }, + { + "y" : 3, + "name" : "James Smith", + "drilldown" : "James Smith" + }, + { + "drilldown" : "Jan Krnavek", + "y" : 2, + "name" : "Jan Krnavek" + }, + { + "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey", + "y" : 2 + }, + { + "name" : "Julien Fiegehenn", + "y" : 2, + "drilldown" : "Julien Fiegehenn" + }, + { + "name" : "Kjetil Skotheim", + "y" : 2, + "drilldown" : "Kjetil Skotheim" + }, + { + "drilldown" : "Kueppo Wesley", + "name" : "Kueppo Wesley", + "y" : 4 + }, + { + "name" : "Laurent Rosenfeld", + "y" : 5, + "drilldown" : "Laurent Rosenfeld" + }, + { + "name" : "Lubos Kolouch", + "y" : 2, + "drilldown" : "Lubos Kolouch" + }, + { + "name" : "Luca Ferrari", + "y" : 8, + "drilldown" : "Luca Ferrari" + }, + { + "y" : 2, + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson" + }, + { + "drilldown" : "Marton Polgar", + "name" : "Marton Polgar", + "y" : 2 + }, + { + "drilldown" : "Matthew Neleigh", + "name" : "Matthew Neleigh", + "y" : 2 + }, + { + "name" : "Mohammad S Anwar", + "y" : 2, + "drilldown" : "Mohammad S Anwar" + }, + { + "name" : "Niels van Dijke", + "y" : 1, + "drilldown" : "Niels van Dijke" + }, + { + "name" : "Peter Campbell Smith", + "y" : 3, + "drilldown" : "Peter Campbell Smith" + }, + { + "y" : 4, + "name" : "Robert DiCicco", + "drilldown" : "Robert DiCicco" + }, + { + "drilldown" : "Robert Ransbottom", + "y" : 2, + "name" : "Robert Ransbottom" + }, + { + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West", + "y" : 4 + }, + { + "y" : 1, + "name" : "Solathian", + "drilldown" : "Solathian" + }, + { + "y" : 5, + "name" : "Stephen G. Lynn", + "drilldown" : "Stephen G. Lynn" + }, + { + "drilldown" : "Tim Potapov", + "y" : 2, + "name" : "Tim Potapov" + }, + { + "name" : "Ulrich Rieke", + "y" : 3, + "drilldown" : "Ulrich Rieke" + }, + { + "name" : "W. Luis Mochan", + "y" : 3, + "drilldown" : "W. Luis Mochan" + } + ], + "name" : "The Weekly Challenge - 186", + "colorByPoint" : 1 + } + ] } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 575579371b..4424cb1735 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,49 +1,37 @@ { - "subtitle" : { - "text" : "Last updated at 2022-10-16 21:44:58 GMT" - }, "yAxis" : { + "min" : 0, "title" : { "text" : null - }, - "min" : 0 - }, - "xAxis" : { - "type" : "category", |
