From 0bcaecb707c2f9ebe12a1666d616b896ac5a11dd Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 23 Jul 2019 15:14:56 +0100 Subject: - Added solutions by Duane Powell. --- challenge-018/duane-powell/perl5/ch-1.pl | 123 ++++ challenge-018/duane-powell/perl5/ch-2.pl | 203 +++++++ stats/pwc-current.json | 91 +-- stats/pwc-language-breakdown-summary.json | 48 +- stats/pwc-language-breakdown.json | 180 +++--- stats/pwc-leaders.json | 910 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 118 ++-- stats/pwc-summary-31-60.json | 36 +- stats/pwc-summary-61-90.json | 32 +- stats/pwc-summary-91-120.json | 46 +- stats/pwc-summary.json | 244 ++++---- 11 files changed, 1186 insertions(+), 845 deletions(-) create mode 100644 challenge-018/duane-powell/perl5/ch-1.pl create mode 100644 challenge-018/duane-powell/perl5/ch-2.pl diff --git a/challenge-018/duane-powell/perl5/ch-1.pl b/challenge-018/duane-powell/perl5/ch-1.pl new file mode 100644 index 0000000000..ed4443dd1b --- /dev/null +++ b/challenge-018/duane-powell/perl5/ch-1.pl @@ -0,0 +1,123 @@ +#!/usr/bin/perl +use Modern::Perl; + +# Write a script that takes 2 or more strings as command line parameters and print the longest common substring. +# For example, the longest common substring of the strings “ABABC”, “BABCA” and “ABCBA” is string “ABC” of length 3. +# Other common substrings are “A”, “AB”, “B”, “BA”, “BC” and “C” + +sub common_substr_find { + my @str = @_; + # The plan is to chunk our strings from largest to smallest + # for example: hello,hell,ello,hel,ell,llo,he,el,ll,lo,h,e,l,l,o + # Then use the chunks as hash keys to count occurances. + # We stop looking at smaller chunks if a bigger match is found. + + my $out = ""; + my %count; + my %chunk; + my $longest_match = 0; + foreach my $str (@str) { + my $i = 0; + my $len = length($str); + my $offset = $len; + while ($offset > 0) { + while (($i + $offset) <= $len and ($i + $offset) >= $longest_match) { + my $chunk = substr($str,$i,$offset); + unless (defined $chunk{$str}{$chunk}) { + # don't match chunks within the same str + $chunk{$str}{$chunk} = 1; + $count{$chunk}++; + } + $longest_match = length($chunk) if ($count{$chunk} > 1 and length($chunk) > $longest_match); + $i++; + } + $i = 0; + $offset--; + } + } + + foreach (keys %count) { + if ($count{$_} > 1) { + $out .= "$_\n" if (length($_) == $longest_match); + } + } + + say "strings are: " . join(",",@str); + if ($out) { + $out = "longest matching substrings are:\n" . $out; + } else { + $out = "no substrings match\n"; + } + say $out; +} + +if (@ARGV) { + common_substr_find(@ARGV); + exit; +} + +my %testdata = ( + 1 => "hello world", + 2 => "polar bears love snow", + 3 => "goodbye goodyear goody", + 4 => "abc xzy", + 5 => "duane powell xxxxduanexxxpowellxxx", + 6 => "abba bbaa aaaa bbbb baba abab", + 7 => "ALL ENGLISH WORDS ... words.txt", +); + +foreach my $data (sort(keys %testdata)) { + my @str; + if ($data < 7) { + @str = split(" ",$testdata{$data}); + common_substr_find(@str); + } else { + open(my $fh, "<", "words.txt") or die "Can't open < words.txt: $!"; + while (my $word = <$fh>) { + chomp $word; + push @str, $word; + } + common_substr_find(@str); + } +} + +__END__ + +./ch1.pl foo bar fubar +strings are: foo,bar,fubar +longest matching substrings are: +bar + +./ch1.pl +strings are: hello,world +longest matching substrings are: +o +l + +strings are: polar,bears,love,snow +longest matching substrings are: +ar + +strings are: goodbye,goodyear,goody +longest matching substrings are: +goody + +strings are: abc,xzy +no substrings match + +strings are: duane,powell,xxxxduanexxxpowellxxx +longest matching substrings are: +powell + +strings are: abba,bbaa,aaaa,bbbb,baba,abab +longest matching substrings are: +bba +aba +bab + +strings are: ... ALL ENGLISH WORDS ... +longest matching substrings are: +electroencephalographical +antidisestablishmentarian +microspectrophotometrical + diff --git a/challenge-018/duane-powell/perl5/ch-2.pl b/challenge-018/duane-powell/perl5/ch-2.pl new file mode 100644 index 0000000000..9eb7d0cf3f --- /dev/null +++ b/challenge-018/duane-powell/perl5/ch-2.pl @@ -0,0 +1,203 @@ +#!/usr/bin/perl +use Modern::Perl; + +# Write a script to implement Priority Queue. It is like regular queue except each element has a priority associated with it. +# In a priority queue, an element with high priority is served before an element with low priority. + +my $p = PriorityQueue->new(); +$p->pull_highest_priority_element(); +$p->insert_with_priority(200,"milkshake!"); +$p->insert_with_priority(300,"pizza?"); +$p->insert_with_priority(500,"cheeseburgers!"); +sleep 1; # sleep a second so nodes have different date values +$p->insert_with_priority(250,"steak and eggs!"); +$p->queue_print(); +$p->pull_highest_priority_element(); +$p->insert_with_priority(350,"hotdogs?"); +$p->insert_with_priority(550,"pancakces and syrup!"); +$p->insert_with_priority(650,"donuts!"); +$p->insert_with_priority(600,"cookies!"); +$p->queue_print(); +$p->pull_highest_priority_element(); +$p->queue_print(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +sleep 1; # sleep a second so nodes have different date values +$p->insert_with_priority(200,"dr peppers!"); +$p->insert_with_priority(300,"pizza?"); +$p->insert_with_priority(500,"cheeseburgers!"); +$p->insert_with_priority(250,"steak and eggs!"); +$p->insert_with_priority(350,"hotdogs?"); +$p->insert_with_priority(550,"pancakces and syrup!"); +$p->queue_print(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->queue_print(); +sleep 1; # sleep a second so nodes have different date values +$p->insert_with_priority(350,"hotdogs?"); +$p->insert_with_priority(550,"pancakces and syrup!"); +$p->queue_print(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->pull_highest_priority_element(); +$p->queue_print(); +exit; + +package PriorityQueue; +sub new { + my $class = shift; + # Simple class to represent a priority queue. + # The queue is made of nested hash refs, linked by _next + # _next=>{ ..., _next=>{ ..., _next=>undef}} + my $self = { + _next => undef, # undef signals empty queue + }; + return bless $self, $class; +} + +sub is_empty { + my $self = shift; + return not defined $self->{_next}; +} + +sub insert_with_priority { + my $self = shift; + + # init new node + my $priority = shift; + my $data = shift; + my $i = { + priority => $priority || 100, + data => $data, + date => time, + _next => undef, # undef signals end of queue + }; + + # empty queue, insert first node and return + if ($self->is_empty()) { + $self->{_next} = $i; + return; + } + + # iterate over queue nodes and insert $i where it belongs + my $here = $self; + my $n = $self->{_next}; + while ($n) { + if ($n->{priority} >= $i->{priority}) { + if (defined $n->{_next}) { + # iterate + $here = $n; + $n = $n->{_next}; + } else { + # we're at the end of queue + $n->{_next} = $i; + return; + } + } else { + # insert $i here + $i->{_next} = $here->{_next}; + $here->{_next} = $i; + return; + } + } +} + +sub pull_highest_priority_element { + my $self = shift; + if ($self->is_empty()) { + say "nothing to pop, queue is empty."; + return; + } else { + my $n = $self->{_next}; + $self->{_next} = $n->{_next}; + say "popping $n->{priority} $n->{date} $n->{data}"; + return $n; + } +} + +sub queue_print { + my $self = shift; + my $n = $self->{_next}; + my $depth = 0; + say "queue print:"; + while ($n) { + my $space = (' ' x $depth); + say "$space $n->{priority} $n->{date} $n->{data}"; + $n = $n->{_next}; + $depth++; + } +} + + +1; + +__END__ + +./ch2.pl +nothing to pop, queue is empty. +queue print: + 500 1563884736 cheeseburgers! + 300 1563884736 pizza? + 250 1563884737 steak and eggs! + 200 1563884736 milkshake! +popping 500 1563884736 cheeseburgers! +queue print: + 650 1563884737 donuts! + 600 1563884737 cookies! + 550 1563884737 pancakces and syrup! + 350 1563884737 hotdogs? + 300 1563884736 pizza? + 250 1563884737 steak and eggs! + 200 1563884736 milkshake! +popping 650 1563884737 donuts! +queue print: + 600 1563884737 cookies! + 550 1563884737 pancakces and syrup! + 350 1563884737 hotdogs? + 300 1563884736 pizza? + 250 1563884737 steak and eggs! + 200 1563884736 milkshake! +popping 600 1563884737 cookies! +popping 550 1563884737 pancakces and syrup! +queue print: + 550 1563884738 pancakces and syrup! + 500 1563884738 cheeseburgers! + 350 1563884737 hotdogs? + 350 1563884738 hotdogs? + 300 1563884736 pizza? + 300 1563884738 pizza? + 250 1563884737 steak and eggs! + 250 1563884738 steak and eggs! + 200 1563884736 milkshake! + 200 1563884738 dr peppers! +popping 550 1563884738 pancakces and syrup! +popping 500 1563884738 cheeseburgers! +popping 350 1563884737 hotdogs? +popping 350 1563884738 hotdogs? +popping 300 1563884736 pizza? +popping 300 1563884738 pizza? +popping 250 1563884737 steak and eggs! +popping 250 1563884738 steak and eggs! +queue print: + 200 1563884736 milkshake! + 200 1563884738 dr peppers! +queue print: + 550 1563884739 pancakces and syrup! + 350 1563884739 hotdogs? + 200 1563884736 milkshake! + 200 1563884738 dr peppers! +popping 550 1563884739 pancakces and syrup! +popping 350 1563884739 hotdogs? +popping 200 1563884736 milkshake! +popping 200 1563884738 dr peppers! +nothing to pop, queue is empty. +queue print: + diff --git a/stats/pwc-current.json b/stats/pwc-current.json index e685e1b13f..a3389555b3 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,34 +1,15 @@ { - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "chart" : { + "type" : "column" }, "legend" : { "enabled" : 0 }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 - }, - "title" : { - "text" : "Perl Weekly Challenge - 018" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "drilldown" : { "series" : [ { - "id" : "Roger Bell West", - "name" : "Roger Bell West", + "id" : "Duane Powell", + "name" : "Duane Powell", "data" : [ [ "Perl 5", @@ -37,42 +18,76 @@ ] }, { + "name" : "Roger Bell West", "data" : [ [ - "Perl 6", + "Perl 5", 2 ] ], + "id" : "Roger Bell West" + }, + { "id" : "Simon Proctor", - "name" : "Simon Proctor" + "name" : "Simon Proctor", + "data" : [ + [ + "Perl 6", + 2 + ] + ] } ] }, + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "title" : { + "text" : "Perl Weekly Challenge - 018" + }, "subtitle" : { - "text" : "[Champions: 2] Last updated at 2019-07-22 13:57:16 GMT" + "text" : "[Champions: 3] Last updated at 2019-07-23 14:14:43 GMT" }, "series" : [ { - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 018", "data" : [ { - "drilldown" : "Roger Bell West", + "name" : "Duane Powell", "y" : 2, - "name" : "Roger Bell West" + "drilldown" : "Duane Powell" }, { "y" : 2, + "drilldown" : "Roger Bell West", + "name" : "Roger Bell West" + }, + { "name" : "Simon Proctor", + "y" : 2, "drilldown" : "Simon Proctor" } - ] + ], + "name" : "Perl Weekly Challenge - 018", + "colorByPoint" : 1 } - ], - "chart" : { - "type" : "column" - }, - "xAxis" : { - "type" : "category" - } + ] } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 0ed26dab93..252f513082 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,12 +1,10 @@ { "subtitle" : { - "text" : "Last updated at 2019-07-22 13:57:23 GMT" - }, - "chart" : { - "type" : "column" + "text" : "Last updated at 2019-07-23 14:14:51 GMT" }, "series" : [ { + "name" : "Contributions", "data" : [ [ "Blog", @@ -14,33 +12,44 @@ ], [ "Perl 5", - 719 + 721 ], [ "Perl 6", 413 ] ], - "name" : "Contributions", "dataLabels" : { - "rotation" : -90, - "color" : "#FFFFFF", - "align" : "right", - "y" : 10, + "enabled" : "true", "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" }, - "enabled" : "true", - "format" : "{point.y:.0f}" + "y" : 10, + "color" : "#FFFFFF", + "format" : "{point.y:.0f}", + "align" : "right", + "rotation" : -90 } } ], "yAxis" : { + "min" : 0, "title" : { "text" : null + } + }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } }, - "min" : 0 + "type" : "category" }, "tooltip" : { "pointFormat" : "{point.y:.0f}" @@ -48,15 +57,6 @@ "legend" : { "enabled" : "false" }, - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - } - }, "title" : { "text" : "Perl Weekly Challenge Contributions - 2019" } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 22d804b35d..dfc1bd4b0a 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,17 +1,10 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-22 13:57:23 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-23 14:14:51 GMT" }, "series" : [ { + "name" : "Perl Weekly Challenge Languages", "data" : [ { "drilldown" : "001", @@ -20,48 +13,48 @@ }, { "name" : "#002", - "y" : 104, - "drilldown" : "002" + "drilldown" : "002", + "y" : 104 }, { + "y" : 66, "drilldown" : "003", - "name" : "#003", - "y" : 66 + "name" : "#003" }, { - "name" : "#004", "y" : 84, - "drilldown" : "004" + "drilldown" : "004", + "name" : "#004" }, { - "name" : "#005", "y" : 66, + "name" : "#005", "drilldown" : "005" }, { + "drilldown" : "006", "name" : "#006", - "y" : 47, - "drilldown" : "006" + "y" : 47 }, { + "name" : "#007", "drilldown" : "007", - "y" : 54, - "name" : "#007" + "y" : 54 }, { "name" : "#008", - "y" : 67, - "drilldown" : "008" + "drilldown" : "008", + "y" : 67 }, { - "y" : 65, "name" : "#009", - "drilldown" : "009" + "drilldown" : "009", + "y" : 65 }, { - "y" : 58, + "drilldown" : "010", "name" : "#010", - "drilldown" : "010" + "y" : 58 }, { "y" : 77, @@ -69,9 +62,9 @@ "drilldown" : "011" }, { - "y" : 81, "name" : "#012", - "drilldown" : "012" + "drilldown" : "012", + "y" : 81 }, { "y" : 74, @@ -79,39 +72,65 @@ "drilldown" : "013" }, { - "drilldown" : "014", "y" : 94, - "name" : "#014" + "name" : "#014", + "drilldown" : "014" }, { - "drilldown" : "015", "y" : 90, - "name" : "#015" + "name" : "#015", + "drilldown" : "015" }, { - "name" : "#016", "y" : 64, + "name" : "#016", "drilldown" : "016" }, { - "y" : 77, "name" : "#017", - "drilldown" : "017" + "drilldown" : "017", + "y" : 77 }, { - "y" : 4, + "y" : 6, "name" : "#018", "drilldown" : "018" } ], - "name" : "Perl Weekly Challenge Languages", "colorByPoint" : "true" } ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "legend" : { + "enabled" : "false" + }, + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "followPointer" : "true" + }, "drilldown" : { "series" : [ { - "id" : "001", "name" : "001", "data" : [ [ @@ -126,7 +145,8 @@ "Blog", 10 ] - ] + ], + "id" : "001" }, { "id" : "002", @@ -148,7 +168,6 @@ }, { "name" : "003", - "id" : "003", "data" : [ [ "Perl 5", @@ -162,9 +181,11 @@ "Blog", 8 ] - ] + ], + "id" : "003" }, { + "id" : "004", "data" : [ [ "Perl 5", @@ -179,10 +200,10 @@ 9 ] ], - "name" : "004", - "id" : "004" + "name" : "004" }, { + "name" : "005", "data" : [ [ "Perl 5", @@ -197,10 +218,10 @@ 11 ] ], - "name" : "005", "id" : "005" }, { + "id" : "006", "data" : [ [ "Perl 5", @@ -215,12 +236,9 @@ 6 ] ], - "id" : "006", "name" : "006" }, { - "name" : "007", - "id" : "007", "data" : [ [ "Perl 5", @@ -234,7 +252,9 @@ "Blog", 8 ] - ] + ], + "name" : "007", + "id" : "007" }, { "data" : [ @@ -255,6 +275,8 @@ "id" : "008" }, { + "id" : "009", + "name" : "009", "data" : [ [ "Perl 5", @@ -268,12 +290,9 @@ "Blog", 11 ] - ], - "name" : "009", - "id" : "009" + ] }, { - "name" : "010", "id" : "010", "data" : [ [ @@ -288,9 +307,11 @@ "Blog", 9 ] - ] + ], + "name" : "010" }, { + "id" : "011", "data" : [ [ "Perl 5", @@ -305,12 +326,10 @@ 8 ] ], - "id" : "011", "name" : "011" }, { "name" : "012", - "id" : "012", "data" : [ [ "Perl 5", @@ -324,9 +343,12 @@ "Blog", 9 ] - ] + ], + "id" : "012" }, { + "id" : "013", + "name" : "013", "data" : [ [ "Perl 5", @@ -340,13 +362,10 @@ "Blog", 11 ] - ], - "id" : "013", - "name" : "013" + ] }, { "id" : "014", - "name" : "014", "data" : [ [ "Perl 5", @@ -360,7 +379,8 @@ "Blog", 13 ] - ] + ], + "name" : "014" }, { "data" : [ @@ -377,10 +397,11 @@ 12 ] ], - "id" : "015", - "name" : "015" + "name" : "015", + "id" : "015" }, { + "name" : "016", "data" : [ [ "Perl 5", @@ -395,11 +416,9 @@ 10 ] ], - "id" : "016", - "name" : "016" + "id" : "016" }, { - "id" : "017", "name" : "017", "data" : [ [ @@ -414,13 +433,14 @@ "Blog", 10 ] - ] + ], + "id" : "017" }, { "data" : [ [ "Perl 5", - 2 + 4 ], [ "Perl 6", @@ -431,32 +451,12 @@ 0 ] ], - "id" : "018", - "name" : "018" + "name" : "018", + "id" : "018" } ] }, - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" - }, - "legend" : { - "enabled" : "false" - }, "title" : { "text" : "Perl Weekly Challenge Language" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "xAxis" : { - "type" : "category" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 19006df726..96c63cf6ab 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,327 +1,75 @@ { - "series" : [ - { - "data" : [ - { - "name" : "#1: Joelle Maslak", - "y" : 180, - "drilldown" : "Joelle Maslak" - }, - { - "name" : "#2: Laurent Rosenfeld", - "y" : 176, - "drilldown" : "Laurent Rosenfeld" - }, - { - "drilldown" : "Jaldhar H. Vyas", - "y" : 142, - "name" : "#3: Jaldhar H. Vyas" - }, - { - "drilldown" : "Ruben Westerberg", - "y" : 124, - "name" : "#4: Ruben Westerberg" - }, - { - "name" : "#5: Athanasius", - "y" : 106, - "drilldown" : "Athanasius" - }, - { - "y" : 104, - "name" : "#6: Adam Russell", - "drilldown" : "Adam Russell" - }, - { - "name" : "#7: Arne Sommer", - "y" : 94, - "drilldown" : "Arne Sommer" - }, - { - "y" : 80, - "name" : "#8: Simon Proctor", - "drilldown" : "Simon Proctor" - }, - { - "name" : "#9: E. Choroba", - "y" : 78, - "drilldown" : "E. Choroba" - }, - { - "drilldown" : "Francis Whittle", - "name" : "#10: Francis Whittle", - "y" : 78 - }, - { - "name" : "#11: Kian-Meng Ang", - "y" : 78, - "drilldown" : "Kian-Meng Ang" - }, - { - "y" : 74, - "name" : "#12: Dave Jacoby", - "drilldown" : "Dave Jacoby" - }, - { - "drilldown" : "Andrezgz", - "name" : "#13: Andrezgz", - "y" : 64 - }, - { - "name" : "#14: Gustavo Chaves", - "y" : 64, - "drilldown" : "Gustavo Chaves" - }, - { - "y" : 64, - "name" : "#15: Yozen Hernandez", - "drilldown" : "Yozen Hernandez" - }, - { - "drilldown" : "Feng Chang", - "y" : 60, - "name" : "#16: Feng Chang" - }, - { - "drilldown" : "Daniel Mantovani", - "name" : "#17: Daniel Mantovani", - "y" : 56 - }, - { - "y" : 56, - "name" : "#18: Duncan C. White", - "drilldown" : "Duncan C. White" - }, - { - "drilldown" : "Steven Wilson", - "y" : 54, - "name" : "#19: Steven Wilson" - }, - { - "name" : "#20: Jo Christian Oterhals", - "y" : 48, - "drilldown" : "Jo Christian Oterhals" - }, - { - "y" : 44, - "name" : "#21: Dr James A. Smith", - "drilldown" : "Dr James A. Smith" - }, - { - "y" : 34, - "name" : "#22: Guillermo Ramos", - "drilldown" : "Guillermo Ramos" - }, - { - "drilldown" : "Ozzy", - "name" : "#23: Ozzy", - "y" : 34 - }, - { - "drilldown" : "Veesh Goldman", - "y" : 34, - "name" : "#24: Veesh Goldman" - }, - { - "drilldown" : "Mark Senn", - "name" : "#25: Mark Senn", - "y" : 32 - }, - { - "y" : 32, - "name" : "#26: Nick Logan", - "drilldown" : "Nick Logan" - }, - { - "y" : 28, - "name" : "#27: Kevin Colyer", - "drilldown" : "Kevin Colyer" - }, - { - "drilldown" : "Lars Balker", - "y" : 28, - "name" : "#28: Lars Balker" - }, - { - "drilldown" : "Maxim Nechaev", - "y" : 24, - "name" : "#29: Maxim Nechaev" - }, - { - "y" : 24, - "name" : "#30: Roger Bell West", - "drilldown" : "Roger Bell West" - }, - { - "drilldown" : "Alicia Bielsa", - "y" : 22, - "name" : "#31: Alicia Bielsa" - }, - { - "drilldown" : "Lubos Kolouch", - "y" : 22, - "name" : "#32: Lubos Kolouch" - }, - { - "drilldown" : "Doug Schrag", - "name" : "#33: Doug Schrag", - "y" : 20 - }, - { - "name" : "#34: Neil Bowers", - "y" : 18, - "drilldown" : "Neil Bowers" - }, - { - "y" : 16, - "name" : "#35: Jaime Corchado", - "drilldown" : "Jaime Corchado" - }, - { - "y" : 16, - "name" : "#36: Noud", - "drilldown" : "Noud" - }, - { - "name" : "#37: Robert Gratza", - "y" : 16, - "drilldown" : "Robert Gratza" - }, - { - "drilldown" : "Duane Powell", - "name" : "#38: Duane Powell", - "y" : 14 - }, - { - "drilldown" : "John Barrett", - "name" : "#39: John Barrett", - "y" : 14 - }, - { - "drilldown" : "Khalid", - "name" : "#40: Khalid", - "y" : 14 - }, - { - "y" : 12, - "name" : "#41: Aaron Sherman", - "drilldown" : "Aaron Sherman" - }, - { - "y" : 12, - "name" : "#42: Donald Hunter", - "drilldown" : "Donald Hunter" - }, - { - "name" : "#43: Kivanc Yazan", - "y" : 12, - "drilldown" : "Kivanc Yazan" - }, - { - "name" : "#44: Maxim Kolodyazhny", - "y" : 12, - "drilldown" : "Maxim Kolodyazhny" - }, - { - "drilldown" : "Philippe Bruhat", - "name" : "#45: Philippe Bruhat", - "y" : 12 - }, - { - "name" : "#46: Sergio Iglesias", - "y" : 12, - "drilldown" : "Sergio Iglesias" - }, - { - "drilldown" : "Arpad Toth", - "y" : 10, - "name" : "#47: Arpad Toth" - }, - { - "drilldown" : "Pete Houston", - "y" : 10, - "name" : "#48: Pete Houston" - }, - { - "drilldown" : "Steve Rogerson", - "y" : 10, - "name" : "#49: Steve Rogerson" - }, - { - "y" : 10, - "name" : "#50: Walt Mankowski", - "drilldown" : "Walt Mankowski" - } - ], - "name" : "Perl Weekly Challenge Leaders", - "colorByPoint" : "true" + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 } - ], - "chart" : { - "type" : "column" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-07-23 14:14:48 GMT" }, "legend" : { "enabled" : "false" }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-07-22 13:57:20 GMT" - }, - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
" + "chart" : { + "type" : "column" }, "yAxis" : { "title" : { "text" : "Total Score" } }, + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : "true", + "headerFormat" : "" + }, "drilldown" : { "series" : [ { - "id" : "Joelle Maslak", "data" : [ [ - "Perl 6", - 43 + "Blog", + 4 ], [ "Perl 5", 43 ], [ - "Blog", - 4 + "Perl 6", + 43 ] ], - "name" : "Joelle Maslak" + "name" : "Joelle Maslak", + "id" : "Joelle Maslak" }, { + "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld", "data" : [ - [ - "Perl 5", - 34 - ], [ "Perl 6", 33 ], + [ + "Perl 5", + 34 + ], [ "Blog", 21 ] - ], - "name" : "Laurent Rosenfeld" + ] }, { - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 5", 34 @@ -329,26 +77,35 @@ [ "Perl 6", 33 + ], + [ + "Blog", + 4 ] - ] + ], + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas" }, { + "name" : "Ruben Westerberg", "id" : "Ruben Westerberg", "data" : [ [ - "Perl 6", + "Perl 5", 31 ], [ - "Perl 5", + "Perl 6", 31 ] - ], - "name" : "Ruben Westerberg" + ] }, { - "name" : "Athanasius", "data" : [ + [ + "Blog", + 3 + ], [ "Perl 5", 37 @@ -356,16 +113,12 @@ [ "Perl 6", 13 - ], - [ - "Blog", - 3 ] ], - "id" : "Athanasius" + "id" : "Athanasius", + "name" : "Athanasius" }, { - "name" : "Adam Russell", "data" : [ [ "Perl 5", @@ -376,21 +129,22 @@ 17 ] ], - "id" : "Adam Russell" + "id" : "Adam Russell", + "name" : "Adam Russell" }, { + "id" : "Arne Sommer", "name" : "Arne Sommer", "data" : [ - [ - "Perl 6", - 31 - ], [ "Blog", 16 + ], + [ + "Perl 6", + 31 ] - ], - "id" : "Arne Sommer" + ] }, { "name" : "Simon Proctor", @@ -411,8 +165,6 @@ ] }, { - "name" : "E. Choroba", - "id" : "E. Choroba", "data" : [ [ "Perl 5", @@ -422,10 +174,13 @@ "Blog", 13 ] - ] + ], + "name" : "E. Choroba", + "id" : "E. Choroba" }, { "name" : "Francis Whittle", + "id" : "Francis Whittle", "data" : [ [ "Blog", @@ -435,26 +190,30 @@ "Perl 6", 31 ] - ], - "id" : "Francis Whittle" + ] }, { - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang", "data" : [ - [ - "Perl 5", - 28 - ], [ "Blog", 11 + ], + [ + "Perl 5", + 28 ] - ] + ], + "id" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang" }, { + "name" : "Dave Jacoby", "id" : "Dave Jacoby", "data" : [ + [ + "Blog", + 15 + ], [ "Perl 5", 21 @@ -462,25 +221,21 @@ [ "Perl 6", 1 - ], - [ - "Blog", - 15 ] - ], - "name" : "Dave Jacoby" + ] }, { + "id" : "Andrezgz", + "name" : "Andrezgz", "data" : [ [ "Perl 5", 32 ] - ], - "id" : "Andrezgz", - "name" : "Andrezgz" + ] }, { + "id" : "Gustavo Chaves", "name" : "Gustavo Chaves", "data" : [ [ @@ -491,12 +246,9 @@ "Perl 5", 28 ] - ], - "id" : "Gustavo Chaves" + ] }, { - "name" : "Yozen Hernandez", - "id" : "Yozen Hernandez", "data" : [ [ "Blog", @@ -506,75 +258,79 @@ "Perl 5", 20 ] - ] + ], + "id" : "Yozen Hernandez", + "name" : "Yozen Hernandez" }, { - "id" : "Feng Chang", "data" : [ [ - "Perl 5", + "Perl 6", 15 ], [ - "Perl 6", + "Perl 5", 15 ] ], - "name" : "Feng Chang" + "name" : "Feng Chang", + "id" : "Feng Chang" }, { - "name" : "Daniel Mantovani", - "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 28 ] - ] + ], + "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani" }, { + "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ [ "Perl 5", 28 ] - ], - "id" : "Duncan C. White", - "name" : "Duncan C. White" + ] }, { + "name" : "Steven Wilson", "id" : "Steven Wilson", "data" : [ - [ - "Blog", - 3 - ], [ "Perl 5", 24 + ], + [ + "Blog", + 3 ] - ], - "name" : "Steven Wilson" + ] }, { - "name" : "Jo Christian Oterhals", "data" : [ [ "Blog", 6 ], - [ - "Perl 6", - 12 - ], [ "Perl 5", 6 + ], + [ + "Perl 6", + 12 ] ], + "name" : "Jo Christian Oterhals", "id" : "Jo Christian Oterhals" }, { + "name" : "Dr James A. Smith", + "id" : "Dr James A. Smith", "data" : [ [ "Perl 6", @@ -584,112 +340,109 @@ "Perl 5", 12 ] - ], - "id" : "Dr James A. Smith", - "name" : "Dr James A. Smith" + ] }, { "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos", "data" : [ [ "Perl 5", 17 ] - ], - "name" : "Guillermo Ramos" + ] }, { + "id" : "Ozzy", "name" : "Ozzy", "data" : [ [ "Perl 6", 17 ] - ], - "id" : "Ozzy" + ] }, { + "id" : "Veesh Goldman", "name" : "Veesh Goldman", "data" : [ [ - "Blog", - 2 + "Perl 6", + 1 ], [ "Perl 5", 14 ], [ - "Perl 6", - 1 + "Blog", + 2 ] - ], - "id" : "Veesh Goldman" + ] }, { "id" : "Mark Senn", + "name" : "Mark Senn", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 6", 12 + ], + [ + "Blog", + 4 ] - ], - "name" : "Mark Senn" + ] }, { "data" : [ [ - "Perl 6", + "Perl 5", 8 ], [ - "Perl 5", + "Perl 6", 8 ] ], - "id" : "Nick Logan", - "name" : "Nick Logan" + "name" : "Nick Logan", + "id" : "Nick Logan" }, { - "name" : "Kevin Colyer", "data" : [ [ "Perl 6", 14 ] ], - "id" : "Kevin Colyer" + "id" : "Kevin Colyer", + "name" : "Kevin Colyer" }, { - "name" : "Lars Balker", "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 10 + ], + [ + "Perl 6", + 4 ] ], - "id" : "Lars Balker" + "id" : "Lars Balker", + "name" : "Lars Balker" }, { - "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] ], - "name" : "Maxim Nechaev" + "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev" }, { - "id" : "Roger Bell West", "data" : [ [ "Perl 5", @@ -700,40 +453,52 @@ 2 ] ], - "name" : "Roger Bell West" + "name" : "Roger Bell West", + "id" : "Roger Bell West" }, { - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] ], + "id" : "Alicia Bielsa", "name" : "Alicia Bielsa" }, { - "name" : "Lubos Kolouch", "data" : [ [ "Perl 5", 11 ] ], + "name" : "Lubos Kolouch", "id" : "Lubos Kolouch" }, { - "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] ], + "id" : "Doug Schrag", "name" : "Doug Schrag" }, + { + "data" : [ + [ + "Perl 5", + 9 + ] + ], + "name" : "Duane Powell", + "id" : "Duane Powell" + }, { "name" : "Neil Bowers", + "id" : "Neil Bowers", "data" : [ [ "Perl 5", @@ -743,8 +508,7 @@ "Blog", 3 ] - ], - "id" : "Neil Bowers" + ] }, { "data" : [ @@ -753,8 +517,8 @@ 8 ] ], - "id" : "Jaime Corchado", - "name" : "Jaime Corchado" + "name" : "Jaime Corchado", + "id" : "Jaime Corchado" }, { "data" : [ @@ -763,49 +527,35 @@ 8 ] ], - "id" : "Noud", - "name" : "Noud" + "name" : "Noud", + "id" : "Noud" }, { + "name" : "Robert Gratza", "id" : "Robert Gratza", "data" : [ - [ - "Perl 5", - 2 - ], [ "Perl 6", 6 - ] - ], - "name" : "Robert Gratza" - }, - { - "name" : "Duane Powell", - "data" : [ + ], [ "Perl 5", - 7 + 2 ] - ], - "id" : "Duane Powell" + ] }, { - "name" : "John Barrett", "data" : [ [ "Perl 5", 7 ] ], + "name" : "John Barrett", "id" : "John Barrett" }, { "data" : [ - [ - "Blog", - 1 - ], [ "Perl 5", 4 @@ -813,22 +563,28 @@ [ "Perl 6", 2 + ], + [ + "Blog", + 1 ] ], - "id" : "Khalid", - "name" : "Khalid" + "name" : "Khalid", + "id" : "Khalid" }, { + "id" : "Aaron Sherman", + "name" : "Aaron Sherman", "data" : [ [ "Perl 6", 6 ] - ], - "id" : "Aaron Sherman", - "name" : "Aaron Sherman" + ] }, { + "name" : "Donald Hunter", + "id" : "Donald Hunter", "data" : [ [ "Blog", @@ -838,13 +594,11 @@ "Perl 6", 3 ] - ], - "id" : "Donald Hunter", - "name" : "Donald Hunter" + ] }, { - "name" : "Kivanc Yazan", "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", @@ -853,28 +607,28 @@ ] }, { - "name" : "Maxim Kolodyazhny", - "id" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] - ] + ], + "id" : "Maxim Kolodyazhny", + "name" : "Maxim Kolodyazhny" }, { + "name" : "Philippe Bruhat", "id" : "Philippe Bruhat", "data" : [ - [ - "Blog", - 2 - ], [ "Perl 5", 4 + ], + [ + "Blog", + 2 ] - ], - "name" : "Philippe Bruhat" + ] }, { "data" : [ @@ -883,8 +637,8 @@ 6 ] ], - "id" : "Sergio Iglesias", - "name" : "Sergio Iglesias" + "name" : "Sergio Iglesias", + "id" : "Sergio Iglesias" }, { "name" : "Arpad Toth", @@ -897,54 +651,300 @@ ] }, { - "name" : "Pete Houston", - "id" : "Pete Houston", "data" : [ [ "Perl 5", 5 ] - ] + ], + "name" : "Pete Houston", + "id" : "Pete Houston" }, { - "name" : "Steve Rogerson", - "id" : "Steve Rogerson", "data" : [ - [ - "Perl 5", - 3 - ], [ "Perl 6", 2 + ], + [ + "Perl 5", + 3 ] - ] + ], + "id" : "Steve Rogerson", + "name" : "Steve Rogerson" }, { - "name" : "Walt Mankowski", "data" : [ [ "Perl 5", 5 ] ], + "name" : "Walt Mankowski", "id" : "Walt Mankowski" } ] }, - "xAxis" : { - "type" : "category" - }, "title" : { "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "series" : [ + { + "data" : [ + { + "drilldown" : "Joelle Maslak", + "y" : 180, + "name" : "#1: Joelle Maslak" + }, + { + "name" : "#2: Laurent Rosenfeld", + "y" : 176, + "drilldown" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "y" : 142, + "name" : "#3: Jaldhar H. Vyas" + }, + { + "name" : "#4: Ruben Westerberg", + "y" : 124, + "drilldown" : "Ruben Westerberg" + }, + { + "drilldown" : "Athanasius", + "name" : "#5: Athanasius", + "y" : 106 + }, + { + "name" : "#6: Adam Russell", + "y" : 104, + "drilldown" : "Adam Russell" + }, + { + "drilldown" : "Arne Sommer", + "name" : "#7: Arne Sommer", + "y" : 94 + }, + { + "y" : 80, + "name" : "#8: Simon Proctor", + "drilldown" : "Simon Proctor" + }, + { + "drilldown" : "E. Choroba", + "name" : "#9: E. Choroba", + "y" : 78 + }, + { + "drilldown" : "Francis Whittle", + "y" : 78, + "name" : "#10: Francis Whittle" + }, + { + "drilldown" : "Kian-Meng Ang", + "name" : "#11: Kian-Meng Ang", + "y" : 78 + }, + { + "name" : "#12: Dave Jacoby", + "y" : 74, + "drilldown" : "Dave Jacoby" + }, + { + "y" : 64, + "name" : "#13: Andrezgz", + "drilldown" : "Andrezgz" + }, + { + "y" : 64, + "name" : "#14: Gustavo Chaves", + "drilldown" : "Gustavo Chaves" + }, + { + "y" : 64, + "name" : "#15: Yozen Hernandez", + "drilldown" : "Yozen Hernandez" + }, + { + "drilldown" : "Feng Chang", + "name" : "#16: Feng Chang", + "y" : 60 + }, + { + "drilldown" : "Daniel Mantovani", + "name" : "#17: Daniel Mantovani", + "y" : 56 + }, + { + "drilldown" : "Duncan C. White", + "y" : 56, + "name" : "#18: Duncan C. White" + }, + { + "y" : 54, + "name" : "#19: Steven Wilson", + "drilldown" : "Steven Wilson" + }, + { + "name" : "#20: Jo Christian Oterhals", + "y" : 48, + "drilldown" : "Jo Christian Oterhals" + }, + { + "name" : "#21: Dr James A. Smith", + "y" : 44, + "drilldown" : "Dr James A. Smith" + }, + { + "drilldown" : "Guillermo Ramos", + "y" : 34, + "name" : "#22: Guillermo Ramos" + }, + { + "drilldown" : "Ozzy", + "name" : "#23: Ozzy", + "y" : 34 + }, + { + "name" : "#24: Veesh Goldman", + "y" : 34, + "drilldown" : "Veesh Goldman" + }, + { + "name" : "#25: Mark Senn", + "y" : 32, + "drilldown" : "Mark Senn" + }, + { + "drilldown" : "Nick Logan", + "name" : "#26: Nick Logan", + "y" : 32 + }, + { + "drilldown" : "Kevin Colyer", + "name" : "#27: Kevin Colyer", + "y" : 28 + }, + { + "name" : "#28: Lars Balker", + "y" : 28, + "drilldown" : "Lars Balker" + }, + { + "drilldown" : "Maxim Nechaev", + "y" : 24, + "name" : "#29: Maxim Nechaev" + }, + { + "drilldown" : "Roger Bell West", + "name" : "#30: Roger Bell West", + "y" : 24 + }, + { + "y" : 22, + "name" : "#31: Alicia Bielsa", + "drilldown" : "Alicia Bielsa" + }, + { + "drilldown" : "Lubos Kolouch", + "name" : "#32: Lubos Kolouch", + "y" : 22 + }, + { + "drilldown" : "Doug Schrag", + "y" : 20, + "name" : "#33: Doug Schrag" + }, + { + "drilldown" : "Duane Powell", + "y" : 18, + "name" : "#34: Duane Powell" + }, + { + "drilldown" : "Neil Bowers", + "y" : 18, + "name" : "#35: Neil Bowers" + }, + { + "name" : "#36: Jaime Corchado", + "y" : 16, + "drilldown" : "Jaime Corchado" + }, + { + "drilldown" : "Noud", + "name" : "#37: Noud", + "y" : 16 + }, + { + "name" : "#38: Robert Gratza", + "y" : 16, + "drilldown" : "Robert Gratza" + }, + { + "drilldown" : "John Barrett", + "name" : "#39: John Barrett", + "y" : 14 + }, + { + "name" : "#40: Khalid", + "y" : 14, + "drilldown" : "Khalid" + }, + { + "y" : 12, + "name" : "#41: Aaron Sherman", + "drilldown" : "Aaron Sherman" + }, + { + "name" : "#42: Donald Hunter", + "y" : 12, + "drilldown" : "Donald Hunter" + }, + { + "drilldown" : "Kivanc Yazan", + "y" : 12, + "name" : "#43: Kivanc Yazan" + }, + { + "name" : "#44: Maxim Kolodyazhny", + "y" : 12, + "drilldown" : "Maxim Kolodyazhny" + }, + { + "y" : 12, + "name" : "#45: Philippe Bruhat", + "drilldown" : "Philippe Bruhat" + }, + { + "name" : "#46: Sergio Iglesias", + "y" : 12, + "drilldown" : "Sergio Iglesias" + }, + { + "name" : "#47: Arpad Toth", + "y" : 10, + "drilldown" : "Arpad Toth" + }, + { + "drilldown" : "Pete Houston", + "y" : 10, + "name" : "#48: Pete Houston" + }, + { + "y" : 10, + "name" : "#49: Steve Rogerson", + "drilldown" : "Steve Rogerson" + }, + { + "y" : 10, + "name" : "#50: Walt Mankowski", + "drilldown" : "Walt Mankowski" + } + ], + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders" } - } + ] } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 0ce342a097..2000ad8099 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,9 +1,62 @@ { + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-07-23 14:14:43 GMT" + }, + "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" + ] + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "tooltip" : { + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } + }, "series" : [ { + "name" : "Perl 5", "data" : [ 0, 2, @@ -30,15 +83,15 @@ 0, 0, 0, - 7, + 9, 28, 26, 2, 15 - ], - "name" : "Perl 5" + ] }, { + "name" : "Perl 6", "data" : [ 6, 0, @@ -70,10 +123,10 @@ 0, 0, 15 - ], - "name" : "Perl 6" + ] }, { + "name" : "Blog", "data" : [ 0, 0, @@ -105,62 +158,9 @@ 13, 0, 0 - ], - "name" : "Blog" + ] } ], - "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" - ] - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-07-22 13:57:17 GMT" - }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, "chart" : { "type" : "column" } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index a06fd44b06..3bae94da65 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,9 +1,7 @@ { - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, "series" : [ { +