From 5697f30837ae971ebbdf7d9fdaeb3a65234ba673 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 28 Apr 2019 18:32:46 +0100 Subject: - Added solutions by Arne Sommer. --- challenge-005/arne-sommer/blog.txt | 1 + challenge-005/arne-sommer/perl6/ch-1.p6 | 23 + challenge-005/arne-sommer/perl6/ch-2.p6 | 25 + challenge-005/arne-sommer/perl6/ch-2a.p6 | 30 ++ challenge-005/arne-sommer/perl6/dictionary-lookup | 17 + challenge-005/arne-sommer/perl6/dictionary-lookup2 | 17 + challenge-005/arne-sommer/perl6/english.txt | 61 +++ challenge-005/arne-sommer/perl6/maxigrams-error | 38 ++ challenge-005/arne-sommer/perl6/mkdictionary | 14 + challenge-005/arne-sommer/perl6/multigrams | 70 +++ stats/pwc-current.json | 327 +++++++------ stats/pwc-language-breakdown.json | 108 ++--- stats/pwc-leaders.json | 524 ++++++++++----------- stats/pwc-summary-1-30.json | 118 ++--- stats/pwc-summary-31-60.json | 34 +- stats/pwc-summary-61-90.json | 50 +- stats/pwc-summary.json | 204 ++++---- 17 files changed, 986 insertions(+), 675 deletions(-) create mode 100644 challenge-005/arne-sommer/blog.txt create mode 100755 challenge-005/arne-sommer/perl6/ch-1.p6 create mode 100755 challenge-005/arne-sommer/perl6/ch-2.p6 create mode 100755 challenge-005/arne-sommer/perl6/ch-2a.p6 create mode 100755 challenge-005/arne-sommer/perl6/dictionary-lookup create mode 100755 challenge-005/arne-sommer/perl6/dictionary-lookup2 create mode 100755 challenge-005/arne-sommer/perl6/english.txt create mode 100755 challenge-005/arne-sommer/perl6/maxigrams-error create mode 100755 challenge-005/arne-sommer/perl6/mkdictionary create mode 100755 challenge-005/arne-sommer/perl6/multigrams diff --git a/challenge-005/arne-sommer/blog.txt b/challenge-005/arne-sommer/blog.txt new file mode 100644 index 0000000000..41b8948747 --- /dev/null +++ b/challenge-005/arne-sommer/blog.txt @@ -0,0 +1 @@ +https://perl6.eu/anagrams.html diff --git a/challenge-005/arne-sommer/perl6/ch-1.p6 b/challenge-005/arne-sommer/perl6/ch-1.p6 new file mode 100755 index 0000000000..660283c160 --- /dev/null +++ b/challenge-005/arne-sommer/perl6/ch-1.p6 @@ -0,0 +1,23 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Str $word is copy where $word !~~ /\W/, + :$dictionary where $dictionary.IO.r = "/usr/share/dict/british-english"); + +$word .= lc; + +my $dict = get-dictionary($dictionary); + +print "Anagrams:"; + +for $word.comb.permutations>>.join.unique -> $candidate +{ + # next if $candidate eq $word; + print " $candidate" if $dict{$candidate}; +} +print "\n"; + +sub get-dictionary ($file where $file.IO.r) is export +{ + return $file.IO.lines.grep(* !~~ /\W/)>>.lc.Set; +} + diff --git a/challenge-005/arne-sommer/perl6/ch-2.p6 b/challenge-005/arne-sommer/perl6/ch-2.p6 new file mode 100755 index 0000000000..b70495d4a5 --- /dev/null +++ b/challenge-005/arne-sommer/perl6/ch-2.p6 @@ -0,0 +1,25 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Str :$dictionary where $dictionary.IO.r = "dict-UK.txt"); + +my $dict = get-dictionary($dictionary); + +my %count; + +%count{ .comb.sort.join }++ for $dict.keys; + +my $max = 0; + +for %count.keys.sort( { %count{$^b} <=> %count{$^a} } ) +{ + $max = %count{$_} if %count{$_} > $max; + + last if %count{$_} < $max; + + say "$_: ", %count{$_}; +} + +sub get-dictionary ($file where $file.IO.r) +{ + return $file.IO.lines.grep(* !~~ /\W/)>>.lc.Set; +} diff --git a/challenge-005/arne-sommer/perl6/ch-2a.p6 b/challenge-005/arne-sommer/perl6/ch-2a.p6 new file mode 100755 index 0000000000..a7f5ed6302 --- /dev/null +++ b/challenge-005/arne-sommer/perl6/ch-2a.p6 @@ -0,0 +1,30 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Str :$dictionary where $dictionary.IO.r = "dict-UK.txt"); + +my $dict = get-dictionary($dictionary); + +my %count; + +%count{ .comb.sort.join }++ for $dict.keys; + +my $max = 0; + +for %count.keys.sort( { %count{$^b} <=> %count{$^a} } ) +{ + $max = %count{$_} if %count{$_} > $max; + + last if %count{$_} < $max; + + say "$_: ", %count{$_}, " ", anagrams($_); +} + +sub get-dictionary ($file where $file.IO.r) +{ + return $file.IO.lines.grep(* !~~ /\W/)>>.lc.Set; +} + +sub anagrams ($word) +{ + $word.comb.permutations>>.join.unique.grep( { $dict{$_} } ); +} \ No newline at end of file diff --git a/challenge-005/arne-sommer/perl6/dictionary-lookup b/challenge-005/arne-sommer/perl6/dictionary-lookup new file mode 100755 index 0000000000..45159968ae --- /dev/null +++ b/challenge-005/arne-sommer/perl6/dictionary-lookup @@ -0,0 +1,17 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Str $word is copy where $word !~~ /\W/); + +$word .= lc; +my %dict = get-dictionary("/usr/share/dict/british-english"); + +say %dict{$word} + ?? "$word: Is a valid word" + !! "$word: Not a valid word"; + +sub get-dictionary ($file where $file.IO.r) +{ + my %hash; + $file.IO.lines.grep(* !~~ /\W/).map({ %hash{.lc} = True; }); + return %hash; +} diff --git a/challenge-005/arne-sommer/perl6/dictionary-lookup2 b/challenge-005/arne-sommer/perl6/dictionary-lookup2 new file mode 100755 index 0000000000..b7d567cc37 --- /dev/null +++ b/challenge-005/arne-sommer/perl6/dictionary-lookup2 @@ -0,0 +1,17 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Str $word is copy where $word !~~ /\W/, + :$dictionary where $dictionary.IO.r = "/usr/share/dict/british-english"); + +$word .= lc; + +my $dict = get-dictionary($dictionary); + +say $dict{$word} + ?? "$word: Is a valid word" + !! "$word: Not a valid word"; + +sub get-dictionary ($file where $file.IO.r) +{ + return $file.IO.lines.grep(* !~~ /\W/)>>.lc.Set; +} diff --git a/challenge-005/arne-sommer/perl6/english.txt b/challenge-005/arne-sommer/perl6/english.txt new file mode 100755 index 0000000000..f23ff6e95c --- /dev/null +++ b/challenge-005/arne-sommer/perl6/english.txt @@ -0,0 +1,61 @@ +a +#al +ale +an +au +earl +earn +elf +#erna +#fa +fan +far +#fe +#fen +#fer +#feral +flan +flare +flea +flu +#flue +#fr +fuel +fun +funeral +fur +#furl +#la +lane +#le +#lea +leaf +lean +lear +#len +#lena +luna +lunar +lure +#na +#ne +neal +near +#nu +#ra +#ran +#raul +#re +real +#ref +#rena +#rn +#rue +rule +run +#ufa +#ulna +#ulnae +#ur +ural +urn diff --git a/challenge-005/arne-sommer/perl6/maxigrams-error b/challenge-005/arne-sommer/perl6/maxigrams-error new file mode 100755 index 0000000000..d87a9c8d59 --- /dev/null +++ b/challenge-005/arne-sommer/perl6/maxigrams-error @@ -0,0 +1,38 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Str :$dictionary where $dictionary.IO.r = "dict-UK.txt"); + +my $dict = get-dictionary($dictionary); + +my %count; + +for $dict.keys.sort( { $^b.chars <=> $^a.chars } ) -> $word +{ + next if $word.chars > 20; + + last if %count.values.max > $word.chars; + + %count{$word} = count-anagrams($word); +} + +for %count.keys.sort( { %count{$^b} <=> %count{$^a} } ) +{ + say "$_ : ", %count{$_}; +} + + +sub get-dictionary ($file where $file.IO.r) +{ + return $file.IO.lines.grep(* !~~ /\W/)>>.lc.Set; +} + +sub count-anagrams ($word) +{ + my $count = 0; + + $count++ if $dict{$_} for $word.comb.permutations>>.join.unique; + + say "$word: $count"; + return $count; +} + diff --git a/challenge-005/arne-sommer/perl6/mkdictionary b/challenge-005/arne-sommer/perl6/mkdictionary new file mode 100755 index 0000000000..31e9fc0522 --- /dev/null +++ b/challenge-005/arne-sommer/perl6/mkdictionary @@ -0,0 +1,14 @@ +#! /usr/bin/env perl6 + +my %source = + => "/usr/share/dict/british-english", + => "/usr/share/dict/american-english", + => "/usr/share/dict/ngerman"; + +unit sub MAIN (Str $language where %source{$language}.defined); + +my @lines = %source{$language}.IO.lines.grep(* !~~ /\W/); + +spurt "dict-$language.txt", $language eq "DE" + ?? @lines.join("\n") ~ "\n" + !! "A\nI\n" ~ @lines.grep( {.chars > 1 } ).join("\n") ~ "\n"; diff --git a/challenge-005/arne-sommer/perl6/multigrams b/challenge-005/arne-sommer/perl6/multigrams new file mode 100755 index 0000000000..63aa4925f9 --- /dev/null +++ b/challenge-005/arne-sommer/perl6/multigrams @@ -0,0 +1,70 @@ +#! /usr/bin/env perl6 + +unit sub MAIN (Str $word is copy, + :$dictionary where $dictionary.IO.r = "dict-UK.txt", + :$log-words, :$tabular); + +$word = $word.trans(" " => "", :delete).lc; + +my $dict = get-dictionary($dictionary); + +my @permutations = $word.comb.permutations>>.join.unique; + +my SetHash $seen; +my SetHash $word-list; + +check-anagram("", $_) for @permutations; + +say "Anagrams: { $seen.keys.elems }"; + +if $tabular +{ + my %shown; + for $seen.keys.sort + { + unless /\s/ { .say; next; } + + my @w = .words.sort; + my $w = @w.join(" "); + + next if %shown{$w}; + + %shown{$w} = True; + print $w unless @w; + + print @w.permutations.unique.join(" | "); + print "\n"; + } +} +else +{ + .say for $seen.keys.sort; +} + +spurt "wordlog.txt", $word-list.keys.sort.join("\n") ~ "\n" if $log-words; + +sub get-dictionary ($file where $file.IO.r) +{ + return $file.IO.lines.grep(* !~~ /\W/)>>.lc.Set; +} + +sub check-anagram ($base is copy, $candidate is copy) +{ + # say "[$base][$candidate]"; + + if $dict{$candidate} + { + $word-list{$candidate} = True if $log-words; + $seen{"$base $candidate".trim-leading} = True; + # The first character is a space. + return; + } + + for 1 .. $candidate.chars + { + my $new-base = $candidate.substr(0, $_); + my $new-candidate = $candidate.substr($_); + # say ">> $new-base >> $new-candidate"; + check-anagram("$base $new-base", $new-candidate) if $dict{$new-base}; + } +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 25ca8827fa..b373f4a73d 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,37 +1,157 @@ { - "chart" : { - "type" : "column" - }, + "series" : [ + { + "name" : "Champions", + "colorByPoint" : 1, + "data" : [ + { + "y" : 2, + "drilldown" : "Adam Russell", + "name" : "Adam Russell" + }, + { + "drilldown" : "Andrezgz", + "name" : "Andrezgz", + "y" : 2 + }, + { + "y" : 2, + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer" + }, + { + "name" : "Athanasius", + "drilldown" : "Athanasius", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Daniel Mantovani", + "name" : "Daniel Mantovani" + }, + { + "name" : "Doug Schrag", + "drilldown" : "Doug Schrag", + "y" : 2 + }, + { + "y" : 2, + "name" : "Duncan C. White", + "drilldown" : "Duncan C. White" + }, + { + "name" : "E. Choroba", + "drilldown" : "E. Choroba", + "y" : 2 + }, + { + "y" : 2, + "name" : "Francis Whittle", + "drilldown" : "Francis Whittle" + }, + { + "name" : "Gustavo Chaves", + "drilldown" : "Gustavo Chaves", + "y" : 2 + }, + { + "y" : 2, + "name" : "Jaime Corchado", + "drilldown" : "Jaime Corchado" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", + "y" : 4 + }, + { + "drilldown" : "Dr James A. Smith", + "name" : "Dr James A. Smith", + "y" : 2 + }, + { + "name" : "Joelle Maslak", + "drilldown" : "Joelle Maslak", + "y" : 4 + }, + { + "y" : 2, + "drilldown" : "John Barrett", + "name" : "John Barrett" + }, + { + "name" : "Lars Balker", + "drilldown" : "Lars Balker", + "y" : 2 + }, + { + "name" : "Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld", + "y" : 4 + }, + { + "name" : "Mark Senn", + "drilldown" : "Mark Senn", + "y" : 2 + }, + { + "drilldown" : "Robert Gratza", + "name" : "Robert Gratza", + "y" : 2 + }, + { + "y" : 4, + "drilldown" : "Ruben Westerberg", + "name" : "Ruben Westerberg" + }, + { + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor", + "y" : 2 + } + ] + } + ], "drilldown" : { "series" : [ { + "name" : "Adam Russell", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Adam Russell", "id" : "Adam Russell" }, { - "name" : "Andrezgz", "id" : "Andrezgz", "data" : [ [ "Perl 5", 2 ] + ], + "name" : "Andrezgz" + }, + { + "name" : "Arne Sommer", + "id" : "Arne Sommer", + "data" : [ + [ + "Perl 6", + 2 + ] ] }, { + "name" : "Athanasius", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Athanasius", "id" : "Athanasius" }, { @@ -45,14 +165,14 @@ ] }, { - "id" : "Doug Schrag", - "name" : "Doug Schrag", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Doug Schrag", + "name" : "Doug Schrag" }, { "data" : [ @@ -65,14 +185,14 @@ "name" : "Duncan C. White" }, { + "name" : "E. Choroba", "data" : [ [ "Perl 5", 2 ] ], - "id" : "E. Choroba", - "name" : "E. Choroba" + "id" : "E. Choroba" }, { "name" : "Francis Whittle", @@ -86,26 +206,25 @@ }, { "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Gustavo Chaves" }, { - "name" : "Jaime Corchado", "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Jaime Corchado" }, { - "name" : "Jaldhar H. Vyas", "id" : "Jaldhar H. Vyas", "data" : [ [ @@ -116,7 +235,8 @@ "Perl 6", 2 ] - ] + ], + "name" : "Jaldhar H. Vyas" }, { "data" : [ @@ -139,31 +259,30 @@ 2 ] ], - "name" : "Joelle Maslak", - "id" : "Joelle Maslak" + "id" : "Joelle Maslak", + "name" : "Joelle Maslak" }, { - "name" : "John Barrett", - "id" : "John Barrett", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "John Barrett", + "name" : "John Barrett" }, { + "id" : "Lars Balker", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Lars Balker", "name" : "Lars Balker" }, { - "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld", "data" : [ [ @@ -174,7 +293,8 @@ "Perl 6", 2 ] - ] + ], + "id" : "Laurent Rosenfeld" }, { "data" : [ @@ -183,12 +303,12 @@ 2 ] ], - "name" : "Mark Senn", - "id" : "Mark Senn" + "id" : "Mark Senn", + "name" : "Mark Senn" }, { - "id" : "Robert Gratza", "name" : "Robert Gratza", + "id" : "Robert Gratza", "data" : [ [ "Perl 6", @@ -198,7 +318,6 @@ }, { "name" : "Ruben Westerberg", - "id" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -208,11 +327,12 @@ "Perl 6", 2 ] - ] + ], + "id" : "Ruben Westerberg" }, { - "id" : "Simon Proctor", "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Perl 6", @@ -222,143 +342,38 @@ } ] }, - "legend" : { - "enabled" : 0 + "chart" : { + "type" : "column" }, - "series" : [ - { - "data" : [ - { - "name" : "Adam Russell", - "drilldown" : "Adam Russell", - "y" : 2 - }, - { - "name" : "Andrezgz", - "drilldown" : "Andrezgz", - "y" : 2 - }, - { - "name" : "Athanasius", - "drilldown" : "Athanasius", - "y" : 2 - }, - { - "y" : 2, - "name" : "Daniel Mantovani", - "drilldown" : "Daniel Mantovani" - }, - { - "drilldown" : "Doug Schrag", - "name" : "Doug Schrag", - "y" : 2 - }, - { - "drilldown" : "Duncan C. White", - "name" : "Duncan C. White", - "y" : 2 - }, - { - "name" : "E. Choroba", - "drilldown" : "E. Choroba", - "y" : 2 - }, - { - "y" : 2, - "name" : "Francis Whittle", - "drilldown" : "Francis Whittle" - }, - { - "drilldown" : "Gustavo Chaves", - "name" : "Gustavo Chaves", - "y" : 2 - }, - { - "y" : 2, - "name" : "Jaime Corchado", - "drilldown" : "Jaime Corchado" - }, - { - "y" : 4, - "drilldown" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas" - }, - { - "y" : 2, - "name" : "Dr James A. Smith", - "drilldown" : "Dr James A. Smith" - }, - { - "name" : "Joelle Maslak", - "drilldown" : "Joelle Maslak", - "y" : 4 - }, - { - "y" : 2, - "drilldown" : "John Barrett", - "name" : "John Barrett" - }, - { - "drilldown" : "Lars Balker", - "name" : "Lars Balker", - "y" : 2 - }, - { - "y" : 4, - "name" : "Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld" - }, - { - "y" : 2, - "drilldown" : "Mark Senn", - "name" : "Mark Senn" - }, - { - "y" : 2, - "drilldown" : "Robert Gratza", - "name" : "Robert Gratza" - }, - { - "name" : "Ruben Westerberg", - "drilldown" : "Ruben Westerberg", - "y" : 4 - }, - { - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor", - "y" : 2 - } - ], - "name" : "Champions", - "colorByPoint" : 1 + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } } - ], - "subtitle" : { - "text" : "[Champions: 20] Last updated at 2019-04-28 17:19:21 GMT" + }, + "legend" : { + "enabled" : 0 }, "tooltip" : { + "headerFormat" : "{series.name}
", "pointerFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" + "followPointer" : 1 }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, + "subtitle" : { + "text" : "[Champions: 21] Last updated at 2019-04-28 17:32:31 GMT" + }, "title" : { "text" : "Perl Weekly Challenge - 005" - }, - "xAxis" : { - "type" : "category" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 6fa6073855..f4366ce08c 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,66 +1,72 @@ { + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "legend" : { + "enabled" : "false" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "", + "followPointer" : "true" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "xAxis" : { + "type" : "category" + }, "series" : [ { + "colorByPoint" : "true", "name" : "Perl Weekly Challenge Languages", "data" : [ { - "drilldown" : "001", "name" : "#001 [P5=76 P6=37]", + "drilldown" : "001", "y" : 113 }, { + "drilldown" : "002", "y" : 95, - "name" : "#002 [P5=63 P6=32]", - "drilldown" : "002" + "name" : "#002 [P5=63 P6=32]" }, { - "y" : 58, + "name" : "#003 [P5=32 P6=26]", "drilldown" : "003", - "name" : "#003 [P5=32 P6=26]" + "y" : 58 }, { - "name" : "#004 [P5=46 P6=29]", + "y" : 75, "drilldown" : "004", - "y" : 75 + "name" : "#004 [P5=46 P6=29]" }, { - "name" : "#005 [P5=30 P6=18]", "drilldown" : "005", - "y" : 48 + "y" : 50, + "name" : "#005 [P5=30 P6=20]" } - ], - "colorByPoint" : "true" + ] } ], - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-04-28 17:19:44 GMT" - }, "drilldown" : { "series" : [ { - "id" : "001", + "name" : "001", "data" : [ [ "Perl 5", @@ -71,10 +77,9 @@ 37 ] ], - "name" : "001" + "id" : "001" }, { - "name" : "002", "data" : [ [ "Perl 5", @@ -85,11 +90,11 @@ 32 ] ], + "name" : "002", "id" : "002" }, { "id" : "003", - "name" : "003", "data" : [ [ "Perl 5", @@ -99,10 +104,11 @@ "Perl 6", 26 ] - ] + ], + "name" : "003" }, { - "name" : "004", + "id" : "004", "data" : [ [ "Perl 5", @@ -113,10 +119,9 @@ 29 ] ], - "id" : "004" + "name" : "004" }, { - "id" : "005", "name" : "005", "data" : [ [ @@ -125,19 +130,14 @@ ], [ "Perl 6", - 18 + 20 ] - ] + ], + "id" : "005" } ] }, - "xAxis" : { - "type" : "category" - }, - "legend" : { - "enabled" : "false" - }, - "chart" : { - "type" : "column" + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-04-28 17:32:40 GMT" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 81cd51432c..03e08b4d91 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,7 +1,25 @@ { + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "" + }, + "chart" : { + "type" : "column" + }, + "legend" : { + "enabled" : "false" + }, + "xAxis" : { + "type" : "category" + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } + }, "series" : [ { - "name" : "Perl Weekly Challenge Leaders", "data" : [ { "y" : 48, @@ -9,84 +27,84 @@ "drilldown" : "Laurent Rosenfeld" }, { - "y" : 42, + "drilldown" : "Joelle Maslak", "name" : "#2: Joelle Maslak", - "drilldown" : "Joelle Maslak" + "y" : 42 }, { - "drilldown" : "Jaldhar H. Vyas", "name" : "#3: Jaldhar H. Vyas", - "y" : 40 + "y" : 40, + "drilldown" : "Jaldhar H. Vyas" }, { - "name" : "#4: Dr James A. Smith", "drilldown" : "Dr James A. Smith", - "y" : 36 + "y" : 36, + "name" : "#4: Dr James A. Smith" }, { - "name" : "#5: Simon Proctor", "drilldown" : "Simon Proctor", + "name" : "#5: Simon Proctor", "y" : 36 }, { "drilldown" : "Jo Christian Oterhals", - "name" : "#6: Jo Christian Oterhals", - "y" : 32 + "y" : 32, + "name" : "#6: Jo Christian Oterhals" }, { "drilldown" : "Nick Logan", - "name" : "#7: Nick Logan", - "y" : 32 + "y" : 32, + "name" : "#7: Nick Logan" }, { - "name" : "#8: Ruben Westerberg", "drilldown" : "Ruben Westerberg", + "name" : "#8: Ruben Westerberg", "y" : 32 }, { - "y" : 30, "drilldown" : "Adam Russell", - "name" : "#9: Adam Russell" + "name" : "#9: Adam Russell", + "y" : 30 }, { + "name" : "#10: Lars Balker", "y" : 28, - "drilldown" : "Lars Balker", - "name" : "#10: Lars Balker" + "drilldown" : "Lars Balker" }, { - "y" : 26, "drilldown" : "Mark Senn", - "name" : "#11: Mark Senn" + "name" : "#11: Mark Senn", + "y" : 26 }, { - "drilldown" : "Kian-Meng Ang", - "name" : "#12: Kian-Meng Ang", + "drilldown" : "Arne Sommer", + "name" : "#12: Arne Sommer", "y" : 24 }, { - "y" : 22, + "y" : 24, + "name" : "#13: Kian-Meng Ang", + "drilldown" : "Kian-Meng Ang" + }, + { "drilldown" : "Gustavo Chaves", - "name" : "#13: Gustavo Chaves" + "name" : "#14: Gustavo Chaves", + "y" : 22 }, { + "name" : "#15: Andrezgz", "y" : 20, - "name" : "#14: Andrezgz", "drilldown" : "Andrezgz" }, { - "name" : "#15: Athanasius", "drilldown" : "Athanasius", - "y" : 20 - }, - { - "drilldown" : "Doug Schrag", - "name" : "#16: Doug Schrag", - "y" : 20 + "y" : 20, + "name" : "#16: Athanasius" }, { - "y" : 18, - "drilldown" : "Arne Sommer", - "name" : "#17: Arne Sommer" + "y" : 20, + "name" : "#17: Doug Schrag", + "drilldown" : "Doug Schrag" }, { "y" : 18, @@ -94,9 +112,9 @@ "drilldown" : "Francis Whittle" }, { - "name" : "#19: Duncan C. White", "drilldown" : "Duncan C. White", - "y" : 16 + "y" : 16, + "name" : "#19: Duncan C. White" }, { "y" : 16, @@ -104,14 +122,14 @@ "drilldown" : "Robert Gratza" }, { + "name" : "#21: John Barrett", "y" : 14, - "drilldown" : "John Barrett", - "name" : "#21: John Barrett" + "drilldown" : "John Barrett" }, { + "name" : "#22: Daniel Mantovani", "y" : 12, - "drilldown" : "Daniel Mantovani", - "name" : "#22: Daniel Mantovani" + "drilldown" : "Daniel Mantovani" }, { "y" : 12, @@ -119,39 +137,39 @@ "drilldown" : "Philippe Bruhat" }, { - "y" : 12, "name" : "#24: Sergio Iglesias", + "y" : 12, "drilldown" : "Sergio Iglesias" }, { + "name" : "#25: Khalid", "y" : 10, - "drilldown" : "Khalid", - "name" : "#25: Khalid" + "drilldown" : "Khalid" }, { - "y" : 10, "name" : "#26: Steve Rogerson", + "y" : 10, "drilldown" : "Steve Rogerson" }, { - "name" : "#27: Veesh Goldman", "drilldown" : "Veesh Goldman", - "y" : 10 + "y" : 10, + "name" : "#27: Veesh Goldman" }, { - "name" : "#28: Alex Daniel", "drilldown" : "Alex Daniel", + "name" : "#28: Alex Daniel", "y" : 8 }, { - "name" : "#29: Arpad Toth", "drilldown" : "Arpad Toth", + "name" : "#29: Arpad Toth", "y" : 8 }, { - "y" : 8, + "drilldown" : "Bob Kleemann", "name" : "#30: Bob Kleemann", - "drilldown" : "Bob Kleemann" + "y" : 8 }, { "drilldown" : "Chenyf", @@ -159,29 +177,29 @@ "y" : 8 }, { - "drilldown" : "David Kayal", + "y" : 8, "name" : "#32: David Kayal", - "y" : 8 + "drilldown" : "David Kayal" }, { - "y" : 8, "drilldown" : "Jaime Corchado", + "y" : 8, "name" : "#33: Jaime Corchado" }, { - "y" : 8, "drilldown" : "Matt Latusek", - "name" : "#34: Matt Latusek" + "name" : "#34: Matt Latusek", + "y" : 8 }, { + "drilldown" : "Maxim Kolodyazhny", "y" : 8, - "name" : "#35: Maxim Kolodyazhny", - "drilldown" : "Maxim Kolodyazhny" + "name" : "#35: Maxim Kolodyazhny" }, { + "name" : "#36: Ozzy", "y" : 8, - "drilldown" : "Ozzy", - "name" : "#36: Ozzy" + "drilldown" : "Ozzy" }, { "drilldown" : "Simon Reinhardt", @@ -190,124 +208,126 @@ }, { "name" : "#38: Steven Wilson", - "drilldown" : "Steven Wilson", - "y" : 8 + "y" : 8, + "drilldown" : "Steven Wilson" }, { - "y" : 6, + "drilldown" : "Ailbhe Tweedie", "name" : "#39: Ailbhe Tweedie", - "drilldown" : "Ailbhe Tweedie" + "y" : 6 }, { "y" : 6, - "drilldown" : "Dave Cross", - "name" : "#40: Dave Cross" + "name" : "#40: Dave Cross", + "drilldown" : "Dave Cross" }, { + "name" : "#41: Dave Jacoby", "y" : 6, - "drilldown" : "Dave Jacoby", - "name" : "#41: Dave Jacoby" + "drilldown" : "Dave Jacoby" }, { "name" : "#42: E. Choroba", - "drilldown" : "E. Choroba", - "y" : 6 + "y" : 6, + "drilldown" : "E. Choroba" }, { + "drilldown" : "Freddie B", "y" : 6, - "name" : "#43: Freddie B", - "drilldown" : "Freddie B" + "name" : "#43: Freddie B" }, { "name" : "#44: Jeremy Carman", - "drilldown" : "Jeremy Carman", - "y" : 6 + "y" : 6, + "drilldown" : "Jeremy Carman" }, { + "drilldown" : "Kivanc Yazan", "y" : 6, - "name" : "#45: Kivanc Yazan", - "drilldown" : "Kivanc Yazan" + "name" : "#45: Kivanc Yazan" }, { "y" : 6, - "drilldown" : "Neil Bowers", - "name" : "#46: Neil Bowers" + "name" : "#46: Neil Bowers", + "drilldown" : "Neil Bowers" }, { "y" : 6, - "drilldown" : "Pete Houston", - "name" : "#47: Pete Houston" + "name" : "#47: Pete Houston", + "drilldown" : "Pete Houston" }, { - "y" : 6, "name" : "#48: Sean Meininger", + "y" : 6, "drilldown" : "Sean Meininger" }, { "name" : "#49: Abigail", - "drilldown" : "Abigail", - "y" : 4 + "y" : 4, + "drilldown" : "Abigail" }, { "name" : "#50: Alicia Bielsa", - "drilldown" : "Alicia Bielsa", - "y" : 4 + "y" : 4, + "drilldown" : "Alicia Bielsa" } ], - "colorByPoint" : "true" + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders" } ], - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "" + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } }, "title" : { "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-04-28 17:19:41 GMT" - }, - "xAxis" : { - "type" : "category" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-04-28 17:32:38 GMT" }, "drilldown" : { "series" : [ { + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ - "Blog", - 5 + "Perl 6", + 9 ], [ "Perl 5", 10 ], [ - "Perl 6", - 9 + "Blog", + 5 ] - ], - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld" + ] }, { + "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ - [ - "Blog", - 1 - ], [ "Perl 5", 10 ], + [ + "Blog", + 1 + ], [ "Perl 6", 10 ] - ], - "id" : "Joelle Maslak", - "name" : "Joelle Maslak" + ] }, { "data" : [ @@ -324,8 +344,6 @@ "id" : "Jaldhar H. Vyas" }, { - "name" : "Dr James A. Smith", - "id" : "Dr James A. Smith", "data" : [ [ "Perl 6", @@ -335,12 +353,18 @@ "Perl 5", 10 ] - ] + ], + "name" : "Dr James A. Smith", + "id" : "Dr James A. Smith" }, { - "name" : "Simon Proctor", "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ + [ + "Perl 6", + 10 + ], [ "Perl 5", 4 @@ -348,16 +372,10 @@ [ "Blog", 4 - ], - [ - "Perl 6", - 10 ] ] }, { - "name" : "Jo Christian Oterhals", - "id" : "Jo Christian Oterhals", "data" : [ [ "Perl 6", @@ -371,21 +389,23 @@ "Blog", 4 ] - ] + ], + "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals" }, { - "id" : "Nick Logan", - "name" : "Nick Logan", "data" : [ [ - "Perl 6", + "Perl 5", 8 ], [ - "Perl 5", + "Perl 6", 8 ] - ] + ], + "id" : "Nick Logan", + "name" : "Nick Logan" }, { "data" : [ @@ -412,22 +432,22 @@ 5 ] ], - "id" : "Adam Russell", - "name" : "Adam Russell" + "name" : "Adam Russell", + "id" : "Adam Russell" }, { "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 10 + ], + [ + "Perl 6", + 4 ] ], - "id" : "Lars Balker", - "name" : "Lars Balker" + "name" : "Lars Balker", + "id" : "Lars Balker" }, { "data" : [ @@ -440,12 +460,24 @@ 3 ] ], - "id" : "Mark Senn", - "name" : "Mark Senn" + "name" : "Mark Senn", + "id" : "Mark Senn" + }, + { + "id" : "Arne Sommer", + "name" : "Arne Sommer", + "data" : [ + [ + "Blog", + 4 + ], + [ + "Perl 6", + 8 + ] + ] }, { - "id" : "Kian-Meng Ang", - "name" : "Kian-Meng Ang", "data" : [ [ "Perl 5", @@ -455,11 +487,13 @@ "Blog", 4 ] - ] + ], + "id" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang" }, { - "name" : "Gustavo Chaves", "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", @@ -482,42 +516,26 @@ ] }, { + "name" : "Athanasius", + "id" : "Athanasius", "data" : [ [ "Perl 5", 10 ] - ], - "id" : "Athanasius", - "name" : "Athanasius" + ] }, { - "data" : [ - [ - "Perl 6", - 10 - ] - ], "name" : "Doug Schrag", - "id" : "Doug Schrag" - }, - { - "id" : "Arne Sommer", - "name" : "Arne Sommer", + "id" : "Doug Schrag", "data" : [ - [ - "Blog", - 3 - ], [ "Perl 6", - 6 + 10 ] ] }, { - "id" : "Francis Whittle", - "name" : "Francis Whittle", "data" : [ [ "Blog", @@ -527,101 +545,103 @@ "Perl 6", 6 ] - ] + ], + "id" : "Francis Whittle", + "name" : "Francis Whittle" }, { + "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ [ "Perl 5", 8 ] - ], - "id" : "Duncan C. White", - "name" : "Duncan C. White" + ] }, { - "name" : "Robert Gratza", - "id" : "Robert Gratza", "data" : [ - [ - "Perl 5", - 2 - ], [ "Perl 6", 6 + ], + [ + "Perl 5", + 2 ] - ] + ], + "id" : "Robert Gratza", + "name" : "Robert Gratza" }, { + "name" : "John Barrett", + "id" : "John Barrett", "data" : [ [ "Perl 5", 7 ] - ], - "id" : "John Barrett", - "name" : "John Barrett" + ] }, { - "id" : "Daniel Mantovani", - "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", 6 ] - ] + ], + "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani" }, { - "name" : "Philippe Bruhat", "id" : "Philippe Bruhat", + "name" : "Philippe Bruhat", "data" : [ - [ - "Perl 5", - 4 - ], [ "Blog", 2 + ], + [ + "Perl 5", + 4 ] ] }, { + "id" : "Sergio Iglesias", + "name" : "Sergio Iglesias", "data" : [ [ "Perl 5", 6 ] - ], - "name" : "Sergio Iglesias", - "id" : "Sergio Iglesias" + ] }, { - "name" : "Khalid", - "id" : "Khalid", "data" : [ - [ - "Perl 5", - 4 - ], [ "Blog", 1 + ], + [ + "Perl 5", + 4 ] - ] + ], + "name" : "Khalid", + "id" : "Khalid" }, { - "name" : "Steve Rogerson", "id" : "Steve Rogerson", + "name" : "Steve Rogerson", "data" : [ - [ - "Perl 5", - 3 - ], [ "Perl 6", 2 + ], + [ + "Perl 5", + 3 ] ] }, @@ -636,8 +656,8 @@ "name" : "Veesh Goldman" }, { - "name" : "Alex Daniel", "id" : "Alex Daniel", + "name" : "Alex Daniel", "data" : [ [ "Perl 6", @@ -646,44 +666,44 @@ ] }, { + "id" : "Arpad Toth", + "name" : "Arpad Toth", "data" : [ [ "Perl 5", 4 ] - ], - "name" : "Arpad Toth", - "id" : "Arpad Toth" + ] }, { + "id" : "Bob Kleemann", + "name" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] - ], - "id" : "Bob Kleemann", - "name" : "Bob Kleemann" + ] }, { + "id" : "Chenyf", + "name" : "Chenyf", "data" : [ [ "Perl 6", 4 ] - ], - "id" : "Chenyf", - "name" : "Chenyf" + ] }, { + "name" : "David Kayal", + "id" : "David Kayal", "data" : [ [ "Perl 5", 4 ] - ], - "id" : "David Kayal", - "name" : "David Kayal" + ] }, { "id" : "Jaime Corchado", @@ -696,14 +716,14 @@ ] }, { + "name" : "Matt Latusek", + "id" : "Matt Latusek", "data" : [ [ "Perl 5", 4 ] - ], - "name" : "Matt Latusek", - "id" : "Matt Latusek" + ] }, { "data" : [ @@ -712,8 +732,8 @@ 4 ] ], - "id" : "Maxim Kolodyazhny", - "name" : "Maxim Kolodyazhny" + "name" : "Maxim Kolodyazhny", + "id" : "Maxim Kolodyazhny" }, { "data" : [ @@ -722,12 +742,12 @@ 4 ] ], - "name" : "Ozzy", - "id" : "Ozzy" + "id" : "Ozzy", + "name" : "Ozzy" }, { - "name" : "Simon Reinhardt", "id" : "Simon Reinhardt", + "name" : "Simon Reinhardt", "data" : [ [ "Perl 5", @@ -746,8 +766,8 @@ "id" : "Steven Wilson" }, { - "name" : "Ailbhe Tweedie", "id" : "Ailbhe Tweedie", + "name" : "Ailbhe Tweedie", "data" : [ [ "Perl 5", @@ -770,20 +790,22 @@ ] }, { - "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ - [ - "Perl 5", - 1 - ], [ "Blog", 2 + ], + [ + "Perl 5", + 1 ] - ] + ], + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { + "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl 5", @@ -793,19 +815,17 @@ "Blog", 1 ] - ], - "id" : "E. Choroba", - "name" : "E. Choroba" + ] }, { + "id" : "Freddie B", + "name" : "Freddie B", "data" : [ [ "Perl 5", 3 ] - ], - "name" : "Freddie B", - "id" : "Freddie B" + ] }, { "name" : "Jeremy Carman", @@ -822,24 +842,24 @@ ] }, { + "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", 3 ] - ], - "id" : "Kivanc Yazan", - "name" : "Kivanc Yazan" + ] }, { + "id" : "Neil Bowers", + "name" : "Neil Bowers", "data" : [ [ "Perl 5", 3 ] - ], - "id" : "Neil Bowers", - "name" : "Neil Bowers" + ] }, { "data" : [ @@ -862,45 +882,25 @@ ] }, { - "id" : "Abigail", - "name" : "Abigail", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Abigail", + "id" : "Abigail" }, { - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Alicia Bielsa", + "name" : "Alicia Bielsa" } ] - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "chart" : { - "type" : "column" - }, - "yAxis" : { - "title" : { - "text" : "Total Score" - } - }, - "legend" : { - "enabled" : "false" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index a3b48ad86b..301ac40887 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,10 +1,61 @@ { - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-04-28 17:32:31 GMT" + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "xAxis" : { + "categories" : [ + "Abigail", + "Adam Russell", + "Ailbhe Tweedie", + "Alex Daniel", + "Alexander Karelas", + "Alexey Melezhik", + "Alicia Bielsa", + "Andrezgz", + "Antonio Gamiz", + "Arne Sommer", + "Arpad Toth", + "Athanasius", + "Aubrey Quarcoo", + "Bill Palmer", + "Bob Kleemann", + "Clive Holloway", + "Daniel Mantovani", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Doug Schrag", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Finley", + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves" + ] + }, + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 }, "series" : [ { - "name" : "Perl 5", "data" : [ 2, 10, @@ -36,7 +87,8 @@ 3, 0, 7 - ] + ], + "name" : "Perl 5" }, { "name" : "Perl 6", @@ -50,7 +102,7 @@ 0, 0, 2, - 6, + 8, 0, 0, 0, @@ -74,59 +126,7 @@ ] } ], - "xAxis" : { - "categories" : [ - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gamiz", - "Arne Sommer", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bill Palmer", - "Bob Kleemann", - "Clive Holloway", - "Daniel Mantovani", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Doug Schrag", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Finley", - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves" - ] - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-04-28 17:19:21 GMT" - }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "title" : { + "text" : "Perl Weekly Challenge - 2019" } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 34448cc952..85aea8f65b 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,6 +1,18 @@ { - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "chart" : { + "type" : "column" + }, + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-04-28 17:32:31 GMT" }, "series" : [ { @@ -74,6 +86,9 @@ "name" : "Perl 6" } ], + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, "xAxis" : { "categories" : [ "Jacques Guinnebault", @@ -108,21 +123,6 @@ "Pete Houston" ] }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-04-28 17:19:21 GMT" - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, "yAxis" : { "title" : { "text" : "" diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index ff22537b6e..f1c049ce2d 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,25 +1,4 @@ { - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "subtitle" : { - "text" : "[Champions: 17] Last updated at 2019-04-28 17:19:21 GMT" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "chart" : { - "type" : "column" - }, "xAxis" : { "categories" : [ "Philippe Bruhat", @@ -41,6 +20,15 @@ "Yary H" ] }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, "series" : [ { "name" : "Perl 5", @@ -65,6 +53,7 @@ ] }, { + "name" : "Perl 6", "data" : [ 0, 0, @@ -83,11 +72,22 @@ 0, 0, 1 - ], - "name" : "Perl 6" + ] } ], - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "subtitle" : { + "text" : "[Champions: 17] Last updated at 2019-04-28 17:32:31 GMT" + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index c7d3b59e5c..68ef6d14db 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,19 +1,96 @@ { - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" + "plotOptions" : { + "column" : { + "stacking" : "percent" } }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "xAxis" : { + "categories" : [ + "Abigail", + "Adam Russell", + "Ailbhe Tweedie", + "Alex Daniel", + "Alexander Karelas", + "Alexey Melezhik", + "Alicia Bielsa", + "Andrezgz", + "Antonio Gamiz", + "Arne Sommer", + "Arpad Toth", + "Athanasius", + "Aubrey Quarcoo", + "Bill Palmer", + "Bob Kleemann", + "Clive Holloway", + "Daniel Mantovani", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Doug Schrag", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "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", + "Joelle Maslak", + "John Barrett", + "Juan Caballero", + "Khalid", + "Kian-Meng Ang", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Magnus Woldrich", + "Mark Senn", + "Martin Mugeni", + "Matt Latusek", + "Maxim Kolodyazhny", + "Michael Schaap", + "Neil Bowers", + "Nick Logan", + "Chenyf", + "Oleksii Tsvietnov", + "Ozzy", + "Pavel Jurca", + "Pete Houston", + "Philippe Bruhat", + "Prajith P", + "Robert Gratza", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tim Smith", + "Tore Andersson", + "Veesh Goldman", + "William Gilmore", + "Yary H" + ] + }, + "chart" : { + "type" : "column" }, "series" : [ { + "name" : "Perl 5", "data" : [ 2, 10, @@ -92,10 +169,10 @@ 5, 1, 1 - ], - "name" : "Perl 5" + ] }, { + "name" : "Perl 6", "data" : [ 0, 0, @@ -106,7 +183,7 @@ 0, 0, 2, - 6, + 8, 0, 0, 0, @@ -174,100 +251,23 @@ 0, 0, 1 - ], - "name" : "Perl 6" + ] } ], - "subtitle" : { - "text" : "[Champions: 77] Last updated at 2019-04-28 17:19:21 GMT" + "title" : { + "text" : "Perl Weekly Challenge - 2019" }, - "chart" : { - "type" : "column" + "subtitle" : { + "text" : "[Champions: 77] Last updated at 2019-04-28 17:32:31 GMT" }, - "plotOptions" : { - "column" : { - "stacking" : "percent" + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" } }, - "xAxis" : { - "categories" : [ - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gami