diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2024-04-21 20:51:04 +0100 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2024-04-21 20:51:04 +0100 |
| commit | 1d5258f33f99640d0c7e96cd8ac139ebe5315bfe (patch) | |
| tree | 78f436bdc1dcc75d7e9477e8dd9fdd34c875e29c | |
| parent | 38d787e09c4617459640bd62436f20c9cccdc35e (diff) | |
| download | perlweeklychallenge-club-1d5258f33f99640d0c7e96cd8ac139ebe5315bfe.tar.gz perlweeklychallenge-club-1d5258f33f99640d0c7e96cd8ac139ebe5315bfe.tar.bz2 perlweeklychallenge-club-1d5258f33f99640d0c7e96cd8ac139ebe5315bfe.zip | |
- Added solutions by Wanderdoc.
- Added solutions by Matthew Neleigh.
- Added solutions by BarrOff.
| -rwxr-xr-x | challenge-265/wanderdoc/perl/ch-1.pl | 66 | ||||
| -rwxr-xr-x | challenge-265/wanderdoc/perl/ch-2.pl | 104 | ||||
| -rw-r--r-- | stats/pwc-current.json | 529 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 58 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 1862 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 720 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 36 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 28 | ||||
| -rw-r--r-- | stats/pwc-summary-151-180.json | 46 | ||||
| -rw-r--r-- | stats/pwc-summary-181-210.json | 110 | ||||
| -rw-r--r-- | stats/pwc-summary-211-240.json | 108 | ||||
| -rw-r--r-- | stats/pwc-summary-241-270.json | 108 | ||||
| -rw-r--r-- | stats/pwc-summary-271-300.json | 36 | ||||
| -rw-r--r-- | stats/pwc-summary-301-330.json | 68 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 34 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 54 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 28 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 664 |
18 files changed, 2437 insertions, 2222 deletions
diff --git a/challenge-265/wanderdoc/perl/ch-1.pl b/challenge-265/wanderdoc/perl/ch-1.pl new file mode 100755 index 0000000000..8122df3ccf --- /dev/null +++ b/challenge-265/wanderdoc/perl/ch-1.pl @@ -0,0 +1,66 @@ +#!perl
+use strict;
+use warnings FATAL => qw(all);
+
+=prompt
+You are given an array of integers, @ints.
+
+Write a script to find an integer in the given array that appeared 33% or more. If more than one found, return the smallest. If none found then return undef.
+Example 1
+
+Input: @ints = (1,2,3,3,3,3,4,2)
+Output: 3
+
+1 appeared 1 times.
+2 appeared 2 times.
+3 appeared 4 times.
+
+3 appeared 50% (>33%) in the given array.
+
+Example 2
+
+Input: @ints = (1,1)
+Output: 1
+
+1 appeared 2 times.
+
+1 appeared 100% (>33%) in the given array.
+
+Example 3
+
+Input: @ints = (1,2,3)
+Output: 1
+
+1 appeared 1 times.
+2 appeared 1 times.
+3 appeared 1 times.
+
+Since all three appeared 33.3% (>33%) in the given array.
+We pick the smallest of all.
+=cut
+
+
+use Test2::V0;
+use List::Util qw(sum);
+
+
+
+
+
+is(appearance_33(1,2,3,3,3,3,4,2), 3, 'Example 1');
+is(appearance_33(1,1), 1, 'Example 2');
+is(appearance_33(1,2,3), 1, 'Example 3');
+done_testing();
+
+sub appearance_33
+{
+ my @arr = @_;
+ my %hash;
+ do { $hash{$_}++ } for @arr;
+ my $sum = sum(values %hash);
+ my @output =
+ sort { $a cmp $b }
+ grep { $hash{$_} > 33 * $sum / 100 } keys %hash;
+
+ return $output[0];
+}
\ No newline at end of file diff --git a/challenge-265/wanderdoc/perl/ch-2.pl b/challenge-265/wanderdoc/perl/ch-2.pl new file mode 100755 index 0000000000..c5b183773d --- /dev/null +++ b/challenge-265/wanderdoc/perl/ch-2.pl @@ -0,0 +1,104 @@ +#!perl
+use strict;
+use warnings FATAL => qw(all);
+
+=prompt
+You are given a string, $str containing alphnumeric characters and array of strings (alphabetic characters only), @str.
+
+Write a script to find the shortest completing word. If none found return empty string.
+
+ A completing word is a word that contains all the letters in the given string, ignoring space and number. If a letter appeared more than once in the given string then it must appear the same number or more in the word.
+
+Example 1
+
+Input: $str = 'aBc 11c'
+ @str = ('accbbb', 'abc', 'abbc')
+Output: 'accbbb'
+
+The given string contains following, ignoring case and number:
+a 1 times
+b 1 times
+c 2 times
+
+The only string in the given array that satisfies the condition is 'accbbb'.
+
+Example 2
+
+Input: $str = 'Da2 abc'
+ @str = ('abcm', 'baacd', 'abaadc')
+Output: 'baacd'
+
+The given string contains following, ignoring case and number:
+a 2 times
+b 1 times
+c 1 times
+d 1 times
+
+The are 2 strings in the given array that satisfies the condition:
+'baacd' and 'abaadc'.
+
+Shortest of the two is 'baacd'
+
+Example 3
+
+Input: $str = 'JB 007'
+ @str = ('jj', 'bb', 'bjb')
+Output: 'bjb'
+
+The given string contains following, ignoring case and number:
+j 1 times
+b 1 times
+
+The only string in the given array that satisfies the condition is 'bjb'.
+=cut
+
+# use Data::Dump;
+use Test2::V0;
+
+
+is(completing_word('aBc 11c', ['accbbb', 'abc', 'abbc']), 'accbbb', 'Example 1');
+is(completing_word('Da2 abc', ['abcm', 'baacd', 'abaadc']), 'baacd', 'Example 2');
+is(completing_word('JB 007', ['jj', 'bb', 'bjb']), 'bjb', 'Example 3');
+is(completing_word('PWC 2024', ['pp', 'ww', 'cc']), '', 'Example Empty');
+done_testing();
+
+
+
+
+
+sub completing_word
+{
+ my ($str, $aref) = @_;
+ $str =~ tr/01234567890 //ds;
+ my %str_hash = word_hash($str);
+ my @output;
+ ELM: for my $elm ( @$aref )
+ {
+ my %elm_hash = word_hash($elm);
+ for my $key ( keys %str_hash )
+ {
+ next ELM if (not exists $elm_hash{$key});
+ next ELM if ($elm_hash{$key} < $str_hash{$key});
+ }
+ push @output, $elm;
+ }
+
+ if ( scalar @output == 0) { return ''; }
+ else
+ {
+ @output = sort { length($a) <=> length($b) } @output;
+ return $output[0];
+ }
+}
+
+
+sub word_hash
+{
+ my $wrd = $_[0];
+ my %hash;
+ for my $chr ( split(//,$wrd ) )
+ {
+ $hash{ lc $chr }++;
+ }
+ return %hash;
+}
\ No newline at end of file diff --git a/stats/pwc-current.json b/stats/pwc-current.json index b22b274fd7..df6623459f 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,13 +1,210 @@ { - "xAxis" : { - "type" : "category" + "subtitle" : { + "text" : "[Champions: 33] Last updated at 2024-04-21 19:47:11 GMT" }, "legend" : { "enabled" : 0 }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "y" : 5, + "name" : "Ali Moradi", + "drilldown" : "Ali Moradi" + }, + { + "drilldown" : "Andrew Shitov", + "name" : "Andrew Shitov", + "y" : 1 + }, + { + "y" : 3, + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer" + }, + { + "name" : "Athanasius", + "drilldown" : "Athanasius", + "y" : 4 + }, + { + "y" : 1, + "name" : "BarrOff", + "drilldown" : "BarrOff" + }, + { + "drilldown" : "Bruce Gray", + "name" : "Bruce Gray", + "y" : 2 + }, + { + "y" : 3, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "y" : 2, + "drilldown" : "David Ferrone", + "name" : "David Ferrone" + }, + { + "y" : 2, + "name" : "E. Choroba", + "drilldown" : "E. Choroba" + }, + { + "y" : 2, + "name" : "Feng Chang", + "drilldown" : "Feng Chang" + }, + { + "drilldown" : "James Smith", + "name" : "James Smith", + "y" : 3 + }, + { + "name" : "Jan Krnavek", + "drilldown" : "Jan Krnavek", + "y" : 2 + }, + { + "y" : 3, + "name" : "Jorg Sommrey", + "drilldown" : "Jorg Sommrey" + }, + { + "y" : 2, + "drilldown" : "Kjetil Skotheim", + "name" : "Kjetil Skotheim" + }, + { + "y" : 6, + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Lubos Kolouch", + "drilldown" : "Lubos Kolouch", + "y" : 2 + }, + { + "y" : 11, + "drilldown" : "Luca Ferrari", + "name" : "Luca Ferrari" + }, + { + "name" : "Mariano Spadaccini", + "drilldown" : "Mariano Spadaccini", + "y" : 2 + }, + { + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson", + "y" : 2 + }, + { + "y" : 2, + "name" : "Matthew Neleigh", + "drilldown" : "Matthew Neleigh" + }, + { + "y" : 2, + "name" : "Nelo Tovar", + "drilldown" : "Nelo Tovar" + }, + { + "drilldown" : "Niels van Dijke", + "name" : "Niels van Dijke", + "y" : 2 + }, + { + "name" : "Packy Anderson", + "drilldown" : "Packy Anderson", + "y" : 5 + }, + { + "y" : 3, + "drilldown" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith" + }, + { + "name" : "Peter Meszaros", + "drilldown" : "Peter Meszaros", + "y" : 2 + }, + { + "drilldown" : "Reinier Maliepaard", + "name" : "Reinier Maliepaard", + "y" : 3 + }, + { + "y" : 3, + "name" : "Robbie Hatley", + "drilldown" : "Robbie Hatley" + }, + { + "y" : 5, + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "name" : "Simon Green", + "drilldown" : "Simon Green", + "y" : 3 + }, + { + "y" : 4, + "name" : "Thomas Kohler", + "drilldown" : "Thomas Kohler" + }, + { + "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke", + "y" : 4 + }, + { + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", + "y" : 3 + }, + { + "name" : "Wanderdoc", + "drilldown" : "Wanderdoc", + "y" : 2 + } + ], + "name" : "The Weekly Challenge - 265" + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "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/>" + }, "drilldown" : { "series" : [ { + "id" : "Ali Moradi", + "name" : "Ali Moradi", "data" : [ [ "Perl", @@ -21,9 +218,7 @@ "Blog", 1 ] - ], - "name" : "Ali Moradi", - "id" : "Ali Moradi" + ] }, { "id" : "Andrew Shitov", @@ -36,8 +231,6 @@ ] }, { - "id" : "Arne Sommer", - "name" : "Arne Sommer", "data" : [ [ "Raku", @@ -47,11 +240,13 @@ "Blog", 1 ] - ] + ], + "name" : "Arne Sommer", + "id" : "Arne Sommer" }, { - "id" : "Athanasius", "name" : "Athanasius", + "id" : "Athanasius", "data" : [ [ "Perl", @@ -67,14 +262,23 @@ "data" : [ [ "Raku", + 1 + ] + ], + "id" : "BarrOff", + "name" : "BarrOff" + }, + { + "data" : [ + [ + "Raku", 2 ] ], - "name" : "Bruce Gray", - "id" : "Bruce Gray" + "id" : "Bruce Gray", + "name" : "Bruce Gray" }, { - "name" : "Dave Jacoby", "data" : [ [ "Perl", @@ -85,39 +289,42 @@ 1 ] ], - "id" : "Dave Jacoby" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { + "name" : "David Ferrone", + "id" : "David Ferrone", "data" : [ [ "Perl", 2 ] - ], - "name" : "David Ferrone", - "id" : "David Ferrone" + ] }, { - "name" : "E. Choroba", "data" : [ [ "Perl", 2 ] ], + "name" : "E. Choroba", "id" : "E. Choroba" }, { - "name" : "Feng Chang", "data" : [ [ "Raku", 2 ] ], - "id" : "Feng Chang" + "id" : "Feng Chang", + "name" : "Feng Chang" }, { + "name" : "James Smith", + "id" : "James Smith", "data" : [ [ "Perl", @@ -127,21 +334,21 @@ "Blog", 1 ] - ], - "name" : "James Smith", - "id" : "James Smith" + ] }, { + "id" : "Jan Krnavek", + "name" : "Jan Krnavek", "data" : [ [ "Raku", 2 ] - ], - "name" : "Jan Krnavek", - "id" : "Jan Krnavek" + ] }, { + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey", "data" : [ [ "Perl", @@ -151,9 +358,7 @@ "Blog", 1 ] - ], - "name" : "Jorg Sommrey", - "id" : "Jorg Sommrey" + ] }, { "data" : [ @@ -166,7 +371,6 @@ "id" : "Kjetil Skotheim" }, { - "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -181,19 +385,22 @@ 2 ] ], + "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld" }, { - "id" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] ], - "name" : "Lubos Kolouch" + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch" }, { + "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -203,33 +410,31 @@ "Blog", 9 ] - ], - "name" : "Luca Ferrari", - "id" : "Luca Ferrari" + ] }, { - "id" : "Mariano Spadaccini", "data" : [ [ "Perl", 2 ] ], - "name" : "Mariano Spadaccini" + "name" : "Mariano Spadaccini", + "id" : "Mariano Spadaccini" }, { + "id" : "Mark Anderson", "name" : "Mark Anderson", "data" : [ [ "Raku", 2 ] - ], - "id" : "Mark Anderson" + ] }, { - "id" : "Nelo Tovar", - "name" : "Nelo Tovar", + "id" : "Matthew Neleigh", + "name" : "Matthew Neleigh", "data" : [ [ "Perl", @@ -238,14 +443,24 @@ ] }, { - "name" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] ], - "id" : "Niels van Dijke" + "name" : "Nelo Tovar", + "id" : "Nelo Tovar" + }, + { + "id" : "Niels van Dijke", + "name" : "Niels van Dijke", + "data" : [ + [ + "Perl", + 2 + ] + ] }, { "data" : [ @@ -266,7 +481,6 @@ "id" : "Packy Anderson" }, { - "id" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -277,20 +491,20 @@ 1 ] ], + "id" : "Peter Campbell Smith", "name" : "Peter Campbell Smith" }, { - "id" : "Peter Meszaros", "data" : [ [ "Perl", 2 ] ], - "name" : "Peter Meszaros" + "name" : "Peter Meszaros", + "id" : "Peter Meszaros" }, { - "name" : "Reinier Maliepaard", "data" : [ [ "Perl", @@ -301,10 +515,10 @@ 1 ] ], - "id" : "Reinier Maliepaard" + "id" : "Reinier Maliepaard", + "name" : "Reinier Maliepaard" }, { - "id" : "Robbie Hatley", "data" : [ [ "Perl", @@ -315,10 +529,12 @@ 1 ] ], - "name" : "Robbie Hatley" + "name" : "Robbie Hatley", + "id" : "Robbie Hatley" }, { "name" : "Roger Bell_West", + "id" : "Roger Bell_West", "data" : [ [ "Perl", @@ -332,12 +548,9 @@ "Blog", 1 ] - ], - "id" : "Roger Bell_West" + ] }, { - "id" : "Simon Green", - "name" : "Simon Green", "data" : [ [ "Perl", @@ -347,11 +560,11 @@ "Blog", 1 ] - ] + ], + "id" : "Simon Green", + "name" : "Simon Green" }, { - "id" : "Thomas Kohler", - "name" : "Thomas Kohler", "data" : [ [ "Perl", @@ -361,11 +574,11 @@ "Blog", 2 ] - ] + ], + "name" : "Thomas Kohler", + "id" : "Thomas Kohler" }, { - "id" : "Ulrich Rieke", - "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -375,9 +588,13 @@ "Raku", 2 ] - ] + ], + "name" : "Ulrich Rieke", + "id" : "Ulrich Rieke" }, { + "id" : "W. Luis Mochan", + "name" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -387,195 +604,23 @@ "Blog", 1 ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ] ], - "name" : "W. Luis Mochan", - "id" : "W. Luis Mochan" + "name" : "Wanderdoc", + "id" : "Wanderdoc" } ] }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "title" : { "text" : "The Weekly Challenge - 265" }, - "series" : [ - { - "name" : "The Weekly Challenge - 265", - "colorByPoint" : 1, - "data" : [ - { - "y" : 5, - "name" : "Ali Moradi", - "drilldown" : "Ali Moradi" - }, - { - "name" : "Andrew Shitov", - "y" : 1, - "drilldown" : "Andrew Shitov" - }, - { - "drilldown" : "Arne Sommer", - "y" : 3, - "name" : "Arne Sommer" - }, - { - "drilldown" : "Athanasius", - "name" : "Athanasius", - "y" : 4 - }, - { - "drilldown" : "Bruce Gray", - "y" : 2, - "name" : "Bruce Gray" - }, - { - "drilldown" : "Dave Jacoby", - "y" : 3, - "name" : "Dave Jacoby" - }, - { - "y" : 2, - "name" : "David Ferrone", - "drilldown" : "David Ferrone" - }, - { - "y" : 2, - "name" : "E. Choroba", - "drilldown" : "E. Choroba" - }, - { - "y" : 2, - "name" : "Feng Chang", - "drilldown" : "Feng Chang" - }, - { - "drilldown" : "James Smith", - "y" : 3, - "name" : "James Smith" - }, - { - "drilldown" : "Jan Krnavek", - "y" : 2, - "name" : "Jan Krnavek" - }, - { - "name" : "Jorg Sommrey", - "y" : 3, - "drilldown" : "Jorg Sommrey" - }, - { - "drilldown" : "Kjetil Skotheim", - "y" : 2, - "name" : "Kjetil Skotheim" - }, - { - "y" : 6, - "name" : "Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld" - }, - { - "name" : "Lubos Kolouch", - "y" : 2, - "drilldown" : "Lubos Kolouch" - }, - { - "drilldown" : "Luca Ferrari", - "name" : "Luca Ferrari", - "y" : 11 - }, - { - "drilldown" : "Mariano Spadaccini", - "name" : "Mariano Spadaccini", - "y" : 2 - }, - { - "drilldown" : "Mark Anderson", - "name" : "Mark Anderson", - "y" : 2 - }, - { - "drilldown" : "Nelo Tovar", - "name" : "Nelo Tovar", - "y" : 2 - }, - { - "name" : "Niels van Dijke", - "y" : 2, - "drilldown" : "Niels van Dijke" - }, - { - "y" : 5, - "name" : "Packy Anderson", - "drilldown" : "Packy Anderson" - }, - { - "drilldown" : "Peter Campbell Smith", - "y" : 3, - "name" : "Peter Campbell Smith" - }, - { - "drilldown" : "Peter Meszaros", - "name" : "Peter Meszaros", - "y" : 2 - }, - { - "name" : "Reinier Maliepaard", - "y" : 3, - "drilldown" : "Reinier Maliepaard" - }, - { - "y" : 3, - "name" : "Robbie Hatley", - "drilldown" : "Robbie Hatley" - }, - { - "drilldown" : "Roger Bell_West", - "name" : "Roger Bell_West", - "y" : 5 - }, - { - "name" : "Simon Green", - "y" : 3, - "drilldown" : "Simon Green" - }, - { - "y" : 4, - "name" : "Thomas Kohler", - "drilldown" : "Thomas Kohler" - }, - { - "name" : "Ulrich Rieke", - "y" : 4, - "drilldown" : "Ulrich Rieke" - }, - { - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan", - "y" : 3 - } - ] - } - ], - "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/>" - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2024-04-21 18:48:00 GMT" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, "chart" : { "type" : "column" } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 0c20863ec1..b77e49dbc3 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,15 +1,24 @@ { - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "Last updated at 2024-04-21 18:47:59 GMT" - }, "tooltip" : { "pointFormat" : "<b>{point.y:.0f}</b>" }, + "subtitle" : { + "text" : "Last updated at 2024-04-21 19:47:11 GMT" + }, "series" : [ { + "dataLabels" : { + "rotation" : -90, + "format" : "{point.y:.0f}", + "enabled" : "true", + "align" : "right", + "color" : "#FFFFFF", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "y" : 10 + }, "data" : [ [ "Blog", @@ -17,47 +26,38 @@ ], [ "Perl", - 13738 + 13742 ], [ "Raku", - 7974 + 7975 ] ], - "dataLabels" : { - "color" : "#FFFFFF", - "rotation" : -90, - "format" : "{point.y:.0f}", - "align" : "right", - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "enabled" : "true", - "y" : 10 - }, "name" : "Contributions" } ], - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2024]" + "legend" : { + "enabled" : "false" }, "yAxis" : { + "min" : 0, "title" : { "text" : null - }, - "min" : 0 - }, - "legend" : { - "enabled" : "false" + } }, "xAxis" : { "labels" : { "style" : { - |
