From c539574b35bc90a795269082980ebca7d8c1b81e Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sat, 24 Aug 2019 08:16:16 +0100 Subject: - Added solutions by Kevin Colyer. --- challenge-022/kevin-colyer/perl5/ch-1.pl | 22 ++ challenge-022/kevin-colyer/perl5/ch-2.pl | 132 ++++++++ stats/pwc-current.json | 181 +++++----- stats/pwc-language-breakdown-summary.json | 50 +-- stats/pwc-language-breakdown.json | 200 ++++++------ stats/pwc-leaders.json | 526 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 82 ++--- stats/pwc-summary-31-60.json | 42 +-- stats/pwc-summary-61-90.json | 40 +-- stats/pwc-summary-91-120.json | 40 +-- stats/pwc-summary.json | 48 +-- 11 files changed, 768 insertions(+), 595 deletions(-) create mode 100644 challenge-022/kevin-colyer/perl5/ch-1.pl create mode 100644 challenge-022/kevin-colyer/perl5/ch-2.pl diff --git a/challenge-022/kevin-colyer/perl5/ch-1.pl b/challenge-022/kevin-colyer/perl5/ch-1.pl new file mode 100644 index 0000000000..d99bbb9198 --- /dev/null +++ b/challenge-022/kevin-colyer/perl5/ch-1.pl @@ -0,0 +1,22 @@ +#!/usr/bin/perl6 +use v6; + +use Test; + +# 22.1 Write a script to print first 10 Sexy Prime Pairs. Sexy primes are prime numbers that differ from each other by 6. For example, the numbers 5 and 11 are both sexy primes, because 11 - 5 = 6. The term “sexy prime” is a pun stemming from the Latin word for six: sex. + +my @p = (2,3,*+2 ... ∞).grep: *.is-prime; + + +#| prints the num first sexy prime pairs +sub MAIN(Int :$pairs = 10) +{ + my Int $i=0; + for ^$pairs -> $n { + while not (@p[$i]+6).is-prime { + $i++; # skip one + } + say "{$n+1}th sexy prime pairs are: {@p[$i]} and {@p[$i]+6}"; + $i++; # chose next candidate... + } +} diff --git a/challenge-022/kevin-colyer/perl5/ch-2.pl b/challenge-022/kevin-colyer/perl5/ch-2.pl new file mode 100644 index 0000000000..0e9f9a2cfe --- /dev/null +++ b/challenge-022/kevin-colyer/perl5/ch-2.pl @@ -0,0 +1,132 @@ +#!/usr/bin/perl6 +use v6; + +use Test; + +# 22.2 Write a script to implement Lempel–Ziv–Welch (LZW) compression algorithm. The script should have method to encode/decode algorithm. The https://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Welch page explains the compression algorithm very nicely. + +# ASSUMPTIONS +# Dictionary is hard set to ASCII upper case +# 5 bits raising to 12 bits. No overflow checking if dict overflows! +# TODO - better dictionary, bit packing, dict overflowing... + +constant @sharedDict= '#', 'A' ... 'Z'; + +#| tests +sub MAIN( Bool :$debug=False) +{ + my $test="TOBEORNOTTOBEORTOBEORNOT#"; + + my $output= LZWencode($test,$debug); + my @decode= [20 => 5, 15 => 5, 2 => 5, 5 => 5, 15 => 5, 18 => 6, 14 => 6, 15 => 6, 20 => 6, 27 => 6, 29 => 6, 31 => 6, 36 => 6, 30 => 6, 32 => 6, 34 => 6, 0 => 6]; + is $output,@decode,"testing encode"; + + $output= LZWdecode(@decode,$debug); + is $output,$test,"testing decode"; + + # Roundtrip tests + is LZWdecode(LZWencode($test,False),False),$test,"roundtrip coder and decoder"; + my $bitsInput=$test.chars*8; + my $bitsOutput=LZWencode($test,False).reduce: {$^a.kv[1] + $^b.kv[1] }; + say "[$test]\n uncompressed $bitsInput / compressed $bitsOutput = " ~ floor((1-$bitsOutput/$bitsInput)*100) ~ "% of input"; + + $test="THEQUICKBROWNFOZJUMPEDOVERTHELAZYDOGITDIDITSEVERALTIMESWHATFUN#"; + is LZWdecode(LZWencode($test,False),False),$test,"roundtrip coder and decoder longer"; + $bitsInput=$test.chars*8; + $bitsOutput=LZWencode($test,False).reduce: {$^a.kv[1] + $^b.kv[1] }; + say "[$test]\n uncompressed $bitsInput / compressed $bitsOutput = " ~ floor((1-$bitsOutput/$bitsInput)*100) ~ "% of input"; + + say "Note: Dictionary initialised length {@sharedDict.elems}, {@sharedDict.elems*8} bits"; +} + +sub LZWencode($input is copy, $debug) { + # using encoder algorithm from wikipedia page + #1 Initialize the dictionary to contain all strings of length one. + my @dict= @sharedDict; + say @dict if $debug; + my $bits=5; # ranges to 12 + my $extendDict=2**$bits; + my @encbuf; + my $W; + + #2 Find the longest string W in the dictionary that matches the current input. + while $input.chars { + $W=""; + + # $i is index of current W + my $i=-1; + for (0..^@dict.elems).reverse -> $j { + if $input.starts-with(@dict[$j]) { + $W=@dict[$j]; + say "\nFound [$W] at index $j" if $debug; + $i=$j; + last; + } + } + die "[{$input.substr(0,1)}] is not in initial dictionary: Invalid input" if $i==-1; + #3 Emit the dictionary index for W to output and remove W from the input. + + say "#3 [$W] emitting $i using $bits bits" if $debug; + @encbuf.push( $i => +$bits ); + + # If found end code, finish... + last if $i==0; + + $input=$input.substr($W.chars,*); + + #4 Add W followed by the next symbol in the input to the dictionary. + say "adding to dict [$W"~$input.substr(0,1) ~"] at index {@dict.elems}" if $debug ; + @dict.push($W ~ $input.substr(0,1)) ; + + if @dict.elems>=$extendDict { + $extendDict*=2; + $bits++; + say "Increasing bits used to $bits" if $debug; + } + + #5 Go to Step 2. + } + return @encbuf; +} + +sub LZWdecode(@input, $debug) { + # similar to encoder but just decode using dictionary as look up. Take care to continue to build dictionary as we go. + # Keep count of input bit stream width for unpacking + + # Initialize the dictionary to contain all strings of length one. + my @dict= @sharedDict; + say @dict if $debug; + + my $bits=5; # ranges to 12 + my $extendDict=2**$bits; + my $decode; + my $W; + + while @input.elems { + + my $i= @input.shift.kv[0]; + # $i is index into dict. + $W=@dict[$i]; + say "\nFound [$W] at index $i" if $debug; + + # add W to decoded buffer + + say "#3 [$W] decodes $i " if $debug; + $decode~=$W; + + # If found end code, finish... + last if $i==0; + + #4 Add W followed by the FIRST LETTER OF the next symbol in the input to the dictionary. + my $add = $W ~ @dict[ @input[0].kv[0] ].substr( 0, 1 ); + say "adding to dict $add" if $debug ; + @dict.push($add) ; + + if @dict.elems>=$extendDict { + $extendDict*=2; + $bits++; + say "Increasing bits used to $bits" if $debug; + } + } + return $decode; +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 958ab72c10..ac27edf257 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,21 +1,85 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "legend" : { + "enabled" : 0 }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { "enabled" : 1, "format" : "{point.y}" - } + }, + "borderWidth" : 0 } }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1, + "headerFormat" : "{series.name}
" + }, "xAxis" : { "type" : "category" }, + "chart" : { + "type" : "column" + }, + "series" : [ + { + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 022", + "data" : [ + { + "y" : 1, + "name" : "Andrezgz", + "drilldown" : "Andrezgz" + }, + { + "y" : 2, + "name" : "Duane Powell", + "drilldown" : "Duane Powell" + }, + { + "drilldown" : "E. Choroba", + "name" : "E. Choroba", + "y" : 2 + }, + { + "name" : "Joelle Maslak", + "drilldown" : "Joelle Maslak", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Kevin Colyer", + "name" : "Kevin Colyer" + }, + { + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", + "y" : 5 + }, + { + "drilldown" : "Roger Bell West", + "name" : "Roger Bell West", + "y" : 3 + }, + { + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor", + "y" : 2 + }, + { + "drilldown" : "Steven Wilson", + "name" : "Steven Wilson", + "y" : 1 + }, + { + "y" : 5, + "name" : "Yet Ebreo", + "drilldown" : "Yet Ebreo" + } + ] + } + ], "drilldown" : { "series" : [ { @@ -29,18 +93,18 @@ ] }, { - "id" : "Duane Powell", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Duane Powell" + "name" : "Duane Powell", + "id" : "Duane Powell" }, { - "id" : "E. Choroba", "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ [ "Perl 5", @@ -50,6 +114,7 @@ }, { "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -59,12 +124,21 @@ "Perl 6", 1 ] + ] + }, + { + "data" : [ + [ + "Perl 5", + 2 + ] ], - "name" : "Joelle Maslak" + "id" : "Kevin Colyer", + "name" : "Kevin Colyer" }, { - "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -81,6 +155,7 @@ ] }, { + "id" : "Roger Bell West", "name" : "Roger Bell West", "data" : [ [ @@ -91,30 +166,30 @@ "Perl 6", 1 ] - ], - "id" : "Roger Bell West" + ] }, { - "id" : "Simon Proctor", - "name" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Simon Proctor", + "name" : "Simon Proctor" }, { - "id" : "Steven Wilson", "data" : [ [ "Perl 5", 1 ] ], + "id" : "Steven Wilson", "name" : "Steven Wilson" }, { + "id" : "Yet Ebreo", "name" : "Yet Ebreo", "data" : [ [ @@ -129,79 +204,19 @@ "Blog", 1 ] - ], - "id" : "Yet Ebreo" + ] } ] }, - "series" : [ - { - "colorByPoint" : 1, - "data" : [ - { - "drilldown" : "Andrezgz", - "name" : "Andrezgz", - "y" : 1 - }, - { - "drilldown" : "Duane Powell", - "name" : "Duane Powell", - "y" : 2 - }, - { - "y" : 2, - "name" : "E. Choroba", - "drilldown" : "E. Choroba" - }, - { - "y" : 2, - "name" : "Joelle Maslak", - "drilldown" : "Joelle Maslak" - }, - { - "y" : 5, - "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" - }, - { - "y" : 3, - "drilldown" : "Roger Bell West", - "name" : "Roger Bell West" - }, - { - "y" : 2, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "y" : 1, - "drilldown" : "Steven Wilson", - "name" : "Steven Wilson" - }, - { - "name" : "Yet Ebreo", - "drilldown" : "Yet Ebreo", - "y" : 5 - } - ], - "name" : "Perl Weekly Challenge - 022" - } - ], "title" : { "text" : "Perl Weekly Challenge - 022" }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : 0 - }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, "subtitle" : { - "text" : "[Champions: 9] Last updated at 2019-08-24 02:04:28 GMT" + "text" : "[Champions: 10] Last updated at 2019-08-24 07:08:05 GMT" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 145e45bfdb..fc22b073a5 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,19 +1,21 @@ { + "chart" : { + "type" : "column" + }, "series" : [ { "dataLabels" : { + "rotation" : -90, + "format" : "{point.y:.0f}", + "y" : 10, "style" : { "fontSize" : "13px", "fontFamily" : "Verdana, sans-serif" }, - "color" : "#FFFFFF", - "format" : "{point.y:.0f}", - "enabled" : "true", - "y" : 10, "align" : "right", - "rotation" : -90 + "enabled" : "true", + "color" : "#FFFFFF" }, - "name" : "Contributions", "data" : [ [ "Blog", @@ -21,43 +23,41 @@ ], [ "Perl 5", - 897 + 899 ], [ "Perl 6", 535 ] - ] + ], + "name" : "Contributions" } ], - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : "false" + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, - "subtitle" : { - "text" : "Last updated at 2019-08-24 02:04:37 GMT" - }, "yAxis" : { - "min" : 0, "title" : { "text" : null - } + }, + "min" : 0 + }, + "legend" : { + "enabled" : "false" + }, + "subtitle" : { + "text" : "Last updated at 2019-08-24 07:16:08 GMT" }, "xAxis" : { + "type" : "category", "labels" : { "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" } - }, - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" + } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 946f4610e6..29110a572f 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,33 +1,17 @@ { - "xAxis" : { - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, "series" : [ { - "colorByPoint" : "true", "name" : "Perl Weekly Challenge Languages", "data" : [ { - "drilldown" : "001", "y" : 123, + "drilldown" : "001", "name" : "#001" }, { - "y" : 104, + "name" : "#002", "drilldown" : "002", - "name" : "#002" + "y" : 104 }, { "name" : "#003", @@ -35,14 +19,14 @@ "y" : 66 }, { + "drilldown" : "004", "name" : "#004", - "y" : 84, - "drilldown" : "004" + "y" : 84 }, { - "name" : "#005", "y" : 66, - "drilldown" : "005" + "drilldown" : "005", + "name" : "#005" }, { "y" : 47, @@ -50,9 +34,9 @@ "name" : "#006" }, { + "drilldown" : "007", "name" : "#007", - "y" : 55, - "drilldown" : "007" + "y" : 55 }, { "y" : 68, @@ -60,96 +44,118 @@ "name" : "#008" }, { - "name" : "#009", "y" : 66, - "drilldown" : "009" + "drilldown" : "009", + "name" : "#009" }, { - "drilldown" : "010", "y" : 59, + "drilldown" : "010", "name" : "#010" }, { "drilldown" : "011", - "y" : 78, - "name" : "#011" + "name" : "#011", + "y" : 78 }, { "y" : 82, - "drilldown" : "012", - "name" : "#012" + "name" : "#012", + "drilldown" : "012" }, { - "name" : "#013", "drilldown" : "013", + "name" : "#013", "y" : 75 }, { - "name" : "#014", "y" : 95, - "drilldown" : "014" + "drilldown" : "014", + "name" : "#014" }, { "drilldown" : "015", - "y" : 91, - "name" : "#015" + "name" : "#015", + "y" : 91 }, { - "name" : "#016", "drilldown" : "016", + "name" : "#016", "y" : 65 }, { - "y" : 78, + "name" : "#017", "drilldown" : "017", - "name" : "#017" + "y" : 78 }, { "y" : 74, - "drilldown" : "018", - "name" : "#018" + "name" : "#018", + "drilldown" : "018" }, { + "drilldown" : "019", "name" : "#019", - "y" : 93, - "drilldown" : "019" + "y" : 93 }, { + "drilldown" : "020", "name" : "#020", - "y" : 95, - "drilldown" : "020" + "y" : 95 }, { "drilldown" : "021", - "y" : 64, - "name" : "#021" + "name" : "#021", + "y" : 64 }, { + "y" : 25, "drilldown" : "022", - "y" : 23, "name" : "#022" } - ] + ], + "colorByPoint" : "true" } ], - "legend" : { - "enabled" : "false" - }, "chart" : { "type" : "column" }, "tooltip" : { - "headerFormat" : "", "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true" + "followPointer" : "true", + "headerFormat" : "" + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "legend" : { + "enabled" : "false" }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-08-24 02:04:37 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-08-24 07:16:08 GMT" + }, + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } }, "drilldown" : { "series" : [ { "id" : "001", + "name" : "001", "data" : [ [ "Perl 5", @@ -163,8 +169,7 @@ "Blog", 10 ] - ], - "name" : "001" + ] }, { "name" : "002", @@ -185,7 +190,7 @@ "id" : "002" }, { - "name" : "003", + "id" : "003", "data" : [ [ "Perl 5", @@ -200,9 +205,11 @@ 8 ] ], - "id" : "003" + "name" : "003" }, { + "id" : "004", + "name" : "004", "data" : [ [ "Perl 5", @@ -216,11 +223,10 @@ "Blog", 9 ] - ], - "id" : "004", - "name" : "004" + ] }, { + "id" : "005", "data" : [ [ "Perl 5", @@ -235,10 +241,10 @@ 11 ] ], - "id" : "005", "name" : "005" }, { + "id" : "006", "name" : "006", "data" : [ [ @@ -253,11 +259,10 @@ "Blog", 6 ] - ], - "id" : "006" + ] }, { - "id" : "007", + "name" : "007", "data" : [ [ "Perl 5", @@ -272,9 +277,10 @@ 9 ] ], - "name" : "007" + "id" : "007" }, { + "id" : "008", "data" : [ [ "Perl 5", @@ -289,10 +295,10 @@ 10 ] ], - "id" : "008", "name" : "008" }, { + "id" : "009", "data" : [ [ "Perl 5", @@ -307,7 +313,6 @@ 12 ] ], - "id" : "009", "name" : "009" }, { @@ -330,6 +335,7 @@ }, { "id" : "011", + "name" : "011", "data" : [ [ "Perl 5", @@ -343,12 +349,10 @@ "Blog", 9 ] - ], - "name" : "011" + ] }, { "name" : "012", - "id" : "012", "data" : [ [ "Perl 5", @@ -362,9 +366,11 @@ "Blog", 10 ] - ] + ], + "id" : "012" }, { + "name" : "013", "data" : [ [ "Perl 5", @@ -379,10 +385,10 @@ 12 ] ], - "id" : "013", - "name" : "013" + "id" : "013" }, { + "id" : "014", "name" : "014", "data" : [ [ @@ -397,8 +403,7 @@ "Blog", 14 ] - ], - "id" : "014" + ] }, { "data" : [ @@ -415,11 +420,12 @@ 13 ] ], - "id" : "015", - "name" : "015" + "name" : "015", + "id" : "015" }, { "id" : "016", + "name" : "016", "data" : [ [ "Perl 5", @@ -433,11 +439,11 @@ "Blog", 11 ] - ], - "name" : "016" + ] }, { "id" : "017", + "name" : "017", "data" : [ [ "Perl 5", @@ -451,10 +457,10 @@ "Blog", 11 ] - ], - "name" : "017" + ] }, { + "id" : "018", "data" : [ [ "Perl 5", @@ -469,11 +475,9 @@ 12 ] ], - "id" : "018", "name" : "018" }, { - "name" : "019", "id" : "019", "data" : [ [ @@ -488,11 +492,10 @@ "Blog", 11 ] - ] + ], + "name" : "019" }, { - "name" : "020", - "id" : "020", "data" : [ [ "Perl 5", @@ -506,10 +509,11 @@ "Blog", 13 ] - ] + ], + "name" : "020", + "id" : "020" }, { - "name" : "021", "id" : "021", "data" : [ [ @@ -524,14 +528,14 @@ "Blog", 7 ] - ] + ], + "name" : "021" }, { - "id" : "022", "data" : [ [ "Perl 5", - 13 + 15 ], [ "Perl 6", @@ -542,13 +546,9 @@ 2 ] ], - "name" : "022" + "name" : "022", + "id" : "022" } ] - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index f3c0581a6f..2da20e304b 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,18 +1,16 @@ { "series" : [ { - "name" : "Perl Weekly Challenge Leaders", - "colorByPoint" : "true", "data" : [ { - "drilldown" : "Joelle Maslak", + "name" : "#1: Joelle Maslak", "y" : 232, - "name" : "#1: Joelle Maslak" + "drilldown" : "Joelle Maslak" }, { "name" : "#2: Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld", - "y" : 232 + "y" : 232, + "drilldown" : "Laurent Rosenfeld" }, { "drilldown" : "Jaldhar H. Vyas", @@ -20,9 +18,9 @@ "name" : "#3: Jaldhar H. Vyas" }, { - "name" : "#4: Ruben Westerberg", "y" : 156, - "drilldown" : "Ruben Westerberg" + "drilldown" : "Ruben Westerberg", + "name" : "#4: Ruben Westerberg" }, { "y" : 136, @@ -30,9 +28,9 @@ "name" : "#5: Adam Russell" }, { - "y" : 134, + "name" : "#6: Athanasius", "drilldown" : "Athanasius", - "name" : "#6: Athanasius" + "y" : 134 }, { "name" : "#7: Arne Sommer", @@ -40,14 +38,14 @@ "y" : 118 }, { + "name" : "#8: Kian-Meng Ang", "y" : 118, - "drilldown" : "Kian-Meng Ang", - "name" : "#8: Kian-Meng Ang" + "drilldown" : "Kian-Meng Ang" }, { "name" : "#9: E. Choroba", - "y" : 106, - "drilldown" : "E. Choroba" + "drilldown" : "E. Choroba", + "y" : 106 }, { "y" : 94, @@ -65,9 +63,9 @@ "name" : "#12: Dave Jacoby" }, { - "name" : "#13: Andrezgz", "drilldown" : "Andrezgz", - "y" : 82 + "y" : 82, + "name" : "#13: Andrezgz" }, { "y" : 80, @@ -75,54 +73,54 @@ "name" : "#14: Feng Chang" }, { - "drilldown" : "Daniel Mantovani", "y" : 72, + "drilldown" : "Daniel Mantovani", "name" : "#15: Daniel Mantovani" }, { - "name" : "#16: Duncan C. White", + "drilldown" : "Duncan C. White", "y" : 72, - "drilldown" : "Duncan C. White" + "name" : "#16: Duncan C. White" }, { + "name" : "#17: Gustavo Chaves", "drilldown" : "Gustavo Chaves", - "y" : 72, - "name" : "#17: Gustavo Chaves" + "y" : 72 }, { - "name" : "#18: Steven Wilson", "y" : 70, - "drilldown" : "Steven Wilson" + "drilldown" : "Steven Wilson", + "name" : "#18: Steven Wilson" }, { + "name" : "#19: Yozen Hernandez", "y" : 70, - "drilldown" : "Yozen Hernandez", - "name" : "#19: Yozen Hernandez" + "drilldown" : "Yozen Hernandez" }, { - "drilldown" : "Roger Bell West", "y" : 58, + "drilldown" : "Roger Bell West", "name" : "#20: Roger Bell West" }, { "name" : "#21: Jo Christian Oterhals", - "y" : 56, - "drilldown" : "Jo Christian Oterhals" + "drilldown" : "Jo Christian Oterhals", + "y" : 56 }, { - "y" : 46, + "name" : "#22: Guillermo Ramos", "drilldown" : "Guillermo Ramos", - "name" : "#22: Guillermo Ramos" + "y" : 46 }, { - "y" : 46, "drilldown" : "Mark Senn", + "y" : 46, "name" : "#23: Mark Senn" }, { - "name" : "#24: Dr James A. Smith", "drilldown" : "Dr James A. Smith", - "y" : 44 + "y" : 44, + "name" : "#24: Dr James A. Smith" }, { "y" : 44, @@ -130,24 +128,24 @@ "name" : "#25: Ozzy" }, { - "name" : "#26: Veesh Goldman", - "y" : 42, - "drilldown" : "Veesh Goldman" + "name" : "#26: Kevin Colyer", + "drilldown" : "Kevin Colyer", + "y" : 42 }, { - "name" : "#27: Kevin Colyer", - "drilldown" : "Kevin Colyer", - "y" : 38 + "drilldown" : "Veesh Goldman", + "y" : 42, + "name" : "#27: Veesh Goldman" }, { "name" : "#28: Lubos Kolouch", - "y" : 38, - "drilldown" : "Lubos Kolouch" + "drilldown" : "Lubos Kolouch", + "y" : 38 }, { - "name" : "#29: Duane Powell", "y" : 34, - "drilldown" : "Duane Powell" + "drilldown" : "Duane Powell", + "name" : "#29: Duane Powell" }, { "name" : "#30: Nick Logan", @@ -155,19 +153,19 @@ "drilldown" : "Nick Logan" }, { - "name" : "#31: Noud", "drilldown" : "Noud", - "y" : 32 + "y" : 32, + "name" : "#31: Noud" }, { - "name" : "#32: Lars Balker", + "y" : 28, "drilldown" : "Lars Balker", - "y" : 28 + "name" : "#32: Lars Balker" }, { - "name" : "#33: Jaime Corchado", "drilldown" : "Jaime Corchado", - "y" : 24 + "y" : 24, + "name" : "#33: Jaime Corchado" }, { "name" : "#34: Maxim Nechaev", @@ -175,19 +173,19 @@ "drilldown" : "Maxim Nechaev" }, { - "name" : "#35: Randy Lauen", + "y" : 24, "drilldown" : "Randy Lauen", - "y" : 24 + "name" : "#35: Randy Lauen" }, { - "name" : "#36: Alicia Bielsa", "drilldown" : "Alicia Bielsa", - "y" : 22 + "y" : 22, + "name" : "#36: Alicia Bielsa" }, { "name" : "#37: Doug Schrag", - "y" : 20, - "drilldown" : "Doug Schrag" + "drilldown" : "Doug Schrag", + "y" : 20 }, { "name" : "#38: Neil Bowers", @@ -195,34 +193,34 @@ "y" : 18 }, { - "y" : 16, "drilldown" : "Dave Cross", + "y" : 16, "name" : "#39: Dave Cross" }, { - "name" : "#40: Pete Houston", "drilldown" : "Pete Houston", - "y" : 16 + "y" : 16, + "name" : "#40: Pete Houston" }, { - "name" : "#41: Robert Gratza", + "y" : 16, "drilldown" : "Robert Gratza", - "y" : 16 + "name" : "#41: Robert Gratza" }, { - "drilldown" : "John Barrett", + "name" : "#42: John Barrett", "y" : 14, - "name" : "#42: John Barrett" + "drilldown" : "John Barrett" }, { - "y" : 14, + "name" : "#43: Khalid", "drilldown" : "Khalid", - "name" : "#43: Khalid" + "y" : 14 }, { - "drilldown" : "Walt Mankowski", + "name" : "#44: Walt Mankowski", "y" : 14, - "name" : "#44: Walt Mankowski" + "drilldown" : "Walt Mankowski" }, { "drilldown" : "Aaron Sherman", @@ -230,14 +228,14 @@ "name" : "#45: Aaron Sherman" }, { - "name" : "#46: Donald Hunter", "y" : 12, - "drilldown" : "Donald Hunter" + "drilldown" : "Donald Hunter", + "name" : "#46: Donald Hunter" }, { - "name" : "#47: Kivanc Yazan", + "drilldown" : "Kivanc Yazan", "y" : 12, - "drilldown" : "Kivanc Yazan" + "name" : "#47: Kivanc Yazan" }, { "y" : 12, @@ -251,87 +249,69 @@ }, { "name" : "#50: Sergio Iglesias", - "drilldown" : "Sergio Iglesias", - "y" : 12 + "y" : 12, + "drilldown" : "Sergio Iglesias" } - ] + ], + "name" : "Perl Weekly Challenge Leaders", + "colorByPoint" : "true" } ], - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-08-24 02:04:32 GMT" - }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "" - }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "legend" : { - "enabled" : "false" - }, - "xAxis" : { - "type" : "category" - }, - "yAxis" : { - "title" : { - "text" : "Total Score" + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 } }, "title" : { "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-08-24 07:16:05 GMT" + }, "drilldown" : { "series" : [ { - "name" : "Joelle Maslak", "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ [ - "Perl 6", - 56 + "Blog", + 4 ], [ "Perl 5", 56 ], [ - "Blog", - 4 + "Perl 6", + 56 ] ] }, { + "name" : "Laurent Rosenfeld", "data" : [ [ "Blog", 29 ], - [ - "Perl 6", - 43 - ], [ "Perl 5", 44 + ], + [ + "Perl 6", + 43 ] ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" + "id" : "Laurent Rosenfeld" }, { "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", "data" : [ [ "Blog", @@ -345,21 +325,22 @@ "Perl 5", 42 ] - ] + ], + "name" : "Jaldhar H. Vyas" }, { - "id" : "Ruben Westerberg", "name" : "Ruben Westerberg", "data" : [ [ - "Perl 5", + "Perl 6", 39 ], [ - "Perl 6", + "Perl 5", 39 ] - ] + ], + "id" : "Ruben Westerberg" }, { "id" : "Adam Russell", @@ -383,14 +364,14 @@ "id" : "Athanasius", "name" : "Athanasius", "data" : [ - [ - "Perl 5", - 44 - ], [ "Perl 6", 20 ], + [ + "Perl 5", + 44 + ], [ "Blog", 3 @@ -399,21 +380,19 @@ }, { "data" : [ - [ - "Perl 6", - 39 - ], [ "Blog", 20 + ], + [ + "Perl 6", + 39 ] ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "id" : "Arne Sommer" }, { - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang", "data" : [ [ "Perl 5", @@ -423,24 +402,31 @@ "Blog", 25 ] - ] + ], + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang" }, { + "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ - [ - "Blog", - 17 - ], [ "Perl 5", 36 + ], + [ + "Blog", + 17 ] - ], - "name" : "E. Choroba", - "id" : "E. Choroba" + ] }, { + "id" : "Simon Proctor", "data" : [ + [ + "Blog", + 7 + ], [ "Perl 5", 4 @@ -448,17 +434,11 @@ [ "Perl 6", 36 - ], - [ - "Blog", - 7 ] ], - "id" : "Simon Proctor", "name" : "Simon Proctor" }, { - "name" : "Francis Whittle", "id" : "Francis Whittle", "data" : [ [ @@ -469,25 +449,26 @@ "Blog", 9 ] - ] + ], + "name" : "Francis Whittle" }, { "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ [ - "Blog", - 18 + "Perl 6", + 1 ], [ "Perl 5", 26 ], [ - "Perl 6", - 1 + "Blog", + 18 ] - ] + ], + "id" : "Dave Jacoby" }, { "data" : [ @@ -496,11 +477,10 @@ 41 ] ], - "id" : "Andrezgz", - "name" : "Andrezgz" + "name" : "Andrezgz", + "id" : "Andrezgz" }, { - "id" : "Feng Chang", "name" : "Feng Chang", "data" : [ [ @@ -511,17 +491,18 @@ "Perl 6", 21 ] - ] + ], + "id" : "Feng Chang" }, { - "id" : "Daniel Mantovani", "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", 36 ] - ] + ], + "id" : "Daniel Mantovani" }, { "data" : [ @@ -535,17 +516,17 @@ }, { "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves", "data" : [ - [ - "Perl 5", - 32 - ], [ "Blog", 4 + ], + [ + "Perl 5", + 32 ] - ] + ], + "name" : "Gustavo Chaves" }, { "data" : [ @@ -562,27 +543,21 @@ "id" : "Steven Wilson" }, { + "name" : "Yozen Hernandez", "data" : [ - [ - "Blog", - 14 - ], [ "Perl 5", 21 + ], + [ + "Blog", + 14 ] ], - "id" : "Yozen Hernandez", - "name" : "Yozen Hernandez" + "id" : "Yozen Hernandez" }, { - "name" : "Roger Bell West", - "id" : "Roger Bell West", "data" : [ - [ - "Blog", - 5 - ], [ "Perl 6", 6 @@ -590,74 +565,94 @@ [ "Perl 5", 18 + ], + [ + "Blog", + 5 ] - ] + ], + "name" : "Roger Bell West", + "id" : "Roger Bell West" }, { - "name" : "Jo Christian Oterhals", - "id" : "Jo Christian Oterhals", "data" : [ [ - "Blog", - 7 + "Perl 6", + 15 ], [ "Perl 5", 6 ], [ - "Perl 6", - 15 + "Blog", + 7 ] - ] + ], + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals" }, { + "id" : "Guillermo Ramos", "data" : [ [ "Perl 5", 23 ] ], - "name" : "Guillermo Ramos", - "id" : "Guillermo Ramos" + "name" : "Guillermo Ramos" }, { + "name" : "Mark Senn", "data" : [ - [ - "Blog", - 7 - ], [ "Perl 6", 16 + ], + [ + "Blog", + 7 ] ], - "name" : "Mark Senn", "id" : "Mark Senn" }, { - "name" : "Dr James A. Smith", "id" : "Dr James A. Smith", "data" : [ - [ - "Perl 5", - 12 - ], [ "Perl 6", 10 + ], + [ + "Perl 5", + 12 ] - ] + ], + "name" : "Dr James A. Smith" }, { "id" : "Ozzy", - "name" : "Ozzy", "data" : [ [ "Perl 6", 22 ] - ] + ], + "name" : "Ozzy" + }, + { + "id" : "Kevin Colyer", + "data" : [ + [ + "Perl 6", + 19 + ], + [ + "Perl 5", + 2 + ] + ], + "name" : "Kevin Colyer" }, { "data" : [ @@ -678,24 +673,14 @@ "id" : "Veesh Goldman" }, { - "id" : "Kevin Colyer", - "name" : "Kevin Colyer", - "data" : [ - [ - "Perl 6", - 19 - ] - ] - }, - { + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch", "data" : [ [ "Perl 5", 19 ] - ], - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch" + ] }, { "data" : [ @@ -704,8 +689,8 @@ 17 ] ], - "id" : "Duane Powell", - "name" : "Duane Powell" + "name" : "Duane Powell", + "id" : "Duane Powell" }, { "id" : "Nick Logan", @@ -722,52 +707,52 @@ ] }, { - "name" : "Noud", "id" : "Noud", "data" : [ [ "Perl 6", 16 ] - ] + ], + "name" : "Noud" }, { + "id" : "Lars Balker", "data" : [ - [ - "Perl 5", - 10 - ], [ "Perl 6", 4 + ], + [ + "Perl 5", + 10 ] ], - "id" : "Lars Balker", "name" : "Lars Balker" }, { "name" : "Jaime Corchado", - "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 12 ] - ] + ], + "id" : "Jaime Corchado" }, { + "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] ], - "name" : "Maxim Nechaev", - "id" : "Maxim Nechaev" + "name" : "Maxim Nechaev" }, { - "name" : "Randy Lauen", "id" : "Randy Lauen", + "name" : "Randy Lauen", "data" : [ [ "Perl 5", @@ -780,64 +765,66 @@ ] }, { + "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] ], - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa" + "name" : "Alicia Bielsa" }, { + "name" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] ], - "id" : "Doug Schrag", - "name" : "Doug Schrag" + "id" : "Doug Schrag" }, { + "id" : "Neil Bowers", "data" : [ - [ - "Perl 5", - 6 - ], [ "Blog", 3 + ], + [ + "Perl 5", + 6 ] ], - "id" : "Neil Bowers", "name" : "Neil Bowers" }, { + "name" : "Dave Cross", "data" : [ - [ - "Perl 5", - 6 - ], [ "Blog", 2 + ], + [ + "Perl 5", + 6 ] ], - "name" : "Dave Cross", "id" : "Dave Cross" }, { + "name" : "Pete Houston", "data" : [ [ "Perl 5", 8 ] ], - "id" : "Pete Houston", - "name" : "Pete Houston" + "id" : "Pete Houston" }, { + "id" : "Robert Gratza", + "name" : "Robert Gratza", "data" : [ [ "Perl 5", @@ -847,51 +834,49 @@ "Perl 6", 6 ] - ], - "name" : "Robert Gratza", - "id" : "Robert Gratza" + ] }, { + "name" : "John Barrett", "data" : [ [ "Perl 5", 7 ] ], - "name" : "John Barrett", "id" : "John Barrett" }, { "id" : "Khalid", - "name" : "Khalid", "data" : [ [ "Blog", 1 ], - [ - "Perl 6", - 2 - ], [ "Perl 5", 4 + ], + [ + "Perl 6", + 2 ] - ] + ], + "name" : "Khalid" }, { + "name" : "Walt Mankowski", "data" : [ [ "Perl 5", 7 ] ], - "id" : "Walt Mankowski", - "name" : "Walt Mankowski" + "id" : "Walt Mankowski" }, { - "name" : "Aaron Sherman", "id" : "Aaron Sherman", + "name" : "Aaron Sherman", "data" : [ [ "Perl 6", @@ -900,6 +885,8 @@ ] }, { + "id" : "Donald Hunter", + "name" : "Donald Hunter", "data" : [ [ "Perl 6", @@ -909,31 +896,30 @@ "Blog", 3 ] - ], - "id" : "Donald Hunter", - "name" : "Donald Hunter" + ] }, { + "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] ], - "id" : "Kivanc Yazan", - "name" : "Kivanc Yazan" + "id" : "Kivanc Yazan" }, { + "name" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] ], - "id" : "Maxim Kolodyazhny", - "name" : "Maxim Kolodyazhny" + "id" : "Maxim Kolodyazhny" }, { + "name" : "Philippe Bruhat", "data" : [ [ "Perl 5", @@ -944,8 +930,7 @@ 2 ] ], - "id" : "Philippe Bruhat", - "name" : "Philippe Bruhat" + "id" : "Philippe Bruhat" }, { "data" : [ @@ -958,5 +943,24 @@ "id" : "Sergio Iglesias" } ] + }, + "xAxis" : { + "type" : "category" + }, + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index c6eb4a8c91..59699a2d32 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -2,21 +2,55 @@ "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "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", + "Doug Schrag", + "Duane Powell", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Feng Chang" + ] }, "chart" : { "type" : "column" }, "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-08-24 02:04:28 GMT" + "text" : "[Champions: 30] Last updated at 2019-08-24 07:08:05 GMT" }, "tooltip" : { "shared" : 1, "pointFormat" : "{series.name}: {point.y}
" }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, "series" : [ { "data" : [ @@ -54,7 +88,6 @@ "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 6, 0, @@ -86,7 +119,8 @@ 0, 0, 21 - ] + ], + "name" : "Perl 6" }, { "data" : [ @@ -124,40 +158,6 @@ "name" : "Blog" } ], - "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", - "Duane Powell", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Feng Chang" - ] - }, "yAxis" : { "title" : { "text" : "" diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 342601a810..80e318b99d 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -2,19 +2,6 @@ "chart" : { "type" : "column" }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-08-24 02:04:28 GMT" - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, "xAxis" : { "categories" : [ "Finley", @@ -49,9 +36,18 @@ "Mano Chandar" ] }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-08-24 07:08:05 GMT" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 0, @@ -73,7 +69,7 @@ 56, 7, 2, - 0, + 2, 4, 34, 0, @@ -83,7 +79,8 @@ 19, 1, 0 - ] + ], + "name" : "Perl 5" }, { "data" : [ @@ -121,7 +118,6 @@ "name" : "Perl 6" }, { - "name" : "Blog", "data" : [ 0, 9, @@ -153,15 +149,19 @@ 0, 0, 0 - ] + ], + "name" : "Blog" } ], - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, "plotOptions" : { "column" : { "stacking" : "percent" } + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } } } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index 668df41196..daf4a10663 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,22 +1,7 @@ { - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, "xAxis" : { "categories" : [ "Mark Anderson", @@ -51,6 +36,21 @@ "Ruben Westerberg" ] }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-08-24 07:08:05 GMT" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, "series" : [ { "data" : [ @@ -158,10 +158,10 @@ "name" : "Blog" } ], - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-08-24 02:04:28 GMT" + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 } } diff --git a/stats/pwc-summary-91-120.json b/stats/pwc-summary-91-120.json index cf99c01236..7522f27b87 100644 --- a/stats/pwc-summary-91-120.json +++ b/stats/pwc-summary-91-120.json @@ -1,28 +1,13 @@ { - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" }, "plotOptions" : { "column" : { "stacking" : "percent" } }, - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "[Champions: 20] Last updated at 2019-08-24 02:04:28 GMT" - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, "series" : [ { "data" : [ @@ -50,6 +35,7 @@ "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 3, 0, @@ -71,8 +57,7 @@ 2, 2, 0 - ], - "name" : "Perl 6" + ] }, { "name" : "Blog", @@ -100,6 +85,15 @@ ] } ], + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, "xAxis" : { "categories" : [ "Sean Meininger", @@ -123,5 +117,11 @@ "Yet Ebreo", "Yozen Hernandez" ] + }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "[Champions: 20] Last updated at 2019-08-24 07:08:05 GMT" } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index c9e2d976b5..0e15f0851f 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,22 +1,4 @@