From 53723f67bc8de3d53d42147a6ece7aa9e0f5be3e Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 27 May 2019 10:32:18 +0100 Subject: - Added solutions by Kivanc Yazan and Pavel Jurca. --- challenge-010/pavel-jurca/ch-1.pl | 37 --- challenge-010/pavel-jurca/perl5/ch-1.pl | 37 +++ stats/pwc-current.json | 362 +++--------------------- stats/pwc-language-breakdown.json | 203 ++++++++------ stats/pwc-leaders.json | 482 ++++++++++++++++---------------- stats/pwc-summary-1-30.json | 28 +- stats/pwc-summary-31-60.json | 32 +-- stats/pwc-summary-61-90.json | 52 ++-- stats/pwc-summary.json | 222 +++++++-------- 9 files changed, 592 insertions(+), 863 deletions(-) delete mode 100644 challenge-010/pavel-jurca/ch-1.pl create mode 100644 challenge-010/pavel-jurca/perl5/ch-1.pl diff --git a/challenge-010/pavel-jurca/ch-1.pl b/challenge-010/pavel-jurca/ch-1.pl deleted file mode 100644 index 1b8f0220c1..0000000000 --- a/challenge-010/pavel-jurca/ch-1.pl +++ /dev/null @@ -1,37 +0,0 @@ -use 5.010.1; - -use strict; -use warnings; - -my %roman = reverse qw/ - I 1 - V 5 - X 10 - L 50 - C 100 - D 500 - M 1000 -/; - -# === MAIN === -say encode(2019); -# ============ - -sub encode { - # "additive" notation - # https://en.wikipedia.org/wiki/Roman_numerals#Use_of_additive_notation - - my $integer = shift; - my @r; - - ROMAN: - for ( sort { $b <=> $a } keys %roman ) { - push @r, $roman{$_} x int $integer / $_; - - $integer %= $_; - } - - join '', @r; -} - -sub decode {} diff --git a/challenge-010/pavel-jurca/perl5/ch-1.pl b/challenge-010/pavel-jurca/perl5/ch-1.pl new file mode 100644 index 0000000000..1b8f0220c1 --- /dev/null +++ b/challenge-010/pavel-jurca/perl5/ch-1.pl @@ -0,0 +1,37 @@ +use 5.010.1; + +use strict; +use warnings; + +my %roman = reverse qw/ + I 1 + V 5 + X 10 + L 50 + C 100 + D 500 + M 1000 +/; + +# === MAIN === +say encode(2019); +# ============ + +sub encode { + # "additive" notation + # https://en.wikipedia.org/wiki/Roman_numerals#Use_of_additive_notation + + my $integer = shift; + my @r; + + ROMAN: + for ( sort { $b <=> $a } keys %roman ) { + push @r, $roman{$_} x int $integer / $_; + + $integer %= $_; + } + + join '', @r; +} + +sub decode {} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 5499947b96..8ef54741b6 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,21 +1,6 @@ { - "subtitle" : { - "text" : "[Champions: 20] Last updated at 2019-05-27 09:00:23 GMT" - }, - "xAxis" : { - "type" : "category" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 009" + "chart" : { + "type" : "column" }, "drilldown" : { "series" : [ @@ -23,342 +8,71 @@ "data" : [ [ "Perl 5", - 2 - ] - ], - "id" : "Adam Russell", - "name" : "Adam Russell" - }, - { - "name" : "Andrezgz", - "data" : [ - [ - "Perl 5", - 2 - ] - ], - "id" : "Andrezgz" - }, - { - "name" : "Arne Sommer", - "data" : [ - [ - "Perl 6", - 2 - ] - ], - "id" : "Arne Sommer" - }, - { - "data" : [ - [ - "Perl 5", - 2 - ] - ], - "id" : "Athanasius", - "name" : "Athanasius" - }, - { - "data" : [ - [ - "Perl 5", - 2 - ] - ], - "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani" - }, - { - "data" : [ - [ - "Perl 6", - 2 - ] - ], - "name" : "Daniel Mita", - "id" : "Daniel Mita" - }, - { - "data" : [ - [ - "Perl 5", - 2 - ] - ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" - }, - { - "data" : [ - [ - "Perl 6", - 2 - ] - ], - "id" : "Francis Whittle", - "name" : "Francis Whittle" - }, - { - "data" : [ - [ - "Perl 5", - 2 - ] - ], - "name" : "Guillermo Ramos", - "id" : "Guillermo Ramos" - }, - { - "id" : "Gustavo Chaves", - "data" : [ - [ - "Perl 5", - 2 - ] - ], - "name" : "Gustavo Chaves" - }, - { - "name" : "Jaldhar H. Vyas", - "data" : [ - [ - "Perl 5", - 2 - ], - [ - "Perl 6", - 2 - ] - ], - "id" : "Jaldhar H. Vyas" - }, - { - "data" : [ - [ - "Perl 5", - 3 - ], - [ - "Perl 6", - 3 - ] - ], - "name" : "Joelle Maslak", - "id" : "Joelle Maslak" - }, - { - "name" : "Kian-Meng Ang", - "data" : [ - [ - "Perl 5", - 2 - ] - ], - "id" : "Kian-Meng Ang" - }, - { - "data" : [ - [ - "Perl 5", - 2 - ], - [ - "Perl 6", - 2 - ] - ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" - }, - { - "id" : "Luis F. Uceta", - "data" : [ - [ - "Perl 6", - 2 - ] - ], - "name" : "Luis F. Uceta" - }, - { - "data" : [ - [ - "Perl 5", - 2 - ] - ], - "id" : "Maxim Nechaev", - "name" : "Maxim Nechaev" - }, - { - "id" : "Ruben Westerberg", - "data" : [ - [ - "Perl 5", - 2 - ], - [ - "Perl 6", - 2 - ] - ], - "name" : "Ruben Westerberg" - }, - { - "data" : [ - [ - "Perl 6", 1 ] ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan" }, { + "name" : "Pavel Jurca", + "id" : "Pavel Jurca", "data" : [ [ "Perl 5", - 2 - ] - ], - "name" : "Steven Wilson", - "id" : "Steven Wilson" - }, - { - "id" : "Yozen Hernandez", - "data" : [ - [ - "Perl 5", - 2 + 1 ] - ], - "name" : "Yozen Hernandez" + ] } ] }, - "legend" : { - "enabled" : 0 + "title" : { + "text" : "Perl Weekly Challenge - 010" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } }, + "xAxis" : { + "type" : "category" + }, "series" : [ { + "colorByPoint" : 1, "data" : [ { - "name" : "Adam Russell", - "drilldown" : "Adam Russell", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "Andrezgz", - "name" : "Andrezgz" - }, - { - "y" : 2, - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer" - }, - { - "drilldown" : "Athanasius", - "y" : 2, - "name" : "Athanasius" - }, - { - "name" : "Daniel Mantovani", - "y" : 2, - "drilldown" : "Daniel Mantovani" - }, - { - "name" : "Daniel Mita", - "drilldown" : "Daniel Mita", - "y" : 2 - }, - { - "drilldown" : "Dave Jacoby", - "y" : 2, - "name" : "Dave Jacoby" - }, - { - "name" : "Francis Whittle", - "drilldown" : "Francis Whittle", - "y" : 2 - }, - { - "name" : "Guillermo Ramos", - "y" : 2, - "drilldown" : "Guillermo Ramos" - }, - { - "y" : 2, - "drilldown" : "Gustavo Chaves", - "name" : "Gustavo Chaves" - }, - { - "y" : 4, - "drilldown" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas" - }, - { - "drilldown" : "Joelle Maslak", - "y" : 6, - "name" : "Joelle Maslak" - }, - { - "drilldown" : "Kian-Meng Ang", - "y" : 2, - "name" : "Kian-Meng Ang" - }, - { - "drilldown" : "Laurent Rosenfeld", - "y" : 4, - "name" : "Laurent Rosenfeld" - }, - { - "drilldown" : "Luis F. Uceta", - "y" : 2, - "name" : "Luis F. Uceta" - }, - { - "name" : "Maxim Nechaev", - "drilldown" : "Maxim Nechaev", - "y" : 2 - }, - { - "name" : "Ruben Westerberg", - "drilldown" : "Ruben Westerberg", - "y" : 4 + "drilldown" : "Kivanc Yazan", + "name" : "Kivanc Yazan", + "y" : 1 }, { + "drilldown" : "Pavel Jurca", "y" : 1, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "name" : "Steven Wilson", - "y" : 2, - "drilldown" : "Steven Wilson" - }, - { - "drilldown" : "Yozen Hernandez", - "y" : 2, - "name" : "Yozen Hernandez" + "name" : "Pavel Jurca" } ], - "colorByPoint" : 1, "name" : "Champions" } ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "[Champions: 2] Last updated at 2019-05-27 09:31:14 GMT" + }, "tooltip" : { - "pointerFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
", "followPointer" : 1, - "headerFormat" : "{series.name}
" + "pointerFormat" : "{point.name}: {point.y:f}
" }, - "chart" : { - "type" : "column" + "legend" : { + "enabled" : 0 } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 32cd5c957c..39bb4cf238 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,12 +1,81 @@ { - "chart" : { - "type" : "column" + "series" : [ + { + "data" : [ + { + "name" : "#001 [P5=76 P6=37]", + "y" : 113, + "drilldown" : "001" + }, + { + "drilldown" : "002", + "y" : 95, + "name" : "#002 [P5=63 P6=32]" + }, + { + "y" : 58, + "drilldown" : "003", + "name" : "#003 [P5=32 P6=26]" + }, + { + "name" : "#004 [P5=46 P6=29]", + "y" : 75, + "drilldown" : "004" + }, + { + "y" : 55, + "drilldown" : "005", + "name" : "#005 [P5=33 P6=22]" + }, + { + "drilldown" : "006", + "y" : 41, + "name" : "#006 [P5=27 P6=14]" + }, + { + "y" : 44, + "drilldown" : "007", + "name" : "#007 [P5=24 P6=20]" + }, + { + "name" : "#008 [P5=34 P6=20]", + "drilldown" : "008", + "y" : 54 + }, + { + "y" : 47, + "drilldown" : "009", + "name" : "#009 [P5=31 P6=16]" + }, + { + "name" : "#010 [P5=2 P6=0]", + "y" : 2, + "drilldown" : "010" + } + ], + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Languages" + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "xAxis" : { + "type" : "category" }, "drilldown" : { "series" : [ { - "id" : "001", - "name" : "001", "data" : [ [ "Perl 5", @@ -16,10 +85,11 @@ "Perl 6", 37 ] - ] + ], + "name" : "001", + "id" : "001" }, { - "id" : "002", "data" : [ [ "Perl 5", @@ -30,7 +100,8 @@ 32 ] ], - "name" : "002" + "name" : "002", + "id" : "002" }, { "data" : [ @@ -47,7 +118,6 @@ "id" : "003" }, { - "id" : "004", "data" : [ [ "Perl 5", @@ -58,10 +128,10 @@ 29 ] ], - "name" : "004" + "name" : "004", + "id" : "004" }, { - "id" : "005", "data" : [ [ "Perl 5", @@ -72,7 +142,8 @@ 22 ] ], - "name" : "005" + "name" : "005", + "id" : "005" }, { "data" : [ @@ -103,7 +174,6 @@ "id" : "007" }, { - "name" : "008", "data" : [ [ "Perl 5", @@ -114,106 +184,55 @@ 20 ] ], + "name" : "008", "id" : "008" }, { - "id" : "009", + "name" : "009", "data" : [ [ "Perl 5", - 29 + 31 ], [ "Perl 6", - 14 + 16 ] ], - "name" : "009" + "id" : "009" + }, + { + "id" : "010", + "name" : "010", + "data" : [ + [ + "Perl 5", + 2 + ], + [ + "Perl 6", + 0 + ] + ] } ] }, - "series" : [ - { - "data" : [ - { - "name" : "#001 [P5=76 P6=37]", - "y" : 113, - "drilldown" : "001" - }, - { - "name" : "#002 [P5=63 P6=32]", - "y" : 95, - "drilldown" : "002" - }, - { - "name" : "#003 [P5=32 P6=26]", - "y" : 58, - "drilldown" : "003" - }, - { - "y" : 75, - "drilldown" : "004", - "name" : "#004 [P5=46 P6=29]" - }, - { - "y" : 55, - "drilldown" : "005", - "name" : "#005 [P5=33 P6=22]" - }, - { - "drilldown" : "006", - "y" : 41, - "name" : "#006 [P5=27 P6=14]" - }, - { - "name" : "#007 [P5=24 P6=20]", - "y" : 44, - "drilldown" : "007" - }, - { - "y" : 54, - "drilldown" : "008", - "name" : "#008 [P5=34 P6=20]" - }, - { - "name" : "#009 [P5=29 P6=14]", - "y" : 43, - "drilldown" : "009" - } - ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" - } - ], + "legend" : { + "enabled" : "false" + }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-26 19:41:02 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-27 09:31:29 GMT" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "tooltip" : { - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true" - }, - "legend" : { - "enabled" : "false" - }, - "xAxis" : { - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index b0c737a845..c75b47d02b 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,58 +1,60 @@ { + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, "series" : [ { "name" : "Perl Weekly Challenge Leaders", - "colorByPoint" : "true", "data" : [ { "drilldown" : "Laurent Rosenfeld", - "y" : 92, - "name" : "#1: Laurent Rosenfeld" + "name" : "#1: Laurent Rosenfeld", + "y" : 92 }, { + "drilldown" : "Joelle Maslak", "name" : "#2: Joelle Maslak", - "y" : 84, - "drilldown" : "Joelle Maslak" + "y" : 84 }, { - "name" : "#3: Jaldhar H. Vyas", "drilldown" : "Jaldhar H. Vyas", + "name" : "#3: Jaldhar H. Vyas", "y" : 72 }, { - "y" : 64, + "name" : "#4: Ruben Westerberg", "drilldown" : "Ruben Westerberg", - "name" : "#4: Ruben Westerberg" + "y" : 64 }, { "drilldown" : "Adam Russell", - "y" : 54, - "name" : "#5: Adam Russell" + "name" : "#5: Adam Russell", + "y" : 54 }, { + "y" : 50, "name" : "#6: Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 50 + "drilldown" : "Simon Proctor" }, { - "drilldown" : "Arne Sommer", "y" : 48, + "drilldown" : "Arne Sommer", "name" : "#7: Arne Sommer" }, { + "name" : "#8: Kian-Meng Ang", "drilldown" : "Kian-Meng Ang", - "y" : 48, - "name" : "#8: Kian-Meng Ang" + "y" : 48 }, { + "y" : 44, "name" : "#9: Dr James A. Smith", - "drilldown" : "Dr James A. Smith", - "y" : 44 + "drilldown" : "Dr James A. Smith" }, { - "drilldown" : "Jo Christian Oterhals", "y" : 42, - "name" : "#10: Jo Christian Oterhals" + "name" : "#10: Jo Christian Oterhals", + "drilldown" : "Jo Christian Oterhals" }, { "name" : "#11: Gustavo Chaves", @@ -60,74 +62,74 @@ "y" : 38 }, { + "drilldown" : "Athanasius", "name" : "#12: Athanasius", - "y" : 36, - "drilldown" : "Athanasius" + "y" : 36 }, { - "name" : "#13: Andrezgz", "drilldown" : "Andrezgz", + "name" : "#13: Andrezgz", "y" : 34 }, { - "drilldown" : "Francis Whittle", "y" : 34, + "drilldown" : "Francis Whittle", "name" : "#14: Francis Whittle" }, { + "drilldown" : "Nick Logan", "name" : "#15: Nick Logan", - "y" : 32, - "drilldown" : "Nick Logan" + "y" : 32 }, { - "y" : 30, + "name" : "#16: Dave Jacoby", "drilldown" : "Dave Jacoby", - "name" : "#16: Dave Jacoby" + "y" : 30 }, { - "name" : "#17: Lars Balker", "y" : 28, + "name" : "#17: Lars Balker", "drilldown" : "Lars Balker" }, { - "name" : "#18: Daniel Mantovani", + "y" : 26, "drilldown" : "Daniel Mantovani", - "y" : 26 + "name" : "#18: Daniel Mantovani" }, { "name" : "#19: Mark Senn", - "y" : 26, - "drilldown" : "Mark Senn" + "drilldown" : "Mark Senn", + "y" : 26 }, { "drilldown" : "Doug Schrag", - "y" : 20, - "name" : "#20: Doug Schrag" + "name" : "#20: Doug Schrag", + "y" : 20 }, { + "name" : "#21: Duncan C. White", "drilldown" : "Duncan C. White", - "y" : 20, - "name" : "#21: Duncan C. White" + "y" : 20 }, { + "drilldown" : "Robert Gratza", "name" : "#22: Robert Gratza", - "y" : 16, - "drilldown" : "Robert Gratza" + "y" : 16 }, { - "name" : "#23: E. Choroba", "drilldown" : "E. Choroba", + "name" : "#23: E. Choroba", "y" : 14 }, { - "y" : 14, "drilldown" : "Guillermo Ramos", - "name" : "#24: Guillermo Ramos" + "name" : "#24: Guillermo Ramos", + "y" : 14 }, { - "name" : "#25: John Barrett", + "y" : 14, "drilldown" : "John Barrett", - "y" : 14 + "name" : "#25: John Barrett" }, { "y" : 14, @@ -135,14 +137,14 @@ "name" : "#26: Ozzy" }, { - "name" : "#27: Alicia Bielsa", + "y" : 12, "drilldown" : "Alicia Bielsa", - "y" : 12 + "name" : "#27: Alicia Bielsa" }, { "drilldown" : "Maxim Kolodyazhny", - "y" : 12, - "name" : "#28: Maxim Kolodyazhny" + "name" : "#28: Maxim Kolodyazhny", + "y" : 12 }, { "y" : 12, @@ -150,8 +152,8 @@ "name" : "#29: Maxim Nechaev" }, { - "name" : "#30: Philippe Bruhat", "drilldown" : "Philippe Bruhat", + "name" : "#30: Philippe Bruhat", "y" : 12 }, { @@ -160,18 +162,18 @@ "name" : "#31: Sergio Iglesias" }, { - "name" : "#32: Steven Wilson", "drilldown" : "Steven Wilson", + "name" : "#32: Steven Wilson", "y" : 12 }, { "y" : 10, - "drilldown" : "Arpad Toth", - "name" : "#33: Arpad Toth" + "name" : "#33: Arpad Toth", + "drilldown" : "Arpad Toth" }, { - "drilldown" : "Khalid", "y" : 10, + "drilldown" : "Khalid", "name" : "#34: Khalid" }, { @@ -185,128 +187,116 @@ "y" : 10 }, { - "name" : "#37: Yozen Hernandez", "y" : 10, - "drilldown" : "Yozen Hernandez" + "drilldown" : "Yozen Hernandez", + "name" : "#37: Yozen Hernandez" }, { "name" : "#38: Alex Daniel", - "y" : 8, - "drilldown" : "Alex Daniel" + "drilldown" : "Alex Daniel", + "y" : 8 }, { "y" : 8, - "drilldown" : "Bob Kleemann", - "name" : "#39: Bob Kleemann" + "name" : "#39: Bob Kleemann", + "drilldown" : "Bob Kleemann" }, { + "name" : "#40: Chenyf", "drilldown" : "Chenyf", - "y" : 8, - "name" : "#40: Chenyf" + "y" : 8 }, { - "drilldown" : "David Kayal", "y" : 8, + "drilldown" : "David Kayal", "name" : "#41: David Kayal" }, { - "y" : 8, "drilldown" : "Finley", - "name" : "#42: Finley" + "name" : "#42: Finley", + "y" : 8 }, { - "y" : 8, + "name" : "#43: Jaime Corchado", "drilldown" : "Jaime Corchado", - "name" : "#43: Jaime Corchado" + "y" : 8 + }, + { + "y" : 8, + "name" : "#44: Kivanc Yazan", + "drilldown" : "Kivanc Yazan" }, { - "name" : "#44: Luis F. Uceta", + "y" : 8, "drilldown" : "Luis F. Uceta", - "y" : 8 + "name" : "#45: Luis F. Uceta" }, { - "name" : "#45: Matt Latusek", "drilldown" : "Matt Latusek", + "name" : "#46: Matt Latusek", "y" : 8 }, { + "name" : "#47: Neil Bowers", "drilldown" : "Neil Bowers", - "y" : 8, - "name" : "#46: Neil Bowers" + "y" : 8 }, { - "name" : "#47: Simon Reinhardt", - "y" : 8, - "drilldown" : "Simon Reinhardt" + "name" : "#48: Simon Reinhardt", + "drilldown" : "Simon Reinhardt", + "y" : 8 }, { - "y" : 8, "drilldown" : "Tim Smith", - "name" : "#48: Tim Smith" - }, - { - "y" : 6, - "drilldown" : "Ailbhe Tweedie", - "name" : "#49: Ailbhe Tweedie" + "name" : "#49: Tim Smith", + "y" : 8 }, { - "drilldown" : "Dave Cross", "y" : 6, - "name" : "#50: Dave Cross" + "name" : "#50: Ailbhe Tweedie", + "drilldown" : "Ailbhe Tweedie" } - ] + ], + "colorByPoint" : "true" } ], - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-05-27 09:13:41 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, - "legend" : { - "enabled" : "false" - }, - "yAxis" : { - "title" : { - "text" : "Total Score" + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 } }, "chart" : { "type" : "column" }, + "legend" : { + "enabled" : "false" + }, "drilldown" : { "series" : [ { - "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", 18 ], - [ - "Blog", - 11 - ], [ "Perl 6", 17 + ], + [ + "Blog", + 11 ] - ] + ], + "id" : "Laurent Rosenfeld" }, { + "id" : "Joelle Maslak", "data" : [ [ "Perl 6", @@ -321,25 +311,23 @@ 20 ] ], - "id" : "Joelle Maslak", "name" : "Joelle Maslak" }, { - "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", "data" : [ [ - "Perl 6", + "Perl 5", 18 ], [ - "Perl 5", + "Perl 6", 18 ] - ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" }, { - "name" : "Ruben Westerberg", "id" : "Ruben Westerberg", "data" : [ [ @@ -350,57 +338,56 @@ "Perl 5", 16 ] - ] + ], + "name" : "Ruben Westerberg" }, { + "name" : "Adam Russell", "data" : [ - [ - "Perl 5", - 18 - ], [ "Blog", 9 + ], + [ + "Perl 5", + 18 ] ], - "name" : "Adam Russell", "id" : "Adam Russell" }, { "name" : "Simon Proctor", - "id" : "Simon Proctor", "data" : [ [ "Perl 6", 15 ], - [ - "Perl 5", - 4 - ], [ "Blog", 6 + ], + [ + "Perl 5", + 4 ] - ] + ], + "id" : "Simon Proctor" }, { "data" : [ - [ - "Blog", - 8 - ], [ "Perl 6", 16 + ], + [ + "Blog", + 8 ] ], "name" : "Arne Sommer", "id" : "Arne Sommer" }, { - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang", "data" : [ [ "Perl 5", @@ -410,11 +397,12 @@ "Blog", 8 ] - ] + ], + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang" }, { "name" : "Dr James A. Smith", - "id" : "Dr James A. Smith", "data" : [ [ "Perl 6", @@ -424,12 +412,16 @@ "Perl 5", 12 ] - ] + ], + "id" : "Dr James A. Smith" }, { "id" : "Jo Christian Oterhals", - "name" : "Jo Christian Oterhals", "data" : [ + [ + "Perl 6", + 10 + ], [ "Blog", 5 @@ -437,16 +429,12 @@ [ "Perl 5", 6 - ], - [ - "Perl 6", - 10 ] - ] + ], + "name" : "Jo Christian Oterhals" }, { "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", @@ -456,21 +444,22 @@ "Blog", 4 ] - ] + ], + "name" : "Gustavo Chaves" }, { + "name" : "Athanasius", "data" : [ [ "Perl 5", 18 ] ], - "name" : "Athanasius", "id" : "Athanasius" }, { - "name" : "Andrezgz", "id" : "Andrezgz", + "name" : "Andrezgz", "data" : [ [ "Perl 5", @@ -479,36 +468,34 @@ ] }, { + "id" : "Francis Whittle", + "name" : "Francis Whittle", "data" : [ - [ - "Perl 6", - 12 - ], [ "Blog", 5 + ], + [ + "Perl 6", + 12 ] - ], - "id" : "Francis Whittle", - "name" : "Francis Whittle" + ] }, { + "id" : "Nick Logan", + "name" : "Nick Logan", "data" : [ [ - "Perl 6", + "Perl 5", 8 ], [ - "Perl 5", + "Perl 6", 8 ] - ], - "name" : "Nick Logan", - "id" : "Nick Logan" + ] }, { - "id" : "Dave Jacoby", - "name" : "Dave Jacoby", "data" : [ [ "Perl 5", @@ -518,31 +505,33 @@ "Blog", 8 ] - ] + ], + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { + "id" : "Lars Balker", "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 10 + ], + [ + "Perl 6", + 4 ] ], - "id" : "Lars Balker", "name" : "Lars Balker" }, { + "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 13 ] ], - "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani" + "name" : "Daniel Mantovani" }, { "id" : "Mark Senn", @@ -559,28 +548,26 @@ ] }, { - "name" : "Doug Schrag", "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] - ] + ], + "name" : "Doug Schrag" }, { - "id" : "Duncan C. White", "name" : "Duncan C. White", "data" : [ [ "Perl 5", 10 ] - ] + ], + "id" : "Duncan C. White" }, { - "name" : "Robert Gratza", - "id" : "Robert Gratza", "data" : [ [ "Perl 6", @@ -590,7 +577,9 @@ "Perl 5", 2 ] - ] + ], + "name" : "Robert Gratza", + "id" : "Robert Gratza" }, { "data" : [ @@ -607,43 +596,43 @@ "id" : "E. Choroba" }, { - "id" : "Guillermo Ramos", "name" : "Guillermo Ramos", "data" : [ [ "Perl 5", 7 ] - ] + ], + "id" : "Guillermo Ramos" }, { - "name" : "John Barrett", "id" : "John Barrett", "data" : [ [ "Perl 5", 7 ] - ] + ], + "name" : "John Barrett" }, { - "name" : "Ozzy", - "id" : "Ozzy", "data" : [ [ "Perl 6", 7 ] - ] + ], + "name" : "Ozzy", + "id" : "Ozzy" }, { + "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 6 ] ], - "id" : "Alicia Bielsa", "name" : "Alicia Bielsa" }, { @@ -663,10 +652,11 @@ 6 ] ], - "id" : "Maxim Nechaev", - "name" : "Maxim Nechaev" + "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev" }, { + "id" : "Philippe Bruhat", "data" : [ [ "Blog", @@ -677,7 +667,6 @@ 4 ] ], - "id" : "Philippe Bruhat", "name" : "Philippe Bruhat" }, { @@ -687,44 +676,45 @@ 6 ] ], - "id" : "Sergio Iglesias", - "name" : "Sergio Iglesias" + "name" : "Sergio Iglesias", + "id" : "Sergio Iglesias" }, { - "name" : "Steven Wilson", "id" : "Steven Wilson", "data" : [ [ "Perl 5", 6 ] - ] + ], + "name" : "Steven Wilson" }, { - "id" : "Arpad Toth", - "name" : "Arpad Toth", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Arpad Toth", + "id" : "Arpad Toth" }, { + "id" : "Khalid", "data" : [ - [ - "Perl 5", - 4 - ], [ "Blog", 1 + ], + [ + "Perl 5", + 4 ] ], - "name" : "Khalid", - "id" : "Khalid" + "name" : "Khalid" }, { + "id" : "Steve Rogerson", "data" : [ [ "Perl 6", @@ -735,21 +725,19 @@ 3 ] ], - "name" : "Steve Rogerson", - "id" : "Steve Rogerson" + "name" : "Steve Rogerson" }, { "id" : "Veesh Goldman", - "name" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Veesh Goldman" }, { - "id" : "Yozen Hernandez", "name" : "Yozen Hernandez", "data" : [ [ @@ -760,7 +748,8 @@ "Perl 5", 4 ] - ] + ], + "id" : "Yozen Hernandez" }, { "id" : "Alex Daniel", @@ -779,12 +768,12 @@ 4 ] ], - "id" : "Bob Kleemann", - "name" : "Bob Kleemann" + "name" : "Bob Kleemann", + "id" : "Bob Kleemann" }, { - "name" : "Chenyf", "id" : "Chenyf", + "name" : "Chenyf", "data" : [ [ "Perl 6", @@ -793,74 +782,84 @@ ] }, { + "id" : "David Kayal", + "name" : "David Kayal", "data" : [ [ "Perl 5", 4 ] - ], - "id" : "David Kayal", - "name" : "David Kayal" + ] }, { - "name" : "Finley", "id" : "Finley", "data" : [ [ "Perl 6", 4 ] - ] + ], + "name" : "Finley" }, { + "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 4 ] ], - "id" : "Jaime Corchado", "name" : "Jaime Corchado" }, { - "name" : "Luis F. Uceta", - "id" : "Luis F. Uceta", + "id" : "Kivanc Yazan", + "data" : [ + [ + "Perl 5", + 4 + ] + ], + "name" : "Kivanc Yazan" + }, + { "data" : [ [ "Perl 6", 4 ] - ] + ], + "name" : "Luis F. Uceta", + "id" : "Luis F. Uceta" }, { + "id" : "Matt Latusek", "data" : [ [ "Perl 5", 4 ] ], - "name" : "Matt Latusek", - "id" : "Matt Latusek" + "name" : "Matt Latusek" }, { + "name" : "Neil Bowers", "data" : [ [ "Perl 5", 4 ] ], - "id" : "Neil Bowers", - "name" : "Neil Bowers" + "id" : "Neil Bowers" }, { - "name" : "Simon Reinhardt", "id" : "Simon Reinhardt", "data" : [ [ "Perl 5", 4 ] - ] + ], + "name" : "Simon Reinhardt" }, { "data" : [ @@ -869,8 +868,8 @@ 4 ] ], - "id" : "Tim Smith", - "name" : "Tim Smith" + "name" : "Tim Smith", + "id" : "Tim Smith" }, { "data" : [ @@ -881,26 +880,23 @@ ], "name" : "Ailbhe Tweedie", "id" : "Ailbhe Tweedie" - }, - { - "name" : "Dave Cross", - "id" : "Dave Cross", - "data" : [ - [ - "Perl 5", - 2 - ], - [ - "Blog", - 1 - ] - ] } ] }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-05-27 09:31:25 GMT" + }, + "xAxis" : { + "type" : "category" + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } + }, "tooltip" : { + "headerFormat" : "", "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" + "followPointer" : "true" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index e1ddea03fd..bdbb69f395 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -38,22 +38,11 @@ "Freddie B" ] }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, "chart" : { "type" : "column" }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-05-27 09:05:48 GMT" - }, "series" : [ { - "name" : "Perl 5", "data" : [ 2, 18, @@ -85,9 +74,11 @@ 0, 2, 3 - ] + ], + "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 0, 0, @@ -119,10 +110,19 @@ 12, 0, 0 - ], - "name" : "Perl 6" + ] } ], + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-05-27 09:31:14 GMT" + }, "yAxis" : { "min" : 0, "title" : { diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 3d9c94d155..08d78047a3 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,14 +1,7 @@ { - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, "chart" : { "type" : "column" }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, "xAxis" : { "categories" : [ "Guillermo Ramos", @@ -48,11 +41,9 @@ "stacking" : "percent" } }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" }, "series" : [ { @@ -73,7 +64,7 @@ 2, 4, 14, - 3, + 4, 10, 18, 1, @@ -91,6 +82,7 @@ "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 0, 0, @@ -122,11 +114,19 @@ 0, 8, 4 - ], - "name" : "Perl 6" + ] } ], + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-05-27 09:05:48 GMT" + "text" : "[Champions: 30] Last updated at 2019-05-27 09:31:14 GMT" } } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index 520c76de93..047df620ff 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,19 +1,15 @@ { - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, - "subtitle" : { - "text" : "[Champions: 25] Last updated at 2019-05-27 09:05:48 GMT" + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 }, "series" : [ { + "name" : "Perl 5", "data" : [ 2, 0, - 2, + 3, 0, 3, 0, @@ -36,8 +32,7 @@ 1, 1, 4 - ], - "name" : "Perl 5" + ] }, { "data" : [ @@ -70,21 +65,6 @@ "name" : "Perl 6" } ], - "chart" : { - "type" : "column" - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, "xAxis" : { "categories" : [ "Oleksii Tsvietnov", @@ -113,5 +93,25 @@ "Yary H", "Yozen Hernandez" ] + }, + "chart" : { + "type" : "column" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "subtitle" : { + "text" : "[Champions: 25] Last updated at 2019-05-27 09:31:14 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index eeea8f294b..cafa285dc4 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,4 +1,108 @@ { + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "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", + "Daniel Mita", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Denis Yurashku", + "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", + "Mano Chandar", + "Mark Senn", + "Martin Mugeni", + "Matt Latusek", + "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 Gratza", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tim Smith", + "Tore Andersson", + "Luis F. Uceta", + "Veesh Goldman", + "William Gilmore", + "Yary H", + "Yozen Hernandez" + ] + }, "series" : [ { "name" : "Perl 5", @@ -49,7 +153,7 @@ 2, 4, 14, - 3, + 4, 10, 18, 1, @@ -65,7 +169,7 @@ 0, 2, 0, - 2, + 3, 0, 3, 0, @@ -91,7 +195,6 @@ ] }, { - "name" : "Perl 6", "data" : [ 0, 0, @@ -178,120 +281,17 @@ 0, 1, 0 - ] + ], + "name" : "Perl 6" } ], "yAxis" : { - "min" : 0, "title" : { "text" : "" - } - }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "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", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "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", - "Mano Chandar", - "Mark Senn", - "Martin Mugeni", - "Matt Latusek", - "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 Gratza", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Luis F. Uceta", - "Veesh Goldman", - "William Gilmore", - "Yary H", - "Yozen Hernandez" - ] - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + }, + "min" : 0 }, "subtitle" : { - "text" : "[Champions: 85] Last updated at 2019-05-26 19:40:52 GMT" + "text" : "[Champions: 85] Last updated at 2019-05-27 09:31:14 GMT" } } -- cgit