From 01e8bb278733db509dcf2a5f9619a2494691928e Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 24 Jun 2019 23:42:07 +0100 Subject: - Added solutions by Kevin Colyer. --- challenge-014/kevin-colyer/perl6/ch-1.p6 | 33 ++ challenge-014/kevin-colyer/perl6/ch-2.p6 | 28 + stats/pwc-current.json | 177 +++--- stats/pwc-language-breakdown-summary.json | 40 +- stats/pwc-language-breakdown.json | 118 ++-- stats/pwc-leaders.json | 870 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 102 ++-- stats/pwc-summary-31-60.json | 112 ++-- stats/pwc-summary-61-90.json | 90 ++-- stats/pwc-summary-91-120.json | 56 +- stats/pwc-summary.json | 238 ++++---- 11 files changed, 970 insertions(+), 894 deletions(-) create mode 100644 challenge-014/kevin-colyer/perl6/ch-1.p6 create mode 100644 challenge-014/kevin-colyer/perl6/ch-2.p6 diff --git a/challenge-014/kevin-colyer/perl6/ch-1.p6 b/challenge-014/kevin-colyer/perl6/ch-1.p6 new file mode 100644 index 0000000000..5c5ffba758 --- /dev/null +++ b/challenge-014/kevin-colyer/perl6/ch-1.p6 @@ -0,0 +1,33 @@ +#!/usr/bin/perl6 +use v6; + +use Test; + +# challenge 14.1 +# Write a script to generate Van Eck’s sequence. +my @testEck=0, 0, 1, 0, 2, 0, 2, 2, 1, 6, 0, 5, 0, 2, 6, 5, 4, 0, 5; +is vanEck(17),@testEck,"First 18 items Van Eck's sequence correct"; + +sub vanEck(int $n where $n>=0 ) { + # Let a0 = 0. Then, for n ≥ 0, if there exists an m < n such that am = an, take the largest such m and set an+1 = n − m; otherwise an+1 = 0. + + my int $max_m=-1; # set to a value lower than 0 to raise max_m + state int @a=0; + + return 0 if $n==0; # base case + + vanEck($n-1) if @a[$n]:!exists; + + for 0..^$n -> int $m { + if @a[$m]==@a[$n] { + $max_m=max($max_m,$m); + } + } + if $max_m>=0 { + @a[$n+1]=$n-$max_m; + return @a; + } + @a[$n+1]=0; + return @a; +} + diff --git a/challenge-014/kevin-colyer/perl6/ch-2.p6 b/challenge-014/kevin-colyer/perl6/ch-2.p6 new file mode 100644 index 0000000000..943bea48e9 --- /dev/null +++ b/challenge-014/kevin-colyer/perl6/ch-2.p6 @@ -0,0 +1,28 @@ +#!/usr/bin/perl6 +use v6; + +use Test; + +my @words="/usr/share/dict/words".IO.lines.map(*.lc.trans('\'' => '', :delete, 'éåö' => 'eao').uc).grep(*.chars > 3) ; +say "Longest word is: " ~ wordsearch(@words); +# CAMPINAS + +sub wordsearch(@words) { + my @codes=.sort; + my $best=""; + + for @words -> $word { + my $found=True; + for $word.comb(2) -> $xx { + if not ( $xx (elem) @codes ) { + $found=False; + last; + }; + } + if $found { + #say "> Found $word"; + $best=$word if $word.chars>$best.chars ; + } + } + return $best; +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 4c81421ee8..38a22fe4bf 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,86 +1,19 @@ { - "subtitle" : { - "text" : "[Champions: 7] Last updated at 2019-06-24 22:32:06 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - 014" - }, - "series" : [ - { - "data" : [ - { - "y" : 2, - "drilldown" : "Aaron Sherman", - "name" : "Aaron Sherman" - }, - { - "drilldown" : "Dave Jacoby", - "y" : 3, - "name" : "Dave Jacoby" - }, - { - "name" : "E. Choroba", - "drilldown" : "E. Choroba", - "y" : 2 - }, - { - "name" : "Lubos Kolouch", - "y" : 3, - "drilldown" : "Lubos Kolouch" - }, - { - "drilldown" : "Robert Van Dam", - "y" : 3, - "name" : "Robert Van Dam" - }, - { - "y" : 1, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "drilldown" : "Steven Wilson", - "y" : 1, - "name" : "Steven Wilson" - } - ], - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 014" - } - ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "legend" : { - "enabled" : 0 - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" - }, - "chart" : { - "type" : "column" - }, - "xAxis" : { - "type" : "category" - }, "drilldown" : { "series" : [ { + "name" : "Aaron Sherman", "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Aaron Sherman" + ] }, { "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl 5", @@ -90,18 +23,27 @@ "Blog", 1 ] - ], - "id" : "Dave Jacoby" + ] }, { + "name" : "E. Choroba", "data" : [ [ "Perl 5", 2 ] ], - "id" : "E. Choroba", - "name" : "E. Choroba" + "id" : "E. Choroba" + }, + { + "data" : [ + [ + "Perl 6", + 2 + ] + ], + "id" : "Kevin Colyer", + "name" : "Kevin Colyer" }, { "id" : "Lubos Kolouch", @@ -134,24 +76,97 @@ ] }, { - "name" : "Steven Wilson", - "id" : "Steven Wilson", "data" : [ [ "Perl 5", 1 ] - ] + ], + "id" : "Steven Wilson", + "name" : "Steven Wilson" } ] }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "legend" : { + "enabled" : 0 + }, + "xAxis" : { + "type" : "category" + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" + }, + "title" : { + "text" : "Perl Weekly Challenge - 014" + }, + "subtitle" : { + "text" : "[Champions: 8] Last updated at 2019-06-24 22:41:24 GMT" + }, + "series" : [ + { + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 014", + "data" : [ + { + "name" : "Aaron Sherman", + "y" : 2, + "drilldown" : "Aaron Sherman" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 3, + "name" : "Dave Jacoby" + }, + { + "y" : 2, + "drilldown" : "E. Choroba", + "name" : "E. Choroba" + }, + { + "y" : 2, + "drilldown" : "Kevin Colyer", + "name" : "Kevin Colyer" + }, + { + "name" : "Lubos Kolouch", + "drilldown" : "Lubos Kolouch", + "y" : 3 + }, + { + "name" : "Robert Van Dam", + "y" : 3, + "drilldown" : "Robert Van Dam" + }, + { + "drilldown" : "Simon Proctor", + "y" : 1, + "name" : "Simon Proctor" + }, + { + "name" : "Steven Wilson", + "y" : 1, + "drilldown" : "Steven Wilson" + } + ] + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 4ce57d7efd..cbddd85052 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,24 +1,33 @@ { - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 }, "chart" : { "type" : "column" }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + }, + "subtitle" : { + "text" : "Last updated at 2019-06-24 22:41:34 GMT" + }, "series" : [ { "name" : "Contributions", "dataLabels" : { - "align" : "right", + "color" : "#FFFFFF", "rotation" : -90, - "format" : "{point.y:.0f}", "style" : { "fontFamily" : "Verdana, sans-serif", "fontSize" : "13px" }, - "enabled" : "true", "y" : 10, - "color" : "#FFFFFF" + "format" : "{point.y:.0f}", + "align" : "right", + "enabled" : "true" }, "data" : [ [ @@ -31,16 +40,13 @@ ], [ "Perl 6", - 313 + 315 ] ] } ], - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 + "legend" : { + "enabled" : "false" }, "tooltip" : { "pointFormat" : "{point.y:.0f}" @@ -48,16 +54,10 @@ "xAxis" : { "labels" : { "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" } }, "type" : "category" - }, - "legend" : { - "enabled" : "false" - }, - "subtitle" : { - "text" : "Last updated at 2019-06-24 22:32:14 GMT" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index d97a9a9bf2..b3dd92bdcb 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,18 +1,29 @@ { - "legend" : { - "enabled" : "false" + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-24 22:41:34 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" }, "plotOptions" : { "series" : { "borderWidth" : 0, "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" + "format" : "{point.y}", + "enabled" : 1 } } }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-24 22:32:14 GMT" + "legend" : { + "enabled" : "false" }, "tooltip" : { "followPointer" : "true", @@ -22,65 +33,57 @@ "xAxis" : { "type" : "category" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, "series" : [ { "data" : [ { - "drilldown" : "001", "y" : 123, - "name" : "#001" + "name" : "#001", + "drilldown" : "001" }, { - "drilldown" : "002", "name" : "#002", + "drilldown" : "002", "y" : 104 }, { - "drilldown" : "003", "y" : 66, - "name" : "#003" + "name" : "#003", + "drilldown" : "003" }, { "name" : "#004", - "y" : 84, - "drilldown" : "004" + "drilldown" : "004", + "y" : 84 }, { - "name" : "#005", "y" : 66, + "name" : "#005", "drilldown" : "005" }, { + "name" : "#006", "drilldown" : "006", - "y" : 47, - "name" : "#006" + "y" : 47 }, { - "drilldown" : "007", "y" : 54, - "name" : "#007" + "name" : "#007", + "drilldown" : "007" }, { - "drilldown" : "008", "name" : "#008", + "drilldown" : "008", "y" : 67 }, { - "drilldown" : "009", "y" : 62, - "name" : "#009" + "name" : "#009", + "drilldown" : "009" }, { - "drilldown" : "010", "y" : 58, + "drilldown" : "010", "name" : "#010" }, { @@ -90,29 +93,28 @@ }, { "drilldown" : "012", - "y" : 80, - "name" : "#012" + "name" : "#012", + "y" : 80 }, { - "drilldown" : "013", + "y" : 71, "name" : "#013", - "y" : 71 + "drilldown" : "013" }, { "drilldown" : "014", "name" : "#014", - "y" : 15 + "y" : 17 } ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Languages" } ], "drilldown" : { "series" : [ { "id" : "001", - "name" : "001", "data" : [ [ "Perl 5", @@ -126,10 +128,10 @@ "Blog", 10 ] - ] + ], + "name" : "001" }, { - "id" : "002", "name" : "002", "data" : [ [ @@ -144,10 +146,11 @@ "Blog", 9 ] - ] + ], + "id" : "002" }, { - "id" : "003", + "name" : "003", "data" : [ [ "Perl 5", @@ -162,7 +165,7 @@ 8 ] ], - "name" : "003" + "id" : "003" }, { "id" : "004", @@ -201,6 +204,7 @@ "name" : "005" }, { + "name" : "006", "id" : "006", "data" : [ [ @@ -215,10 +219,10 @@ "Blog", 6 ] - ], - "name" : "006" + ] }, { + "name" : "007", "data" : [ [ "Perl 5", @@ -233,10 +237,10 @@ 8 ] ], - "name" : "007", "id" : "007" }, { + "name" : "008", "data" : [ [ "Perl 5", @@ -251,11 +255,9 @@ 9 ] ], - "name" : "008", "id" : "008" }, { - "id" : "009", "data" : [ [ "Perl 5", @@ -270,6 +272,7 @@ 11 ] ], + "id" : "009", "name" : "009" }, { @@ -291,8 +294,8 @@ "name" : "010" }, { - "id" : "011", "name" : "011", + "id" : "011", "data" : [ [ "Perl 5", @@ -309,7 +312,7 @@ ] }, { - "name" : "012", + "id" : "012", "data" : [ [ "Perl 5", @@ -324,7 +327,7 @@ 9 ] ], - "id" : "012" + "name" : "012" }, { "data" : [ @@ -341,11 +344,12 @@ 11 ] ], - "name" : "013", - "id" : "013" + "id" : "013", + "name" : "013" }, { "name" : "014", + "id" : "014", "data" : [ [ "Perl 5", @@ -353,18 +357,14 @@ ], [ "Perl 6", - 3 + 5 ], [ "Blog", 1 ] - ], - "id" : "014" + ] } ] - }, - "title" : { - "text" : "Perl Weekly Challenge Language" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index bacc8fa4be..da8f3aee4e 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,316 +1,40 @@ { - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, "chart" : { "type" : "column" }, "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", "headerFormat" : "", - "followPointer" : "true", - "pointFormat" : "{point.name}: {point.y:f}
" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-24 22:32:10 GMT" - }, - "xAxis" : { - "type" : "category" - }, - "series" : [ - { - "data" : [ - { - "y" : 136, - "name" : "#1: Joelle Maslak", - "drilldown" : "Joelle Maslak" - }, - { - "y" : 132, - "name" : "#2: Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld" - }, - { - "name" : "#3: Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas", - "y" : 106 - }, - { - "y" : 92, - "name" : "#4: Ruben Westerberg", - "drilldown" : "Ruben Westerberg" - }, - { - "y" : 78, - "drilldown" : "Adam Russell", - "name" : "#5: Adam Russell" - }, - { - "name" : "#6: Arne Sommer", - "drilldown" : "Arne Sommer", - "y" : 70 - }, - { - "name" : "#7: Kian-Meng Ang", - "drilldown" : "Kian-Meng Ang", - "y" : 68 - }, - { - "name" : "#8: Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 68 - }, - { - "y" : 66, - "drilldown" : "Athanasius", - "name" : "#9: Athanasius" - }, - { - "y" : 58, - "name" : "#10: E. Choroba", - "drilldown" : "E. Choroba" - }, - { - "y" : 56, - "name" : "#11: Dave Jacoby", - "drilldown" : "Dave Jacoby" - }, - { - "y" : 54, - "name" : "#12: Francis Whittle", - "drilldown" : "Francis Whittle" - }, - { - "name" : "#13: Gustavo Chaves", - "drilldown" : "Gustavo Chaves", - "y" : 54 - }, - { - "drilldown" : "Andrezgz", - "name" : "#14: Andrezgz", - "y" : 50 - }, - { - "y" : 48, - "name" : "#15: Jo Christian Oterhals", - "drilldown" : "Jo Christian Oterhals" - }, - { - "y" : 44, - "name" : "#16: Dr James A. Smith", - "drilldown" : "Dr James A. Smith" - }, - { - "y" : 40, - "name" : "#17: Daniel Mantovani", - "drilldown" : "Daniel Mantovani" - }, - { - "name" : "#18: Duncan C. White", - "drilldown" : "Duncan C. White", - "y" : 40 - }, - { - "drilldown" : "Steven Wilson", - "name" : "#19: Steven Wilson", - "y" : 34 - }, - { - "y" : 34, - "name" : "#20: Yozen Hernandez", - "drilldown" : "Yozen Hernandez" - }, - { - "y" : 32, - "name" : "#21: Mark Senn", - "drilldown" : "Mark Senn" - }, - { - "y" : 32, - "name" : "#22: Nick Logan", - "drilldown" : "Nick Logan" - }, - { - "y" : 28, - "name" : "#23: Lars Balker", - "drilldown" : "Lars Balker" - }, - { - "y" : 26, - "drilldown" : "Ozzy", - "name" : "#24: Ozzy" - }, - { - "y" : 24, - "drilldown" : "Guillermo Ramos", - "name" : "#25: Guillermo Ramos" - }, - { - "name" : "#26: Maxim Nechaev", - "drilldown" : "Maxim Nechaev", - "y" : 24 - }, - { - "y" : 22, - "drilldown" : "Alicia Bielsa", - "name" : "#27: Alicia Bielsa" - }, - { - "y" : 22, - "drilldown" : "Feng Chang", - "name" : "#28: Feng Chang" - }, - { - "drilldown" : "Doug Schrag", - "name" : "#29: Doug Schrag", - "y" : 20 - }, - { - "name" : "#30: Robert Gratza", - "drilldown" : "Robert Gratza", - "y" : 16 - }, - { - "y" : 14, - "drilldown" : "John Barrett", - "name" : "#31: John Barrett" - }, - { - "drilldown" : "Khalid", - "name" : "#32: Khalid", - "y" : 14 - }, - { - "y" : 12, - "drilldown" : "Aaron Sherman", - "name" : "#33: Aaron Sherman" - }, - { - "drilldown" : "Jaime Corchado", - "name" : "#34: Jaime Corchado", - "y" : 12 - }, - { - "y" : 12, - "name" : "#35: Kevin Colyer", - "drilldown" : "Kevin Colyer" - }, - { - "drilldown" : "Kivanc Yazan", - "name" : "#36: Kivanc Yazan", - "y" : 12 - }, - { - "drilldown" : "Maxim Kolodyazhny", - "name" : "#37: Maxim Kolodyazhny", - "y" : 12 - }, - { - "y" : 12, - "name" : "#38: Philippe Bruhat", - "drilldown" : "Philippe Bruhat" - }, - { - "name" : "#39: Sergio Iglesias", - "drilldown" : "Sergio Iglesias", - "y" : 12 - }, - { - "y" : 10, - "drilldown" : "Arpad Toth", - "name" : "#40: Arpad Toth" - }, - { - "name" : "#41: Lubos Kolouch", - "drilldown" : "Lubos Kolouch", - "y" : 10 - }, - { - "y" : 10, - "drilldown" : "Neil Bowers", - "name" : "#42: Neil Bowers" - }, - { - "drilldown" : "Pete Houston", - "name" : "#43: Pete Houston", - "y" : 10 - }, - { - "y" : 10, - "drilldown" : "Steve Rogerson", - "name" : "#44: Steve Rogerson" - }, - { - "y" : 10, - "drilldown" : "Veesh Goldman", - "name" : "#45: Veesh Goldman" - }, - { - "y" : 8, - "name" : "#46: Alex Daniel", - "drilldown" : "Alex Daniel" - }, - { - "drilldown" : "Bob Kleemann", - "name" : "#47: Bob Kleemann", - "y" : 8 - }, - { - "y" : 8, - "drilldown" : "Chenyf", - "name" : "#48: Chenyf" - }, - { - "y" : 8, - "drilldown" : "David Kayal", - "name" : "#49: David Kayal" - }, - { - "y" : 8, - "name" : "#50: Finley", - "drilldown" : "Finley" - } - ], - "name" : "Perl Weekly Challenge Leaders", - "colorByPoint" : "true" - } - ], - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, - "yAxis" : { - "title" : { - "text" : "Total Score" - } + "followPointer" : "true" }, "drilldown" : { "series" : [ { - "id" : "Joelle Maslak", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 6", 32 ], + [ + "Blog", + 4 + ], [ "Perl 5", 32 ] ], - "name" : "Joelle Maslak" + "name" : "Joelle Maslak", + "id" : "Joelle Maslak" }, { + "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld", "data" : [ + [ + "Perl 6", + 25 + ], [ "Perl 5", 26 @@ -318,22 +42,13 @@ [ "Blog", 15 - ], - [ - "Perl 6", - 25 ] - ], - "id" : "Laurent Rosenfeld" + ] }, { "name" : "Jaldhar H. Vyas", "id" : "Jaldhar H. Vyas", "data" : [ - [ - "Perl 6", - 26 - ], [ "Blog", 1 @@ -341,10 +56,16 @@ [ "Perl 5", 26 + ], + [ + "Perl 6", + 26 ] ] }, { + "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -354,26 +75,23 @@ "Perl 6", 23 ] - ], - "id" : "Ruben Westerberg", - "name" : "Ruben Westerberg" + ] }, { + "id" : "Adam Russell", "name" : "Adam Russell", "data" : [ - [ - "Perl 5", - 26 - ], [ "Blog", 13 + ], + [ + "Perl 5", + 26 ] - ], - "id" : "Adam Russell" + ] }, { - "id" : "Arne Sommer", "data" : [ [ "Blog", @@ -384,9 +102,12 @@ 23 ] ], - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "id" : "Arne Sommer" }, { + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang", "data" : [ [ "Perl 5", @@ -396,12 +117,11 @@ "Blog", 11 ] - ], - "id" : "Kian-Meng Ang", - "name" : "Kian-Meng Ang" + ] }, { "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ [ "Perl 6", @@ -415,8 +135,7 @@ "Perl 5", 4 ] - ], - "name" : "Simon Proctor" + ] }, { "data" : [ @@ -433,10 +152,12 @@ 4 ] ], - "id" : "Athanasius", - "name" : "Athanasius" + "name" : "Athanasius", + "id" : "Athanasius" }, { + "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ [ "Perl 5", @@ -446,27 +167,23 @@ "Blog", 9 ] - ], - "id" : "E. Choroba", - "name" : "E. Choroba" + ] }, { - "id" : "Dave Jacoby", "data" : [ - [ - "Perl 5", - 15 - ], [ "Blog", 13 + ], + [ + "Perl 5", + 15 ] ], - "name" : "Dave Jacoby" + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { - "name" : "Francis Whittle", - "id" : "Francis Whittle", "data" : [ [ "Perl 6", @@ -476,9 +193,13 @@ "Blog", 6 ] - ] + ], + "name" : "Francis Whittle", + "id" : "Francis Whittle" }, { + "name" : "Gustavo Chaves", + "id" : "Gustavo Chaves", "data" : [ [ "Blog", @@ -488,21 +209,21 @@ "Perl 5", 23 ] - ], - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + ] }, { - "name" : "Andrezgz", - "id" : "Andrezgz", "data" : [ [ "Perl 5", 25 ] - ] + ], + "id" : "Andrezgz", + "name" : "Andrezgz" }, { + "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals", "data" : [ [ "Perl 5", @@ -516,11 +237,11 @@ "Perl 6", 12 ] - ], - "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals" + ] }, { + "id" : "Dr James A. Smith", + "name" : "Dr James A. Smith", "data" : [ [ "Perl 5", @@ -530,46 +251,43 @@ "Perl 6", 10 ] - ], - "id" : "Dr James A. Smith", - "name" : "Dr James A. Smith" + ] }, { + "name" : "Daniel Mantovani", "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 20 ] - ], - "name" : "Daniel Mantovani" + ] }, { - "name" : "Duncan C. White", - "id" : "Duncan C. White", "data" : [ [ "Perl 5", 20 ] - ] + ], + "name" : "Duncan C. White", + "id" : "Duncan C. White" }, { + "id" : "Steven Wilson", + "name" : "Steven Wilson", "data" : [ - [ - "Perl 5", - 16 - ], [ "Blog", 1 + ], + [ + "Perl 5", + 16 ] - ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + ] }, { - "id" : "Yozen Hernandez", "data" : [ [ "Blog", @@ -580,9 +298,12 @@ 12 ] ], - "name" : "Yozen Hernandez" + "name" : "Yozen Hernandez", + "id" : "Yozen Hernandez" }, { + "name" : "Mark Senn", + "id" : "Mark Senn", "data" : [ [ "Blog", @@ -592,41 +313,39 @@ "Perl 6", 12 ] - ], - "id" : "Mark Senn", - "name" : "Mark Senn" + ] }, { + "name" : "Nick Logan", "id" : "Nick Logan", "data" : [ [ - "Perl 6", + "Perl 5", 8 ], [ - "Perl 5", + "Perl 6", 8 ] - ], - "name" : "Nick Logan" + ] }, { - "name" : "Lars Balker", - "id" : "Lars Balker", "data" : [ - [ - "Perl 5", - 10 - ], [ "Perl 6", 4 + ], + [ + "Perl 5", + 10 ] - ] + ], + "name" : "Lars Balker", + "id" : "Lars Balker" }, { - "name" : "Ozzy", "id" : "Ozzy", + "name" : "Ozzy", "data" : [ [ "Perl 6", @@ -635,37 +354,36 @@ ] }, { + "name" : "Guillermo Ramos", "id" : "Guillermo Ramos", "data" : [ [ "Perl 5", 12 ] - ], - "name" : "Guillermo Ramos" + ] }, { - "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] ], + "id" : "Maxim Nechaev", "name" : "Maxim Nechaev" }, { + "id" : "Alicia Bielsa", "name" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] - ], - "id" : "Alicia Bielsa" + ] }, { - "id" : "Feng Chang", "data" : [ [ "Perl 6", @@ -676,20 +394,30 @@ 4 ] ], + "id" : "Feng Chang", "name" : "Feng Chang" }, { "name" : "Doug Schrag", + "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] + ] + }, + { + "data" : [ + [ + "Perl 6", + 8 + ] ], - "id" : "Doug Schrag" + "name" : "Kevin Colyer", + "id" : "Kevin Colyer" }, { - "name" : "Robert Gratza", "data" : [ [ "Perl 6", @@ -700,75 +428,66 @@ 2 ] ], - "id" : "Robert Gratza" + "id" : "Robert Gratza", + "name" : "Robert Gratza" }, { "id" : "John Barrett", + "name" : "John Barrett", "data" : [ [ "Perl 5", 7 ] - ], - "name" : "John Barrett" + ] }, { - "name" : "Khalid", - "id" : "Khalid", "data" : [ [ - "Perl 6", - 2 + "Perl 5", + 4 ], [ "Blog", 1 ], [ - "Perl 5", - 4 + "Perl 6", + 2 ] - ] + ], + "name" : "Khalid", + "id" : "Khalid" }, { "id" : "Aaron Sherman", + "name" : "Aaron Sherman", "data" : [ [ "Perl 6", 6 ] - ], - "name" : "Aaron Sherman" + ] }, { + "name" : "Jaime Corchado", "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 6 ] - ], - "name" : "Jaime Corchado" - }, - { - "name" : "Kevin Colyer", - "id" : "Kevin Colyer", - "data" : [ - [ - "Perl 6", - 6 - ] ] }, { - "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] ], - "id" : "Kivanc Yazan" + "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan" }, { "data" : [ @@ -782,37 +501,37 @@ }, { "name" : "Philippe Bruhat", + "id" : "Philippe Bruhat", "data" : [ - [ - "Perl 5", - 4 - ], [ "Blog", 2 + ], + [ + "Perl 5", + 4 ] - ], - "id" : "Philippe Bruhat" + ] }, { + "id" : "Sergio Iglesias", + "name" : "Sergio Iglesias", "data" : [ [ "Perl 5", 6 ] - ], - "id" : "Sergio Iglesias", - "name" : "Sergio Iglesias" + ] }, { "name" : "Arpad Toth", + "id" : "Arpad Toth", "data" : [ [ "Perl 5", 5 ] - ], - "id" : "Arpad Toth" + ] }, { "data" : [ @@ -821,11 +540,10 @@ 5 ] ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch" }, { - "id" : "Neil Bowers", "data" : [ [ "Blog", @@ -836,19 +554,22 @@ 4 ] ], - "name" : "Neil Bowers" + "name" : "Neil Bowers", + "id" : "Neil Bowers" }, { - "name" : "Pete Houston", "data" : [ [ "Perl 5", 5 ] ], + "name" : "Pete Houston", "id" : "Pete Houston" }, { + "id" : "Steve Rogerson", + "name" : "Steve Rogerson", "data" : [ [ "Perl 5", @@ -858,73 +579,352 @@ "Perl 6", 2 ] - ], - "id" : "Steve Rogerson", - "name" : "Steve Rogerson" + ] }, { + "name" : "Veesh Goldman", + "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] - ], - "id" : "Veesh Goldman", - "name" : "Veesh Goldman" + ] }, { "name" : "Alex Daniel", + "id" : "Alex Daniel", "data" : [ [ "Perl 6", 4 ] - ], - "id" : "Alex Daniel" + ] }, { - "id" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] ], + "id" : "Bob Kleemann", "name" : "Bob Kleemann" }, { + "name" : "Chenyf", + "id" : "Chenyf", "data" : [ [ "Perl 6", 4 ] - ], - "id" : "Chenyf", - "name" : "Chenyf" + ] }, { + "name" : "David Kayal", "id" : "David Kayal", "data" : [ [ "Perl 5", 4 ] - ], - "name" : "David Kayal" + ] }, { "id" : "Finley", + "name" : "Finley", "data" : [ [ "Perl 6", 4 ] - ], - "name" : "Finley" + ] } ] }, "legend" : { "enabled" : "false" + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-24 22:41:30 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "series" : [ + { + "name" : "Perl Weekly Challenge Leaders", + "colorByPoint" : "true", + "data" : [ + { + "drilldown" : "Joelle Maslak", + "y" : 136, + "name" : "#1: Joelle Maslak" + }, + { + "y" : 132, + "name" : "#2: Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "name" : "#3: Jaldhar H. Vyas", + "y" : 106 + }, + { + "drilldown" : "Ruben Westerberg", + "name" : "#4: Ruben Westerberg", + "y" : 92 + }, + { + "drilldown" : "Adam Russell", + "name" : "#5: Adam Russell", + "y" : 78 + }, + { + "name" : "#6: Arne Sommer", + "y" : 70, + "drilldown" : "Arne Sommer" + }, + { + "drilldown" : "Kian-Meng Ang", + "y" : 68, + "name" : "#7: Kian-Meng Ang" + }, + { + "y" : 68, + "name" : "#8: Simon Proctor", + "drilldown" : "Simon Proctor" + }, + { + "y" : 66, + "name" : "#9: Athanasius", + "drilldown" : "Athanasius" + }, + { + "name" : "#10: E. Choroba", + "y" : 58, + "drilldown" : "E. Choroba" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 56, + "name" : "#11: Dave Jacoby" + }, + { + "drilldown" : "Francis Whittle", + "name" : "#12: Francis Whittle", + "y" : 54 + }, + { + "name" : "#13: Gustavo Chaves", + "y" : 54, + "drilldown" : "Gustavo Chaves" + }, + { + "y" : 50, + "name" : "#14: Andrezgz", + "drilldown" : "Andrezgz" + }, + { + "name" : "#15: Jo Christian Oterhals", + "y" : 48, + "drilldown" : "Jo Christian Oterhals" + }, + { + "y" : 44, + "name" : "#16: Dr James A. Smith", + "drilldown" : "Dr James A. Smith" + }, + { + "drilldown" : "Daniel Mantovani", + "y" : 40, + "name" : "#17: Daniel Mantovani" + }, + { + "drilldown" : "Duncan C. White", + "name" : "#18: Duncan C. White", + "y" : 40 + }, + { + "drilldown" : "Steven Wilson", + "y" : 34, + "name" : "#19: Steven Wilson" + }, + { + "y" : 34, + "name" : "#20: Yozen Hernandez", + "drilldown" : "Yozen Hernandez" + }, + { + "name" : "#21: Mark Senn", + "y" : 32, + "drilldown" : "Mark Senn" + }, + { + "name" : "#22: Nick Logan", + "y" : 32, + "drilldown" : "Nick Logan" + }, + { + "name" : "#23: Lars Balker", + "y" : 28, + "drilldown" : "Lars Balker" + }, + { + "drilldown" : "Ozzy", + "y" : 26, + "name" : "#24: Ozzy" + }, + { + "drilldown" : "Guillermo Ramos", + "name" : "#25: Guillermo Ramos", + "y" : 24 + }, + { + "drilldown" : "Maxim Nechaev", + "name" : "#26: Maxim Nechaev", + "y" : 24 + }, + { + "name" : "#27: Alicia Bielsa", + "y" : 22, + "drilldown" : "Alicia Bielsa" + }, + { + "drilldown" : "Feng Chang", + "y" : 22, + "name" : "#28: Feng Chang" + }, + { + "drilldown" : "Doug Schrag", + "y" : 20, + "name" : "#29: Doug Schrag" + }, + { + "y" : 16, + "name" : "#30: Kevin Colyer", + "drilldown" : "Kevin Colyer" + }, + { + "name" : "#31: Robert Gratza", + "y" : 16, + "drilldown" : "Robert Gratza" + }, + { + "drilldown" : "John Barrett", + "y" : 14, + "name" : "#32: John Barrett" + }, + { + "drilldown" : "Khalid", + "name" : "#33: Khalid", + "y" : 14 + }, + { + "drilldown" : "Aaron Sherman", + "y" : 12, + "name" : "#34: Aaron Sherman" + }, + { + "drilldown" : "Jaime Corchado", + "y" : 12, + "name" : "#35: Jaime Corchado" + }, + { + "drilldown" : "Kivanc Yazan", + "y" : 12, + "name" : "#36: Kivanc Yazan" + }, + { + "drilldown" : "Maxim Kolodyazhny", + "name" : "#37: Maxim Kolodyazhny", + "y" : 12 + }, + { + "drilldown" : "Philippe Bruhat", + "name" : "#38: Philippe Bruhat", + "y" : 12 + }, + { + "y" : 12, + "name" : "#39: Sergio Iglesias", + "drilldown" : "Sergio Iglesias" + }, + { + "drilldown" : "Arpad Toth", + "y" : 10, + "name" : "#40: Arpad Toth" + }, + { + "drilldown" : "Lubos Kolouch", + "y" : 10, + "name" : "#41: Lubos Kolouch" + }, + { + "name" : "#42: Neil Bowers", + "y" : 10, + "drilldown" : "Neil Bowers" + }, + { + "drilldown" : "Pete Houston", + "name" : "#43: Pete Houston", + "y" : 10 + }, + { + "drilldown" : "Steve Rogerson", + "name" : "#44: Steve Rogerson", + "y" : 10 + }, + { + "drilldown" : "Veesh Goldman", + "name" : "#45: Veesh Goldman", + "y" : 10 + }, + { + "drilldown" : "Alex Daniel", + "name" : "#46: Alex Daniel", + "y" : 8 + }, + { + "drilldown" : "Bob Kleemann", + "name" : "#47: Bob Kleemann", + "y" : 8 + }, + { + "name" : "#48: Chenyf", + "y" : 8, + "drilldown" : "Chenyf" + }, + { + "drilldown" : "David Kayal", + "y" : 8, + "name" : "#49: David Kayal" + }, + { + "name" : "#50: Finley", + "y" : 8, + "drilldown" : "Finley" + } + ] + } + ], + "xAxis" : { + "type" : "category" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index bc5c7893bc..ac14b0215d 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,15 +1,50 @@ { - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, + "xAxis" : { + "categories" : [ + "Aaron Sherman", + "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", + "Daniel Mita", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Denis Yurashku", + "Donald Hunter", + "Doug Schrag", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Feng Chang", + "Finley" + ] + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, @@ -41,7 +76,8 @@ 2, 4, 0 - ] + ], + "name" : "Perl 5" }, { "data" : [ @@ -114,54 +150,18 @@ "name" : "Blog" } ], - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-24 22:32:06 GMT" - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "chart" : { - "type" : "column" - }, - "xAxis" : { - "categories" : [ - "Aaron Sherman", - "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", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Donald Hunter", - "Doug Schrag", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Feng Chang", - "Finley" - ] - }, "yAxis" : { "min" : 0, "title" : { "text" : "" } + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-24 22:41:24 GMT" } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 1c153d3a5d..c2dcaf88b3 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,56 +1,22 @@ { - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, - "xAxis" : { - "categories" : [ - "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", - "Martin Mugeni" - ] - }, - "chart" : { - "type" : "column" - }, "tooltip" : { "shared" : 1, "pointFormat" : "{series.name}: {point.y}
" }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-24 22:32:06 GMT" + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "series" : [ { + "name" : "Perl 5", "data" : [ 0, 2, @@ -82,10 +48,10 @@ 0, 0, 0 - ], - "name" : "Perl 5" + ] }, { + "name" : "Perl 6", "data" : [ 21, 0, @@ -105,7 +71,7 @@ 32, 0, 0, - 6, + 8, 2, 0, 0, @@ -117,11 +83,9 @@ 12, 1, 2 - ], - "name" : "Perl 6" + ] }, { - "name" : "Blog", "data" : [ 6, 0, @@ -153,15 +117,51 @@ 4, 0, 0 - ] + ], + "name" : "Blog" } ], + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-24 22:41:24 GMT" + }, + "xAxis" : { + "categories" : [ + "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", + "Martin Mugeni" + ] + }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index fa49f3212e..8f657a1f7c 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,8 +1,37 @@ { - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "xAxis" : { + "categories" : [ + "Matt Latusek", + "Matthew O. Persico", + "Maxim Kolodyazhny", + "Maxim Nechaev", + "Michael Schaap", + "Neil Bowers", + "Nick Logan", + "Chenyf", + "Oleksii Tsvietnov", + "Ozzy", + "Pavel Jurca", + "Pavel Starikov", + "Pete Houston", + "Pete Sergeant", + "Philippe Bruhat", + "Prajith P", + "Robert Van Dam", + "Robert Gratza", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Rakesh Kumar Shardiwal", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tim Smith", + "Tore Andersson" + ] }, "title" : { "text" : "Perl Weekly Challenge - 2019" @@ -14,12 +43,8 @@ "shared" : 1, "pointFormat" : "{series.name}: {point.y}
" }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-24 22:32:06 GMT" - }, "series" : [ { - "name" : "Perl 5", "data" : [ 4, 0, @@ -51,9 +76,11 @@ 1, 0, 2 - ] + ], + "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 0, 0, @@ -85,8 +112,7 @@ 0, 4, 0 - ], - "name" : "Perl 6" + ] }, { "name" : "Blog", @@ -125,43 +151,17 @@ } ], "yAxis" : { - "min" : 0, "title" : { "text" : "" + }, + "min" : 0 + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" } }, - "xAxis" : { - "categories" : [ - "Matt Latusek", - "Matthew O. Persico", - "Maxim Kolodyazhny", - "Maxim Nechaev", - "Michael Schaap", - "Neil Bowers", - "Nick Logan", - "Chenyf", - "Oleksii Tsvietnov", - "Ozzy", - "Pavel Jurca", - "Pavel Starikov", - "Pete Houston", - "Pete Sergeant", - "Philippe Bruhat", - "Prajith P", - "Robert Van Dam", - "Robert Gratza", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Rakesh Kumar Shardiwal", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson" - ] + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-24 22:41:25 GMT" } } diff --git a/stats/pwc-summary-91-120.json b/stats/pwc-summary-91-120.json index af1fb2d690..120a6190b9 100644 --- a/stats/pwc-summary-91-120.json +++ b/stats/pwc-summary-91-120.json @@ -1,26 +1,7 @@ { - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "xAxis" : { - "categories" : [ - "Luis F. Uceta", - "Veesh Goldman", - "William Gilmore", - "Yary H", - "Yozen Hernandez" - ] - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" }, "series" : [ { @@ -44,22 +25,41 @@ ] }, { - "name" : "Blog", "data" : [ 0, 0, 0, 0, 5 - ] + ], + "name" : "Blog" } ], + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, "subtitle" : { - "text" : "[Champions: 5] Last updated at 2019-06-24 22:32:06 GMT" + "text" : "[Champions: 5] Last updated at 2019-06-24 22:41:25 GMT" }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" + "xAxis" : { + "categories" : [ + "Luis F. Uceta", + "Veesh Goldman", + "William Gilmore", + "Yary H", + "Yozen Hernandez" + ] + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" }, "chart" : { "type" : "column" diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index 511c241770..cf01fb0efa 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,117 +1,9 @@ { - "chart" : { - "type" : "column" - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "xAxis" : { - "categories" : [ - "Aaron Sherman", - "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", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Donald Hunter"