From bf92bc382792fac6f958e3854bc2806d67d8d258 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Thu, 25 Jul 2019 12:22:47 +0100 Subject: - Added solutions by Laurent Rosenfeld. --- challenge-018/laurent-rosenfeld/blog.txt | 1 + challenge-018/laurent-rosenfeld/perl5/ch-1.pl | 49 +++ challenge-018/laurent-rosenfeld/perl5/ch-1a.pl | 24 ++ challenge-018/laurent-rosenfeld/perl5/ch-2.pl | 43 +++ challenge-018/laurent-rosenfeld/perl6/ch-1.p6 | 25 ++ stats/pwc-current.json | 149 ++++---- stats/pwc-language-breakdown-summary.json | 76 ++-- stats/pwc-language-breakdown.json | 168 ++++----- stats/pwc-leaders.json | 476 ++++++++++++------------- stats/pwc-summary-1-30.json | 20 +- stats/pwc-summary-31-60.json | 110 +++--- stats/pwc-summary-61-90.json | 50 +-- stats/pwc-summary-91-120.json | 30 +- stats/pwc-summary.json | 50 +-- 14 files changed, 718 insertions(+), 553 deletions(-) create mode 100644 challenge-018/laurent-rosenfeld/blog.txt create mode 100644 challenge-018/laurent-rosenfeld/perl5/ch-1.pl create mode 100644 challenge-018/laurent-rosenfeld/perl5/ch-1a.pl create mode 100644 challenge-018/laurent-rosenfeld/perl5/ch-2.pl create mode 100644 challenge-018/laurent-rosenfeld/perl6/ch-1.p6 diff --git a/challenge-018/laurent-rosenfeld/blog.txt b/challenge-018/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..297c793b9e --- /dev/null +++ b/challenge-018/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +http://blogs.perl.org/users/laurent_r/2019/07/perl-weekly-challenge-18-longest-common-substrings-priority-queues-and-a-functional-object-system.html diff --git a/challenge-018/laurent-rosenfeld/perl5/ch-1.pl b/challenge-018/laurent-rosenfeld/perl5/ch-1.pl new file mode 100644 index 0000000000..51d3313938 --- /dev/null +++ b/challenge-018/laurent-rosenfeld/perl5/ch-1.pl @@ -0,0 +1,49 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + +sub compare2str { + my ($str1, $str2) = @_; + my @st1 = split //, $str1; + my @st2 = split //, $str2; + my %result; + my $common = ''; + my ($i, $j) = (0, 0); + while ($i <= $#st1) { + while ($j <= $#st2) { + if ($st1[$i] eq $st2[$j]) { + $common .= $st1[$i]; + $result{$common} = 1; + my ($k, $l) = ($i, $j); + while (1) { + $k++; $l++; + if ($k <= $#st1 and $l<= $#st2 + and $st1[$k] eq $st2[$l]) { + $common .= $st1[$k]; + $result{$common} = 1;; + } else { + $common = ''; + last; + } + } + } + $j++; + } + $j = 0; + $i++; + } + return keys %result; +} + +die "Must supply at least two strings\n" unless @ARGV >= 2; +my %common = map { $_ => 1 } compare2str shift, $ARGV[0]; +while (@ARGV > 1) { + %common = map { $_ => 1 } grep $common{$_}, + compare2str shift, $ARGV[0]; +} +my $max = ""; +for (keys %common) { + $max = $_ if length $_ > length $max; +} +say "Largest common substring: $max"; diff --git a/challenge-018/laurent-rosenfeld/perl5/ch-1a.pl b/challenge-018/laurent-rosenfeld/perl5/ch-1a.pl new file mode 100644 index 0000000000..25d691c8aa --- /dev/null +++ b/challenge-018/laurent-rosenfeld/perl5/ch-1a.pl @@ -0,0 +1,24 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + +sub substrings { + my @chars = split //, shift; + my %substr; # using a hash to remove duplicates + for my $i (0..$#chars) { + for my $j ($i..$#chars) { + $substr{ join '', @chars[$i..$j] } = 1; + } + } + return keys %substr; +} +my %result = map { $_ => 1} substrings shift; +for my $word (@ARGV) { + %result = map {$_ => 1} grep $result{$_}, substrings $word; +} +my $max = 0; +for (keys %result) { + $max = $_ if length $_ > length $max; +} +say "Largest common substring: $max"; diff --git a/challenge-018/laurent-rosenfeld/perl5/ch-2.pl b/challenge-018/laurent-rosenfeld/perl5/ch-2.pl new file mode 100644 index 0000000000..e053afca80 --- /dev/null +++ b/challenge-018/laurent-rosenfeld/perl5/ch-2.pl @@ -0,0 +1,43 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + + +sub new_queue { + my @queue; # an AoA + my $is_empty = sub { + for my $item (@queue) { + next unless defined $item; + return 0 if @$item > 0; + } + return 1; + }; + my $insert_with_prio = sub { + my ($item, $prio) = @_; + push @{$queue[$prio]}, $item; + }; + my $pull_highest_prio = sub { + for my $item (reverse @queue) { + next unless defined $item; + return shift @$item if @$item > 0; + } + }; + return $is_empty, $insert_with_prio, $pull_highest_prio; +} + +my ($is_empty, $insert, $pull_prio) = new_queue; +for my $num (1..20) { # inserting 20 items into the queue + $insert->($num, + $num % 10 == 0 ? 10 : + $num % 5 == 0 ? 5 : + $num % 3 == 0 ? 3 : + $num % 2 == 0 ? 2 : + 1); +} +for my $num (1..20) { + say $pull_prio->(); +} +say "Empty queue" if $is_empty->(); + + diff --git a/challenge-018/laurent-rosenfeld/perl6/ch-1.p6 b/challenge-018/laurent-rosenfeld/perl6/ch-1.p6 new file mode 100644 index 0000000000..e9de2d89c9 --- /dev/null +++ b/challenge-018/laurent-rosenfeld/perl6/ch-1.p6 @@ -0,0 +1,25 @@ +use v6; +use Test; + +sub substrings (Str $in) { + my @result = $in.comb; + append @result, map { .join('') }, $in.comb.rotor: $_ => 1-$_ for 2..$in.chars; + return set @result; +} +sub largest-substring (@words) { + my Set $intersection = substrings shift @words; + while (my $word = shift @words) { + $intersection ∩= substrings $word; + } + return $intersection.keys.max({.chars}); +} +multi MAIN (*@words where *.elems > 1) { + say largest-substring @words; +} +multi MAIN () { + plan 2; + my @words = ; + cmp-ok largest-substring(@words), 'eq', 'ABC', "Testing 3 strings"; + @words = 'abcde' xx 5; + cmp-ok largest-substring(@words), 'eq', 'abcde', "Testing identical strings"; +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 1720ef6441..6b3147e32e 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,84 +1,63 @@ { - "subtitle" : { - "text" : "[Champions: 6] Last updated at 2019-07-24 16:36:36 GMT" + "title" : { + "text" : "Perl Weekly Challenge - 018" }, - "series" : [ - { - "data" : [ - { - "y" : 2, - "drilldown" : "Duane Powell", - "name" : "Duane Powell" - }, - { - "drilldown" : "Ozzy", - "y" : 1, - "name" : "Ozzy" - }, - { - "y" : 2, - "drilldown" : "Roger Bell West", - "name" : "Roger Bell West" - }, - { - "name" : "Ruben Westerberg", - "drilldown" : "Ruben Westerberg", - "y" : 4 - }, - { - "y" : 2, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "y" : 1, - "drilldown" : "Steven Wilson", - "name" : "Steven Wilson" - } - ], - "name" : "Perl Weekly Challenge - 018", - "colorByPoint" : 1 - } - ], - "tooltip" : { - "followPointer" : 1, - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
" + "chart" : { + "type" : "column" }, "drilldown" : { "series" : [ { + "id" : "Duane Powell", + "name" : "Duane Powell", "data" : [ [ "Perl 5", 2 ] - ], - "name" : "Duane Powell", - "id" : "Duane Powell" + ] + }, + { + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl 5", + 2 + ], + [ + "Perl 6", + 1 + ], + [ + "Blog", + 1 + ] + ] }, { "name" : "Ozzy", + "id" : "Ozzy", "data" : [ [ "Perl 6", 1 ] - ], - "id" : "Ozzy" + ] }, { - "id" : "Roger Bell West", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Roger Bell West", "name" : "Roger Bell West" }, { "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -88,8 +67,7 @@ "Perl 6", 2 ] - ], - "id" : "Ruben Westerberg" + ] }, { "data" : [ @@ -98,21 +76,67 @@ 2 ] ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + "id" : "Simon Proctor", + "name" : "Simon Proctor" }, { - "name" : "Steven Wilson", "data" : [ [ "Perl 5", 1 ] ], - "id" : "Steven Wilson" + "id" : "Steven Wilson", + "name" : "Steven Wilson" } ] }, + "xAxis" : { + "type" : "category" + }, + "series" : [ + { + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 018", + "data" : [ + { + "name" : "Duane Powell", + "drilldown" : "Duane Powell", + "y" : 2 + }, + { + "y" : 4, + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Ozzy", + "drilldown" : "Ozzy", + "y" : 1 + }, + { + "y" : 2, + "drilldown" : "Roger Bell West", + "name" : "Roger Bell West" + }, + { + "y" : 4, + "name" : "Ruben Westerberg", + "drilldown" : "Ruben Westerberg" + }, + { + "y" : 2, + "name" : "Simon Proctor", + "drilldown" : "Simon Proctor" + }, + { + "name" : "Steven Wilson", + "drilldown" : "Steven Wilson", + "y" : 1 + } + ] + } + ], "plotOptions" : { "series" : { "dataLabels" : { @@ -122,21 +146,20 @@ "borderWidth" : 0 } }, - "xAxis" : { - "type" : "category" + "subtitle" : { + "text" : "[Champions: 7] Last updated at 2019-07-25 11:22:24 GMT" }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "title" : { - "text" : "Perl Weekly Challenge - 018" + "tooltip" : { + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1 }, "legend" : { "enabled" : 0 - }, - "chart" : { - "type" : "column" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 6fb5b70882..4b890613ec 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,63 +1,63 @@ { - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - } + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" }, - "subtitle" : { - "text" : "Last updated at 2019-07-24 16:36:54 GMT" + "tooltip" : { + "pointFormat" : "{point.y:.0f}" }, - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 + "subtitle" : { + "text" : "Last updated at 2019-07-25 11:22:41 GMT" }, "series" : [ { - "dataLabels" : { - "color" : "#FFFFFF", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "enabled" : "true", - "align" : "right", - "rotation" : -90, - "format" : "{point.y:.0f}", - "y" : 10 - }, + "name" : "Contributions", "data" : [ [ "Blog", - 163 + 164 ], [ "Perl 5", - 724 + 726 ], [ "Perl 6", - 416 + 417 ] ], - "name" : "Contributions" + "dataLabels" : { + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "format" : "{point.y:.0f}", + "align" : "right", + "rotation" : -90, + "color" : "#FFFFFF", + "enabled" : "true", + "y" : 10 + } } ], - "legend" : { - "enabled" : "false" - }, "chart" : { "type" : "column" }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" + "legend" : { + "enabled" : "false" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 2b1cc2b59c..14fbb945ef 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,18 +1,13 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "series" : [ { "name" : "Perl Weekly Challenge Languages", "colorByPoint" : "true", "data" : [ { - "drilldown" : "001", + "y" : 123, "name" : "#001", - "y" : 123 + "drilldown" : "001" }, { "drilldown" : "002", @@ -20,102 +15,90 @@ "y" : 104 }, { - "y" : 66, + "drilldown" : "003", "name" : "#003", - "drilldown" : "003" + "y" : 66 }, { "drilldown" : "004", - "name" : "#004", - "y" : 84 + "y" : 84, + "name" : "#004" }, { - "y" : 66, + "drilldown" : "005", "name" : "#005", - "drilldown" : "005" + "y" : 66 }, { - "drilldown" : "006", + "y" : 47, "name" : "#006", - "y" : 47 + "drilldown" : "006" }, { + "y" : 54, "name" : "#007", - "drilldown" : "007", - "y" : 54 + "drilldown" : "007" }, { "name" : "#008", - "drilldown" : "008", - "y" : 67 + "y" : 67, + "drilldown" : "008" }, { - "name" : "#009", "drilldown" : "009", - "y" : 65 + "y" : 65, + "name" : "#009" }, { - "y" : 58, "drilldown" : "010", + "y" : 58, "name" : "#010" }, { + "drilldown" : "011", "y" : 77, - "name" : "#011", - "drilldown" : "011" + "name" : "#011" }, { - "y" : 81, "drilldown" : "012", - "name" : "#012" + "name" : "#012", + "y" : 81 }, { - "name" : "#013", "drilldown" : "013", + "name" : "#013", "y" : 74 }, { - "y" : 94, "drilldown" : "014", - "name" : "#014" + "name" : "#014", + "y" : 94 }, { "name" : "#015", - "drilldown" : "015", - "y" : 90 + "y" : 90, + "drilldown" : "015" }, { - "drilldown" : "016", + "y" : 64, "name" : "#016", - "y" : 64 + "drilldown" : "016" }, { - "drilldown" : "017", "name" : "#017", - "y" : 77 + "y" : 77, + "drilldown" : "017" }, { - "y" : 12, "drilldown" : "018", - "name" : "#018" + "name" : "#018", + "y" : 16 } ] } ], - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, - "xAxis" : { - "type" : "category" - }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-24 16:36:54 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-25 11:22:41 GMT" }, "drilldown" : { "series" : [ @@ -138,7 +121,6 @@ "name" : "001" }, { - "id" : "002", "name" : "002", "data" : [ [ @@ -153,7 +135,8 @@ "Blog", 9 ] - ] + ], + "id" : "002" }, { "data" : [ @@ -170,10 +153,11 @@ 8 ] ], - "name" : "003", - "id" : "003" + "id" : "003", + "name" : "003" }, { + "id" : "004", "data" : [ [ "Perl 5", @@ -188,7 +172,6 @@ 9 ] ], - "id" : "004", "name" : "004" }, { @@ -206,10 +189,11 @@ 11 ] ], - "name" : "005", - "id" : "005" + "id" : "005", + "name" : "005" }, { + "name" : "006", "data" : [ [ "Perl 5", @@ -224,12 +208,10 @@ 6 ] ], - "name" : "006", "id" : "006" }, { "name" : "007", - "id" : "007", "data" : [ [ "Perl 5", @@ -243,10 +225,10 @@ "Blog", 8 ] - ] + ], + "id" : "007" }, { - "id" : "008", "name" : "008", "data" : [ [ @@ -261,7 +243,8 @@ "Blog", 9 ] - ] + ], + "id" : "008" }, { "data" : [ @@ -282,8 +265,6 @@ "name" : "009" }, { - "name" : "010", - "id" : "010", "data" : [ [ "Perl 5", @@ -297,9 +278,12 @@ "Blog", 9 ] - ] + ], + "id" : "010", + "name" : "010" }, { + "id" : "011", "data" : [ [ "Perl 5", @@ -314,12 +298,9 @@ 8 ] ], - "name" : "011", - "id" : "011" + "name" : "011" }, { - "id" : "012", - "name" : "012", "data" : [ [ "Perl 5", @@ -333,7 +314,9 @@ "Blog", 9 ] - ] + ], + "id" : "012", + "name" : "012" }, { "name" : "013", @@ -354,6 +337,8 @@ ] }, { + "name" : "014", + "id" : "014", "data" : [ [ "Perl 5", @@ -367,11 +352,11 @@ "Blog", 13 ] - ], - "name" : "014", - "id" : "014" + ] }, { + "name" : "015", + "id" : "015", "data" : [ [ "Perl 5", @@ -385,13 +370,9 @@ "Blog", 12 ] - ], - "id" : "015", - "name" : "015" + ] }, { - "name" : "016", - "id" : "016", "data" : [ [ "Perl 5", @@ -405,7 +386,9 @@ "Blog", 10 ] - ] + ], + "id" : "016", + "name" : "016" }, { "name" : "017", @@ -429,15 +412,15 @@ "data" : [ [ "Perl 5", - 7 + 9 ], [ "Perl 6", - 5 + 6 ], [ "Blog", - 0 + 1 ] ], "id" : "018", @@ -449,13 +432,30 @@ "text" : "Perl Weekly Challenge Language" }, "tooltip" : { + "followPointer" : "true", "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" + "headerFormat" : "" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } }, "legend" : { "enabled" : "false" }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "xAxis" : { + "type" : "category" + }, "chart" : { "type" : "column" } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index a8474ed180..3a189391fd 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,57 +1,51 @@ { - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-07-24 16:36:51 GMT" + "legend" : { + "enabled" : "false" }, - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
" + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, "drilldown" : { "series" : [ { + "id" : "Laurent Rosenfeld", "data" : [ [ "Perl 6", - 43 + 34 ], [ "Blog", - 4 + 22 ], [ "Perl 5", - 43 + 36 ] ], - "id" : "Joelle Maslak", - "name" : "Joelle Maslak" + "name" : "Laurent Rosenfeld" }, { + "id" : "Joelle Maslak", "data" : [ [ - "Blog", - 21 + "Perl 5", + 43 ], [ "Perl 6", - 33 + 43 ], [ - "Perl 5", - 34 + "Blog", + 4 ] ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" + "name" : "Joelle Maslak" }, { - "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas", "data" : [ - [ - "Perl 5", - 34 - ], [ "Perl 6", 33 @@ -59,18 +53,22 @@ [ "Blog", 4 + ], + [ + "Perl 5", + 34 ] ], - "id" : "Jaldhar H. Vyas" + "name" : "Jaldhar H. Vyas" }, { "data" : [ [ - "Perl 5", + "Perl 6", 33 ], [ - "Perl 6", + "Perl 5", 33 ] ], @@ -78,36 +76,36 @@ "name" : "Ruben Westerberg" }, { - "name" : "Athanasius", "data" : [ [ - "Perl 5", - 37 + "Perl 6", + 13 ], [ "Blog", 3 ], [ - "Perl 6", - 13 + "Perl 5", + 37 ] ], - "id" : "Athanasius" + "id" : "Athanasius", + "name" : "Athanasius" }, { - "name" : "Adam Russell", + "id" : "Adam Russell", "data" : [ - [ - "Perl 5", - 35 - ], [ "Blog", 17 + ], + [ + "Perl 5", + 35 ] ], - "id" : "Adam Russell" + "name" : "Adam Russell" }, { "data" : [ @@ -120,26 +118,26 @@ 16 ] ], - "name" : "Arne Sommer", - "id" : "Arne Sommer" + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { + "name" : "Simon Proctor", "id" : "Simon Proctor", "data" : [ - [ - "Perl 6", - 29 - ], [ "Blog", 7 ], + [ + "Perl 6", + 29 + ], [ "Perl 5", 4 ] - ], - "name" : "Simon Proctor" + ] }, { "data" : [ @@ -152,32 +150,32 @@ 13 ] ], - "name" : "E. Choroba", - "id" : "E. Choroba" + "id" : "E. Choroba", + "name" : "E. Choroba" }, { - "id" : "Francis Whittle", + "name" : "Francis Whittle", "data" : [ - [ - "Perl 6", - 31 - ], [ "Blog", 8 + ], + [ + "Perl 6", + 31 ] ], - "name" : "Francis Whittle" + "id" : "Francis Whittle" }, { "data" : [ - [ - "Blog", - 11 - ], [ "Perl 5", 28 + ], + [ + "Blog", + 11 ] ], "id" : "Kian-Meng Ang", @@ -185,14 +183,14 @@ }, { "data" : [ - [ - "Perl 6", - 1 - ], [ "Blog", 15 ], + [ + "Perl 6", + 1 + ], [ "Perl 5", 21 @@ -203,27 +201,27 @@ }, { "name" : "Andrezgz", + "id" : "Andrezgz", "data" : [ [ "Perl 5", 32 ] - ], - "id" : "Andrezgz" + ] }, { - "name" : "Gustavo Chaves", "data" : [ - [ - "Perl 5", - 28 - ], [ "Blog", 4 + ], + [ + "Perl 5", + 28 ] ], - "id" : "Gustavo Chaves" + "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves" }, { "data" : [ @@ -240,17 +238,17 @@ "name" : "Yozen Hernandez" }, { + "id" : "Feng Chang", "data" : [ [ - "Perl 6", + "Perl 5", 15 ], [ - "Perl 5", + "Perl 6", 15 ] ], - "id" : "Feng Chang", "name" : "Feng Chang" }, { @@ -264,16 +262,17 @@ "name" : "Daniel Mantovani" }, { - "name" : "Duncan C. White", + "id" : "Duncan C. White", "data" : [ [ "Perl 5", 28 ] ], - "id" : "Duncan C. White" + "name" : "Duncan C. White" }, { + "id" : "Steven Wilson", "data" : [ [ "Perl 5", @@ -284,14 +283,12 @@ 3 ] ], - "id" : "Steven Wilson", "name" : "Steven Wilson" }, { - "name" : "Jo Christian Oterhals", "data" : [ [ - "Blog", + "Perl 5", 6 ], [ @@ -299,34 +296,35 @@ 12 ], [ - "Perl 5", + "Blog", 6 ] ], - "id" : "Jo Christian Oterhals" + "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals" }, { "name" : "Dr James A. Smith", "data" : [ - [ - "Perl 6", - 10 - ], [ "Perl 5", 12 + ], + [ + "Perl 6", + 10 ] ], "id" : "Dr James A. Smith" }, { + "name" : "Ozzy", "data" : [ [ "Perl 6", 18 ] ], - "name" : "Ozzy", "id" : "Ozzy" }, { @@ -336,10 +334,12 @@ 17 ] ], - "name" : "Guillermo Ramos", - "id" : "Guillermo Ramos" + "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos" }, { + "name" : "Veesh Goldman", + "id" : "Veesh Goldman", "data" : [ [ "Blog", @@ -353,12 +353,10 @@ "Perl 5", 14 ] - ], - "name" : "Veesh Goldman", - "id" : "Veesh Goldman" + ] }, { - "name" : "Mark Senn", + "id" : "Mark Senn", "data" : [ [ "Blog", @@ -369,16 +367,16 @@ 12 ] ], - "id" : "Mark Senn" + "name" : "Mark Senn" }, { "data" : [ [ - "Perl 5", + "Perl 6", 8 ], [ - "Perl 6", + "Perl 5", 8 ] ], @@ -386,81 +384,81 @@ "name" : "Nick Logan" }, { + "name" : "Kevin Colyer", "id" : "Kevin Colyer", "data" : [ [ "Perl 6", 14 ] - ], - "name" : "Kevin Colyer" + ] }, { "data" : [ - [ - "Perl 5", - 10 - ], [ "Perl 6", 4 + ], + [ + "Perl 5", + 10 ] ], - "name" : "Lars Balker", - "id" : "Lars Balker" + "id" : "Lars Balker", + "name" : "Lars Balker" }, { - "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] ], - "id" : "Maxim Nechaev" + "name" : "Maxim Nechaev" }, { + "name" : "Roger Bell West", "data" : [ - [ - "Perl 5", - 10 - ], [ "Blog", 2 + ], + [ + "Perl 5", + 10 ] ], - "id" : "Roger Bell West", - "name" : "Roger Bell West" + "id" : "Roger Bell West" }, { - "name" : "Alicia Bielsa", + "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] ], - "id" : "Alicia Bielsa" + "name" : "Alicia Bielsa" }, { + "name" : "Lubos Kolouch", "data" : [ [ "Perl 5", 11 ] ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" + "id" : "Lubos Kolouch" }, { + "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] ], - "id" : "Doug Schrag", "name" : "Doug Schrag" }, { @@ -475,6 +473,7 @@ }, { "name" : "Neil Bowers", + "id" : "Neil Bowers", "data" : [ [ "Blog", @@ -484,28 +483,27 @@ "Perl 5", 6 ] - ], - "id" : "Neil Bowers" + ] }, { + "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 8 ] ], - "id" : "Jaime Corchado", "name" : "Jaime Corchado" }, { "name" : "Noud", + "id" : "Noud", "data" : [ [ "Perl 6", 8 ] - ], - "id" : "Noud" + ] }, { "name" : "Robert Gratza", @@ -522,18 +520,22 @@ "id" : "Robert Gratza" }, { + "name" : "John Barrett", "data" : [ [ "Perl 5", 7 ] ], - "name" : "John Barrett", "id" : "John Barrett" }, { - "id" : "Khalid", + "name" : "Khalid", "data" : [ + [ + "Perl 5", + 4 + ], [ "Perl 6", 2 @@ -541,13 +543,9 @@ [ "Blog", 1 - ], - [ - "Perl 5", - 4 ] ], - "name" : "Khalid" + "id" : "Khalid" }, { "data" : [ @@ -556,53 +554,53 @@ 6 ] ], - "name" : "Aaron Sherman", - "id" : "Aaron Sherman" + "id" : "Aaron Sherman", + "name" : "Aaron Sherman" }, { "id" : "Donald Hunter", "data" : [ [ - "Blog", + "Perl 6", 3 ], [ - "Perl 6", + "Blog", 3 ] ], "name" : "Donald Hunter" }, { + "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] ], - "id" : "Kivanc Yazan", - "name" : "Kivanc Yazan" + "id" : "Kivanc Yazan" }, { + "id" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] ], - "id" : "Maxim Kolodyazhny", "name" : "Maxim Kolodyazhny" }, { "name" : "Philippe Bruhat", "data" : [ - [ - "Blog", - 2 - ], [ "Perl 5", 4 + ], + [ + "Blog", + 2 ] ], "id" : "Philippe Bruhat" @@ -618,26 +616,27 @@ "id" : "Sergio Iglesias" }, { + "id" : "Arpad Toth", "data" : [ [ "Perl 5", 5 ] ], - "id" : "Arpad Toth", "name" : "Arpad Toth" }, { + "name" : "Pete Houston", + "id" : "Pete Houston", "data" : [ [ "Perl 5", 5 ] - ], - "id" : "Pete Houston", - "name" : "Pete Houston" + ] }, { + "name" : "Steve Rogerson", "id" : "Steve Rogerson", "data" : [ [ @@ -648,18 +647,17 @@ "Perl 6", 2 ] - ], - "name" : "Steve Rogerson" + ] }, { - "name" : "Walt Mankowski", "data" : [ [ "Perl 5", 5 ] ], - "id" : "Walt Mankowski" + "id" : "Walt Mankowski", + "name" : "Walt Mankowski" } ] }, @@ -668,20 +666,8 @@ "text" : "Total Score" } }, - "legend" : { - "enabled" : "false" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" + "xAxis" : { + "type" : "category" }, "series" : [ { @@ -689,59 +675,59 @@ "name" : "Perl Weekly Challenge Leaders", "data" : [ { - "drilldown" : "Joelle Maslak", - "name" : "#1: Joelle Maslak", - "y" : 180 + "drilldown" : "Laurent Rosenfeld", + "name" : "#1: Laurent Rosenfeld", + "y" : 184 }, { - "drilldown" : "Laurent Rosenfeld", - "y" : 176, - "name" : "#2: Laurent Rosenfeld" + "y" : 180, + "name" : "#2: Joelle Maslak", + "drilldown" : "Joelle Maslak" }, { "y" : 142, - "name" : "#3: Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas" + "drilldown" : "Jaldhar H. Vyas", + "name" : "#3: Jaldhar H. Vyas" }, { "name" : "#4: Ruben Westerberg", - "y" : 132, - "drilldown" : "Ruben Westerberg" + "drilldown" : "Ruben Westerberg", + "y" : 132 }, { - "drilldown" : "Athanasius", + "y" : 106, "name" : "#5: Athanasius", - "y" : 106 + "drilldown" : "Athanasius" }, { - "drilldown" : "Adam Russell", "name" : "#6: Adam Russell", + "drilldown" : "Adam Russell", "y" : 104 }, { - "drilldown" : "Arne Sommer", "y" : 94, + "drilldown" : "Arne Sommer", "name" : "#7: Arne Sommer" }, { - "y" : 80, "name" : "#8: Simon Proctor", - "drilldown" : "Simon Proctor" + "drilldown" : "Simon Proctor", + "y" : 80 }, { - "name" : "#9: E. Choroba", "y" : 78, - "drilldown" : "E. Choroba" + "drilldown" : "E. Choroba", + "name" : "#9: E. Choroba" }, { - "y" : 78, "name" : "#10: Francis Whittle", - "drilldown" : "Francis Whittle" + "drilldown" : "Francis Whittle", + "y" : 78 }, { + "y" : 78, "drilldown" : "Kian-Meng Ang", - "name" : "#11: Kian-Meng Ang", - "y" : 78 + "name" : "#11: Kian-Meng Ang" }, { "drilldown" : "Dave Jacoby", @@ -749,34 +735,34 @@ "y" : 74 }, { + "drilldown" : "Andrezgz", "name" : "#13: Andrezgz", - "y" : 64, - "drilldown" : "Andrezgz" + "y" : 64 }, { - "name" : "#14: Gustavo Chaves", "y" : 64, - "drilldown" : "Gustavo Chaves" + "drilldown" : "Gustavo Chaves", + "name" : "#14: Gustavo Chaves" }, { "name" : "#15: Yozen Hernandez", - "y" : 64, - "drilldown" : "Yozen Hernandez" + "drilldown" : "Yozen Hernandez", + "y" : 64 }, { + "drilldown" : "Feng Chang", "name" : "#16: Feng Chang", - "y" : 60, - "drilldown" : "Feng Chang" + "y" : 60 }, { - "name" : "#17: Daniel Mantovani", "y" : 56, + "name" : "#17: Daniel Mantovani", "drilldown" : "Daniel Mantovani" }, { - "y" : 56, + "drilldown" : "Duncan C. White", "name" : "#18: Duncan C. White", - "drilldown" : "Duncan C. White" + "y" : 56 }, { "y" : 56, @@ -784,9 +770,9 @@ "drilldown" : "Steven Wilson" }, { - "y" : 48, "name" : "#20: Jo Christian Oterhals", - "drilldown" : "Jo Christian Oterhals" + "drilldown" : "Jo Christian Oterhals", + "y" : 48 }, { "y" : 44, @@ -794,24 +780,24 @@ "drilldown" : "Dr James A. Smith" }, { + "name" : "#22: Ozzy", "drilldown" : "Ozzy", - "y" : 36, - "name" : "#22: Ozzy" + "y" : 36 }, { - "name" : "#23: Guillermo Ramos", "y" : 34, - "drilldown" : "Guillermo Ramos" + "drilldown" : "Guillermo Ramos", + "name" : "#23: Guillermo Ramos" }, { - "name" : "#24: Veesh Goldman", "y" : 34, - "drilldown" : "Veesh Goldman" + "drilldown" : "Veesh Goldman", + "name" : "#24: Veesh Goldman" }, { "name" : "#25: Mark Senn", - "y" : 32, - "drilldown" : "Mark Senn" + "drilldown" : "Mark Senn", + "y" : 32 }, { "y" : 32, @@ -824,19 +810,19 @@ "y" : 28 }, { - "drilldown" : "Lars Balker", "name" : "#28: Lars Balker", + "drilldown" : "Lars Balker", "y" : 28 }, { + "drilldown" : "Maxim Nechaev", "name" : "#29: Maxim Nechaev", - "y" : 24, - "drilldown" : "Maxim Nechaev" + "y" : 24 }, { + "y" : 24, "drilldown" : "Roger Bell West", - "name" : "#30: Roger Bell West", - "y" : 24 + "name" : "#30: Roger Bell West" }, { "drilldown" : "Alicia Bielsa", @@ -844,14 +830,14 @@ "y" : 22 }, { - "drilldown" : "Lubos Kolouch", "name" : "#32: Lubos Kolouch", + "drilldown" : "Lubos Kolouch", "y" : 22 }, { - "y" : 20, + "drilldown" : "Doug Schrag", "name" : "#33: Doug Schrag", - "drilldown" : "Doug Schrag" + "y" : 20 }, { "drilldown" : "Duane Powell", @@ -859,8 +845,8 @@ "y" : 18 }, { - "drilldown" : "Neil Bowers", "y" : 18, + "drilldown" : "Neil Bowers", "name" : "#35: Neil Bowers" }, { @@ -869,34 +855,34 @@ "drilldown" : "Jaime Corchado" }, { - "y" : 16, "name" : "#37: Noud", - "drilldown" : "Noud" + "drilldown" : "Noud", + "y" : 16 }, { "name" : "#38: Robert Gratza", - "y" : 16, - "drilldown" : "Robert Gratza" + "drilldown" : "Robert Gratza", + "y" : 16 }, { - "drilldown" : "John Barrett", + "y" : 14, "name" : "#39: John Barrett", - "y" : 14 + "drilldown" : "John Barrett" }, { "y" : 14, - "name" : "#40: Khalid", - "drilldown" : "Khalid" + "drilldown" : "Khalid", + "name" : "#40: Khalid" }, { + "y" : 12, "drilldown" : "Aaron Sherman", - "name" : "#41: Aaron Sherman", - "y" : 12 + "name" : "#41: Aaron Sherman" }, { - "name" : "#42: Donald Hunter", "y" : 12, - "drilldown" : "Donald Hunter" + "drilldown" : "Donald Hunter", + "name" : "#42: Donald Hunter" }, { "y" : 12, @@ -904,47 +890,61 @@ "drilldown" : "Kivanc Yazan" }, { - "drilldown" : "Maxim Kolodyazhny", "name" : "#44: Maxim Kolodyazhny", + "drilldown" : "Maxim Kolodyazhny", "y" : 12 }, { - "y" : 12, "name" : "#45: Philippe Bruhat", - "drilldown" : "Philippe Bruhat" + "drilldown" : "Philippe Bruhat", + "y" : 12 }, { "drilldown" : "Sergio Iglesias", - "y" : 12, - "name" : "#46: Sergio Iglesias" + "name" : "#46: Sergio Iglesias", + "y" : 12 }, { + "y" : 10, "drilldown" : "Arpad Toth", - "name" : "#47: Arpad Toth", - "y" : 10 + "name" : "#47: Arpad Toth" }, { "y" : 10, - "name" : "#48: Pete Houston", - "drilldown" : "Pete Houston" + "drilldown" : "Pete Houston", + "name" : "#48: Pete Houston" }, { - "drilldown" : "Steve Rogerson", "y" : 10, + "drilldown" : "Steve Rogerson", "name" : "#49: Steve Rogerson" }, { + "y" : 10, "drilldown" : "Walt Mankowski", - "name" : "#50: Walt Mankowski", - "y" : 10 + "name" : "#50: Walt Mankowski" } ] } ], + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-07-25 11:22:37 GMT" + }, "chart" : { "type" : "column" }, - "xAxis" : { - "type" : "category" + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "", + "followPointer" : "true" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 1d46e04442..56d82f7b30 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,6 +1,13 @@ { "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-07-24 16:36:36 GMT" + "text" : "[Champions: 30] Last updated at 2019-07-25 11:22:25 GMT" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" }, "xAxis" : { "categories" : [ @@ -44,13 +51,8 @@ "chart" : { "type" : "column" }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, @@ -82,7 +84,8 @@ 26, 2, 15 - ] + ], + "name" : "Perl 5" }, { "name" : "Perl 6", @@ -160,8 +163,5 @@ "title" : { "text" : "" } - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 41e0d24e58..8057385443 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,55 +1,14 @@ { - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "xAxis" : { - "categories" : [ - "Finley", - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves", - "Jacques Guinnebault", - "Jaime Corchado", - "Jaldhar H. Vyas", - "Dr James A. Smith", - "Jeff", - "Jeremy Carman", - "Jim Bacon", - "JJ Merelo", - "Jo Christian Oterhals", - "Joe Tym", - "Joelle Maslak", - "John Barrett", - "Juan Caballero", - "Kevin Colyer", - "Khalid", - "Kian-Meng Ang", - "Kivanc Yazan", - "Lars Balker", - "Laurent Rosenfeld", - "Lubos Kolouch", - "Magnus Woldrich", - "Mano Chandar", - "Mark Senn", - "Martin Barth" - ] - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-07-24 16:36:36 GMT" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-07-25 11:22:25 GMT" + }, "series" : [ { "data" : [ @@ -77,7 +36,7 @@ 28, 6, 10, - 34, + 36, 11, 1, 0, @@ -113,7 +72,7 @@ 0, 0, 4, - 33, + 34, 0, 1, 0, @@ -122,7 +81,6 @@ ] }, { - "name" : "Blog", "data" : [ 0, 8, @@ -148,18 +106,60 @@ 11, 0, 0, - 21, + 22, 0, 0, 0, 4, 0 - ] + ], + "name" : "Blog" } ], - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "xAxis" : { + "categories" : [ + "Finley", + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves", + "Jacques Guinnebault", + "Jaime Corchado", + "Jaldhar H. Vyas", + "Dr James A. Smith", + "Jeff", + "Jeremy Carman", + "Jim Bacon", + "JJ Merelo", + "Jo Christian Oterhals", + "Joe Tym", + "Joelle Maslak", + "John Barrett", + "Juan Caballero", + "Kevin Colyer", + "Khalid", + "Kian-Meng Ang", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Lubos Kolouch", + "Magnus Woldrich", + "Mano Chandar", + "Mark Senn", + "Martin Barth" + ] + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "chart" : { "type" : "column" diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index e2cd05c16e..91d7d46650 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,6 +1,8 @@ { - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-07-24 16:36:36 GMT" + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "xAxis" : { "categories" : [ @@ -36,30 +38,11 @@ "Simon Miner" ] }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, "chart" : { "type" : "column" }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 4, @@ -91,7 +74,8 @@ 2, 0, 1 - ] + ], + "name" : "Perl 5" }, { "name" : "Perl 6", @@ -129,7 +113,6 @@ ] }, { - "name" : "Blog", "data" : [ 0, 0, @@ -161,7 +144,24 @@ 0, 0, 0 - ] + ], + "name" : "Blog" + } + ], + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" } - ] + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-07-25 11:22:25 GMT" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + } } diff --git a/stats/pwc-summary-91-120.json b/stats/pwc-summary-91-120.json index 9a6ebd55ab..ba8308b96b 100644 --- a/stats/pwc-summary-91-120.json +++ b/stats/pwc-summary-91-120.json @@ -1,6 +1,16 @@ { "subtitle" : { - "text" : "[Champions: 14] Last updated at 2019-07-24 16:36:36 GMT" + "text" : "[Champions: 14] Last updated at 2019-07-25 11:22:25 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "chart" : { + "type" : "column" }, "xAxis" : { "categories" : [ @@ -25,22 +35,12 @@ "stacking" : "percent" } }, - "chart" : { - "type" : "column" - }, "yAxis" : { "min" : 0, "title" : { "text" : "" } }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, "series" : [ { "data" : [ @@ -62,6 +62,7 @@ "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 29, 0, @@ -77,11 +78,9 @@ 0, 1, 0 - ], - "name" : "Perl 6" + ] }, { - "name" : "Blog", "data" : [ 7, 0, @@ -97,7 +96,8 @@ 0, 0, 12 - ] + ], + "name" : "Blog" } ] } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index 2d92cbd8ef..f052fd5f39 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,20 +1,9 @@ { - "chart" : { - "type" : "column" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "chart" : { + "type" : "column" }, "xAxis" : { "categories" : [ @@ -126,7 +115,6 @@ }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, @@ -182,7 +170,7 @@ 28, 6, 10, - 34, + 36, 11, 1, 0, @@ -232,9 +220,11 @@ 1, 1, 20 - ] + ], + "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 6, 0, @@ -290,7 +280,7 @@ 0, 0, 4, - 33, + 34, 0, 1, 0, @@ -340,11 +330,9 @@ 0, 1, 0 - ], - "name" : "Perl 6" + ] }, { - "name" : "Blog", "data" : [ 0, 0, @@ -400,7 +388,7 @@ 11, 0, 0, - 21, + 22, 0, 0, 0, @@ -450,14 +438,26 @@ 0, 0, 12 - ] + ], + "name" : "Blog" } ], + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, "subtitle" : { - "text" : "[Champions: 104] Last updated at 2019-07-24 16:36:36 GMT" + "text" : "[Champions: 104] Last updated at 2019-07-25 11:22:24 GMT" + }, + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 }, "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" } } -- cgit