From f8f71f733a6dfc1b564b101eb6bd74ebd71ec8f8 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 5 Jan 2020 23:54:52 +0000 Subject: - Added solutions by Colin Crain. --- challenge-041/colin-crain/perl5/ch-1.pl | 101 ++++++++ challenge-041/colin-crain/perl5/ch-2.pl | 58 +++++ challenge-041/colin-crain/perl6/ch-1.p6 | 90 +++++++ challenge-041/colin-crain/perl6/ch-2.p6 | 64 +++++ stats/pwc-current.json | 231 +++++++++--------- stats/pwc-language-breakdown-summary.json | 86 +++---- stats/pwc-language-breakdown.json | 304 ++++++++++++------------ stats/pwc-leaders.json | 376 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 108 ++++----- stats/pwc-summary-121-150.json | 72 +++--- stats/pwc-summary-31-60.json | 30 +-- stats/pwc-summary-61-90.json | 46 ++-- stats/pwc-summary-91-120.json | 38 +-- stats/pwc-summary.json | 48 ++-- 14 files changed, 992 insertions(+), 660 deletions(-) create mode 100644 challenge-041/colin-crain/perl5/ch-1.pl create mode 100644 challenge-041/colin-crain/perl5/ch-2.pl create mode 100644 challenge-041/colin-crain/perl6/ch-1.p6 create mode 100644 challenge-041/colin-crain/perl6/ch-2.p6 diff --git a/challenge-041/colin-crain/perl5/ch-1.pl b/challenge-041/colin-crain/perl5/ch-1.pl new file mode 100644 index 0000000000..f0589e0335 --- /dev/null +++ b/challenge-041/colin-crain/perl5/ch-1.pl @@ -0,0 +1,101 @@ +#! /opt/local/bin/perl +# +# attractors.pl +# +# PWC 41 +# TASK #1 +# Write a script to display attractive number between 1 and 50. A +# number is an attractive number if the number of its prime factors is +# also prime number. +# +# The number 20 is an attractive number, whose prime factors are 2, 2 +# and 5. The total prime factors is 3 which is also a prime number. +# +# method: first sexy primes, now attractive numbers. So many numbers, +# so many looks. I am a little concerned that all this objectifying +# might give certain less-confident numbers quantity quality issues. +# Let's not forget the truism that "all numbers are interesting"; whether +# amicable, betrothed, deficiant or slightly defective they are all +# Pythagoras' children and all deserve love. . +# +# So anyways, we will pull out our prime decomposition engine from PWC23, +# which we also saw in challenges 29 and 34. +# +# Unable to leave well enough alone, we've tuned and tightened it, +# replacing the origianal prime generating subfunction with a list of +# all primes less or equal to the upper bound, which have been made a +# user defined variable with a default of 50. +# +# We need to know the prime decomposition, but only briefly enough to +# sum it and compare this to our prime list. As we have the prime list +# already present in the function we could do the comparison then and +# there, return true or false, grep the list of calling it from 1 to +# 50 and call it a day. But merely presenting the numbers without +# demonstrating their attractiveness seemed a bit off the mark, like +# talking about a fashion show on the radio instead of going to a +# fashion show to see the runway. So a table is produced of all the +# numbers, their decompositions, and finally judgement on their +# attractiveness. It appears the group of numbers between 1 and 50, +# taken as a whole are a pretty good-looking bunch. +# + +# +# +# + +# 2020 colin crain +## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## + + + +use warnings; +use strict; +use feature ":5.26"; + +## ## ## ## ## MAIN + +my $max = shift @ARGV // 50; + +my @primes = make_prime_list($max); +my %primehash = map { $_ => 1 } @primes; + +for (2..$max) { + my @decomp = decompose($_, \@primes); + printf "%-4d--> %-20s %s\n", $_, (join ', ', @decomp), + (exists $primehash{(scalar @decomp)}) ? "$_ is attractive" : "" ; +} + +## ## ## ## ## SUBS + +sub make_prime_list { +## creates a list of all primes less than or equal to a given number + my $max = shift; + my @output = (2); + CANDIDATE: for( my $candidate = 3; $candidate <= $max; $candidate += 2 ) { + my $sqrt_candidate = sqrt( $candidate ); + for( my $test = 3; $test <= $sqrt_candidate; $test += 2 ) { + next CANDIDATE if $candidate % $test == 0; + } + push @output, $candidate; + } + return @output; +} + +sub decompose { +## given a number and a list of primes less than n/2, +## returns an array list of prime decomposition factors of the number + my ($num, $primes) = @_; + my @decomp; + my @primelist = $primes->@*; + my $prime = shift @primelist; + + while ( $prime <= $num ) { + while ($num % $prime == 0) { + $num = $num / $prime; + push @decomp, $prime; + } + last if scalar @primelist == 0; + $prime = shift @primelist; + } + return @decomp; +} diff --git a/challenge-041/colin-crain/perl5/ch-2.pl b/challenge-041/colin-crain/perl5/ch-2.pl new file mode 100644 index 0000000000..9fa8b9ebe9 --- /dev/null +++ b/challenge-041/colin-crain/perl5/ch-2.pl @@ -0,0 +1,58 @@ +#! /opt/local/bin/perl +# +# leonardo_numbers.pl +# +# PWC41 +# TASK #2 +# Write a script to display first 20 Leonardo Numbers. Please checkout wiki page for more information. +# For example: +# +# L(0) = 1 +# L(1) = 1 +# L(2) = L(0) + L(1) + 1 = 3 +# L(3) = L(1) + L(2) + 1 = 5 +# and so on. +# +# method: because we have the growing series directly available to +# refer to no recursion is required. I have made the function +# return a list for any quantity > 0, displayed with a nice little +# header. +# +# As-is can handle up to L(90) +# L(90) = 5,760,134,388,741,632,239 +# +# 2020 colin crain +## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## + + + +use warnings; +use strict; +use feature ":5.26"; + +## ## ## ## ## MAIN + +my $quan = shift @ARGV // 20; + +say "the first $quan Leonardo numbers:"; +say ""; +say "index | number"; +say "-------+--------"; + +my $i; +printf "%-2d %d\n", ++$i, $_ for make_leonardo($quan)->@*; + + +## ## ## ## ## SUBS + +sub make_leonardo { +## construct a list of the first n Leonardo numbers +## requires no recursion if we have the growing list to refer to + my $quan = shift; + my $list = [1]; + push $list->@*, 1 if $quan > 1; ## now [1,1] + while ( scalar $list->@* <= $quan-1 ) { + push $list->@*, $list->[-1] + $list->[-2] + 1; ## sum last two elements + 1 + } + return $list; +} diff --git a/challenge-041/colin-crain/perl6/ch-1.p6 b/challenge-041/colin-crain/perl6/ch-1.p6 new file mode 100644 index 0000000000..8c94ac8865 --- /dev/null +++ b/challenge-041/colin-crain/perl6/ch-1.p6 @@ -0,0 +1,90 @@ +use v6; + +# PWC 41 +# TASK #1 +# Write a script to display attractive number between 1 and 50. A +# number is an attractive number if the number of its prime factors is +# also prime number. +# +# The number 20 is an attractive number, whose prime factors are 2, 2 +# and 5. The total prime factors is 3 which is also a prime number. +# +# notice: first sexy primes, now attractive numbers. So many numbers, +# so many looks. I am a little concerned that all this objectifying +# might give certain less-confident numbers quantity quality issues. +# Let's not forget the truism that "all numbers are interesting"; whether +# amicable, betrothed, deficiant or slightly defective they are all +# Pythagorus' children and deserve love. +# +# So anyways, we will pull out our prime decomposition engine from PWC23, +# which we also saw in challenges 29 and 34. +# +# Unable to leave well enough alone, we've tuned and tightened it, +# replacing the origianal prime generating subfunction with a list of +# all primes less or equal to the upper bound, which have been made a +# user defined variable with a default of 50, and a lower bound of 2, +# the smallest prime number. +# +# We need to know the prime decomposition, but only briefly enough to +# sum it and compare this to our prime list. As we have the prime list +# already present in the function we could do the comparison then and +# there, return true or false, grep the list of calling it from 1 to +# 50 and call it a day. But merely presenting the numbers without +# demonstrating their attractiveness seemed a bit off the mark, like +# talking about a fashion show on the radio instead of going to a +# fashion show to see the runway. So a table is produced of all the +# numbers, their decompositions, and finally judgement on their +# attractiveness. It appears the group of numbers between 1 and 50, +# taken as a whole are a pretty good-looking bunch. +# +# +# +# 2020 colin crain +## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## + +sub MAIN ( Int:D $max where {$max > 2} = 50 ) { + + my @primes = make_prime_list($max); + my $primeset = Set.new(@primes); + + for (2..$max) { + my @decomp = decompose($_, @primes); + printf "%-5d --> %-20s %s\n", $_, (@decomp.join: ', '), (@decomp.elems ∈ $primeset) ?? "$_ is attractive" !! ""; + } +} + + +## ## ## ## ## SUBS + +sub make_prime_list ( Int:D $max where {$max > 2} = 50 ) { +## creates a list of all primes less than or equal to a given number + my @output = [2]; + CANDIDATE: loop ( my $candidate = 3; $candidate <= $max; $candidate += 2 ) { + my $sqrt_candidate = $candidate.sqrt; + loop ( my $test = 3; $test <= $sqrt_candidate; $test += 2 ) { + next CANDIDATE if $candidate % $test == 0; + } + @output.push: $candidate; + } + return @output; +} + + +sub decompose ( $extnum, @primes) { +## given a number and a list of primes less than n/2, +## returns an array list of prime decomposition factors of the number + my @decomp; + my $num = $extnum; + my @primelist = @primes; + my $prime = shift @primelist; + + while ( $prime <= $num ) { + while ($num %% $prime) { + $num /= $prime; + @decomp.push: $prime; + } + last unless @primelist.elems; + $prime = @primelist.shift; + } + return @decomp; +} diff --git a/challenge-041/colin-crain/perl6/ch-2.p6 b/challenge-041/colin-crain/perl6/ch-2.p6 new file mode 100644 index 0000000000..24d7125c74 --- /dev/null +++ b/challenge-041/colin-crain/perl6/ch-2.p6 @@ -0,0 +1,64 @@ +use v6; + +# +# leonardo_numbers.p6 +# +# PWC41 +# TASK #2 +# Write a script to display first 20 Leonardo Numbers. Please checkout wiki page for more information. +# For example: +# +# L(0) = 1 +# L(1) = 1 +# L(2) = L(0) + L(1) + 1 = 3 +# L(3) = L(1) + L(2) + 1 = 5 +# and so on. +# +# method: because we have the growing series directly available to refer +# to no recursion is required. I have made the function return a list +# for any quanity > 0, displayed with a nice little header. + +# In the list-generating function, the definition of the sequence +# lends itself well to a given/when construction, but after making it +# I realized the fall-through logic was so straightforward the outer +# construct could be done away with completely. All cases just fall +# through to the return at the end. + +# The heavy lifting on the Leonardo list is done in one line by adding +# elements made by the reduce sum of the flattened two element tail +# and 1. Nice. +# +# The function doesn't have meaning for quantity values < 1, so a constraint is +# added that the parameter given must be an Int greater than 0. +# +# 2020 colin crain +## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## + + +sub MAIN ( Int:D $quan where {$quan > 0} = 20) { + + ## header + say "the first $quan Leonardo numbers:"; + say ""; + say "index | number"; + say "-------+--------"; + + ## data + my $i; + printf "%-2d %d\n", ++$i, $_ for make_leonardo($quan); +} + + + +## ## ## ## ## SUBS + +sub make_leonardo ( Int:D $quan where {$quan > 0} ){ +## construct a list of the first n Leonardo numbers +## requires no recursion if we have the growing list to refer to + my @list = [1]; ## L1 = 1 + @list.push: 1 if $quan > 1 ; ## L2 = 1 + while ( @list.elems <= $quan-1 ) { + @list.push: [+] flat @list.tail(2), 1; ## reduce sum flattened list of last two elems and 1 + } + return @list; +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index aa9022a939..9a7aee2065 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,6 +1,36 @@ { + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "[Champions: 23] Last updated at 2020-01-05 23:53:32 GMT" + }, + "chart" : { + "type" : "column" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "legend" : { + "enabled" : 0 + }, + "title" : { + "text" : "Perl Weekly Challenge - 041" + }, "series" : [ { + "colorByPoint" : 1, "name" : "Perl Weekly Challenge - 041", "data" : [ { @@ -9,44 +39,49 @@ "drilldown" : "Adam Russell" }, { - "drilldown" : "Andrezgz", "y" : 2, - "name" : "Andrezgz" + "name" : "Andrezgz", + "drilldown" : "Andrezgz" }, { - "y" : 3, + "drilldown" : "Arne Sommer", "name" : "Arne Sommer", - "drilldown" : "Arne Sommer" + "y" : 3 + }, + { + "y" : 4, + "drilldown" : "Colin Crain", + "name" : "Colin Crain" }, { "drilldown" : "Duncan C. White", - "y" : 2, - "name" : "Duncan C. White" + "name" : "Duncan C. White", + "y" : 2 }, { - "drilldown" : "E. Choroba", "y" : 2, + "drilldown" : "E. Choroba", "name" : "E. Choroba" }, { - "drilldown" : "Javier Luque", "name" : "Javier Luque", + "drilldown" : "Javier Luque", "y" : 5 }, { - "drilldown" : "Jo Christian Oterhals", + "y" : 2, "name" : "Jo Christian Oterhals", - "y" : 2 + "drilldown" : "Jo Christian Oterhals" }, { - "drilldown" : "Kevin Colyer", "name" : "Kevin Colyer", + "drilldown" : "Kevin Colyer", "y" : 2 }, { "name" : "Kivanc Yazan", - "y" : 2, - "drilldown" : "Kivanc Yazan" + "drilldown" : "Kivanc Yazan", + "y" : 2 }, { "y" : 5, @@ -55,80 +90,71 @@ }, { "drilldown" : "Lubos Kolouch", - "y" : 2, - "name" : "Lubos Kolouch" + "name" : "Lubos Kolouch", + "y" : 2 }, { - "name" : "Markus Holzer", "y" : 2, + "name" : "Markus Holzer", "drilldown" : "Markus Holzer" }, { + "name" : "Noud Aldenhoven", "drilldown" : "Noud Aldenhoven", - "y" : 2, - "name" : "Noud Aldenhoven" + "y" : 2 }, { - "name" : "Roger Bell West", "y" : 4, - "drilldown" : "Roger Bell West" + "drilldown" : "Roger Bell West", + "name" : "Roger Bell West" }, { "drilldown" : "Ruben Westerberg", - "y" : 4, - "name" : "Ruben Westerberg" + "name" : "Ruben Westerberg", + "y" : 4 }, { - "drilldown" : "Ryan Thompson", + "y" : 6, "name" : "Ryan Thompson", - "y" : 6 + "drilldown" : "Ryan Thompson" }, { + "name" : "Saif Ahmed", "drilldown" : "Saif Ahmed", - "y" : 2, - "name" : "Saif Ahmed" + "y" : 2 }, { "y" : 2, - "name" : "Simon Proctor", - "drilldown" : "Simon Proctor" + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" }, { - "y" : 1, + "drilldown" : "Steven Wilson", "name" : "Steven Wilson", - "drilldown" : "Steven Wilson" + "y" : 1 }, { - "y" : 4, "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke" + "drilldown" : "Ulrich Rieke", + "y" : 4 }, { "name" : "Walt Mankowski", - "y" : 2, - "drilldown" : "Walt Mankowski" + "drilldown" : "Walt Mankowski", + "y" : 2 }, { - "y" : 2, "name" : "Wanderdoc", - "drilldown" : "Wanderdoc" + "drilldown" : "Wanderdoc", + "y" : 2 } - ], - "colorByPoint" : 1 + ] } ], - "legend" : { - "enabled" : 0 - }, - "chart" : { - "type" : "column" - }, - "xAxis" : { - "type" : "category" - }, "drilldown" : { "series" : [ { + "id" : "Adam Russell", "name" : "Adam Russell", "data" : [ [ @@ -139,8 +165,7 @@ "Blog", 1 ] - ], - "id" : "Adam Russell" + ] }, { "id" : "Andrezgz", @@ -153,6 +178,7 @@ "name" : "Andrezgz" }, { + "name" : "Arne Sommer", "data" : [ [ "Raku", @@ -163,22 +189,35 @@ 1 ] ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + "id" : "Arne Sommer" }, { + "id" : "Colin Crain", "data" : [ [ "Perl", 2 + ], + [ + "Raku", + 2 ] ], - "id" : "Duncan C. White", - "name" : "Duncan C. White" + "name" : "Colin Crain" + }, + { + "name" : "Duncan C. White", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Duncan C. White" }, { - "name" : "E. Choroba", "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl", @@ -187,6 +226,7 @@ ] }, { + "id" : "Javier Luque", "name" : "Javier Luque", "data" : [ [ @@ -201,8 +241,7 @@ "Blog", 1 ] - ], - "id" : "Javier Luque" + ] }, { "id" : "Jo Christian Oterhals", @@ -215,8 +254,8 @@ "name" : "Jo Christian Oterhals" }, { - "name" : "Kevin Colyer", "id" : "Kevin Colyer", + "name" : "Kevin Colyer", "data" : [ [ "Raku", @@ -225,18 +264,16 @@ ] }, { - "name" : "Kivanc Yazan", "id" : "Kivanc Yazan", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Kivanc Yazan" }, { - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -250,40 +287,42 @@ "Blog", 1 ] - ] + ], + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] - ], - "name" : "Lubos Kolouch" + ] }, { + "id" : "Markus Holzer", "name" : "Markus Holzer", "data" : [ [ "Raku", 2 ] - ], - "id" : "Markus Holzer" + ] }, { "name" : "Noud Aldenhoven", - "id" : "Noud Aldenhoven", "data" : [ [ "Raku", 2 ] - ] + ], + "id" : "Noud Aldenhoven" }, { - "name" : "Roger Bell West", + "id" : "Roger Bell West", "data" : [ [ "Perl", @@ -294,7 +333,7 @@ 2 ] ], - "id" : "Roger Bell West" + "name" : "Roger Bell West" }, { "id" : "Ruben Westerberg", @@ -311,8 +350,6 @@ "name" : "Ruben Westerberg" }, { - "name" : "Ryan Thompson", - "id" : "Ryan Thompson", "data" : [ [ "Perl", @@ -326,7 +363,9 @@ "Blog", 2 ] - ] + ], + "name" : "Ryan Thompson", + "id" : "Ryan Thompson" }, { "id" : "Saif Ahmed", @@ -339,28 +378,26 @@ "name" : "Saif Ahmed" }, { - "id" : "Simon Proctor", "data" : [ [ "Raku", 2 ] ], - "name" : "Simon Proctor" + "name" : "Simon Proctor", + "id" : "Simon Proctor" }, { + "name" : "Steven Wilson", "data" : [ [ "Perl", 1 ] ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + "id" : "Steven Wilson" }, { - "name" : "Ulrich Rieke", - "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -370,53 +407,35 @@ "Raku", 2 ] - ] + ], + "name" : "Ulrich Rieke", + "id" : "Ulrich Rieke" }, { + "id" : "Walt Mankowski", "name" : "Walt Mankowski", "data" : [ [ "Perl", 2 ] - ], - "id" : "Walt Mankowski" + ] }, { "id" : "Wanderdoc", + "name" : "Wanderdoc", "data" : [ [ "Perl", 2 ] - ], - "name" : "Wanderdoc" + ] } ] }, - "subtitle" : { - "text" : "[Champions: 22] Last updated at 2020-01-05 22:17:53 GMT" - }, "tooltip" : { - "followPointer" : 1, "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" - }, - "title" : { - "text" : "Perl Weekly Challenge - 041" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } + "headerFormat" : "{series.name}
", + "followPointer" : 1 } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 3dd9f0d22c..1f79d15760 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,19 +1,47 @@ { - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } + "legend" : { + "enabled" : "false" }, + "series" : [ + { + "dataLabels" : { + "y" : 10, + "format" : "{point.y:.0f}", + "align" : "right", + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "enabled" : "true", + "color" : "#FFFFFF", + "rotation" : -90 + }, + "name" : "Contributions", + "data" : [ + [ + "Blog", + 444 + ], + [ + "Perl", + 1686 + ], + [ + "Raku", + 1018 + ] + ] + } + ], "title" : { "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" }, - "subtitle" : { - "text" : "Last updated at 2020-01-05 22:17:53 GMT" - }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, + "subtitle" : { + "text" : "Last updated at 2020-01-05 23:53:32 GMT" + }, "xAxis" : { "labels" : { "style" : { @@ -23,41 +51,13 @@ }, "type" : "category" }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } + }, "chart" : { "type" : "column" - }, - "legend" : { - "enabled" : "false" - }, - "series" : [ - { - "data" : [ - [ - "Blog", - 444 - ], - [ - "Perl", - 1684 - ], - [ - "Raku", - 1016 - ] - ], - "dataLabels" : { - "rotation" : -90, - "align" : "right", - "color" : "#FFFFFF", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "enabled" : "true", - "format" : "{point.y:.0f}", - "y" : 10 - }, - "name" : "Contributions" - } - ] + } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 5d2714f651..33f23e76a6 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,12 +1,12 @@ { - "xAxis" : { - "type" : "category" + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
" }, "drilldown" : { "series" : [ { - "name" : "001", - "id" : "001", "data" : [ [ "Perl", @@ -20,10 +20,12 @@ "Blog", 11 ] - ] + ], + "name" : "001", + "id" : "001" }, { - "id" : "002", + "name" : "002", "data" : [ [ "Perl", @@ -38,10 +40,9 @@ 10 ] ], - "name" : "002" + "id" : "002" }, { - "name" : "003", "data" : [ [ "Perl", @@ -56,9 +57,12 @@ 9 ] ], + "name" : "003", "id" : "003" }, { + "id" : "004", + "name" : "004", "data" : [ [ "Perl", @@ -72,13 +76,11 @@ "Blog", 10 ] - ], - "id" : "004", - "name" : "004" + ] }, { - "name" : "005", "id" : "005", + "name" : "005", "data" : [ [ "Perl", @@ -95,7 +97,6 @@ ] }, { - "name" : "006", "id" : "006", "data" : [ [ @@ -110,10 +111,11 @@ "Blog", 7 ] - ] + ], + "name" : "006" }, { - "name" : "007", + "id" : "007", "data" : [ [ "Perl", @@ -128,10 +130,9 @@ 10 ] ], - "id" : "007" + "name" : "007" }, { - "id" : "008", "data" : [ [ "Perl", @@ -146,7 +147,8 @@ 12 ] ], - "name" : "008" + "name" : "008", + "id" : "008" }, { "data" : [ @@ -163,10 +165,11 @@ 13 ] ], - "id" : "009", - "name" : "009" + "name" : "009", + "id" : "009" }, { + "id" : "010", "data" : [ [ "Perl", @@ -181,11 +184,9 @@ 11 ] ], - "id" : "010", "name" : "010" }, { - "name" : "011", "id" : "011", "data" : [ [ @@ -200,9 +201,11 @@ "Blog", 10 ] - ] + ], + "name" : "011" }, { + "name" : "012", "data" : [ [ "Perl", @@ -217,8 +220,7 @@ 11 ] ], - "id" : "012", - "name" : "012" + "id" : "012" }, { "id" : "013", @@ -240,6 +242,7 @@ }, { "id" : "014", + "name" : "014", "data" : [ [ "Perl", @@ -253,8 +256,7 @@ "Blog", 15 ] - ], - "name" : "014" + ] }, { "id" : "015", @@ -275,6 +277,8 @@ "name" : "015" }, { + "id" : "016", + "name" : "016", "data" : [ [ "Perl", @@ -288,13 +292,10 @@ "Blog", 12 ] - ], - "id" : "016", - "name" : "016" + ] }, { "name" : "017", - "id" : "017", "data" : [ [ "Perl", @@ -308,7 +309,8 @@ "Blog", 12 ] - ] + ], + "id" : "017" }, { "name" : "018", @@ -329,8 +331,8 @@ "id" : "018" }, { - "name" : "019", "id" : "019", + "name" : "019", "data" : [ [ "Perl", @@ -347,6 +349,7 @@ ] }, { + "name" : "020", "data" : [ [ "Perl", @@ -361,11 +364,10 @@ 13 ] ], - "id" : "020", - "name" : "020" + "id" : "020" }, { - "id" : "021", + "name" : "021", "data" : [ [ "Perl", @@ -380,10 +382,11 @@ 10 ] ], - "name" : "021" + "id" : "021" }, { "id" : "022", + "name" : "022", "data" : [ [ "Perl", @@ -397,12 +400,10 @@ "Blog", 10 ] - ], - "name" : "022" + ] }, { "name" : "023", - "id" : "023", "data" : [ [ "Perl", @@ -416,9 +417,11 @@ "Blog", 12 ] - ] + ], + "id" : "023" }, { + "name" : "024", "data" : [ [ "Perl", @@ -433,11 +436,10 @@ 11 ] ], - "id" : "024", - "name" : "024" + "id" : "024" }, { - "id" : "025", + "name" : "025", "data" : [ [ "Perl", @@ -452,10 +454,9 @@ 12 ] ], - "name" : "025" + "id" : "025" }, { - "name" : "026", "data" : [ [ "Perl", @@ -470,9 +471,11 @@ 10 ] ], + "name" : "026", "id" : "026" }, { + "id" : "027", "data" : [ [ "Perl", @@ -487,10 +490,10 @@ 9 ] ], - "id" : "027", "name" : "027" }, { + "id" : "028", "data" : [ [ "Perl", @@ -505,10 +508,10 @@ 9 ] ], - "id" : "028", "name" : "028" }, { + "id" : "029", "name" : "029", "data" : [ [ @@ -523,8 +526,7 @@ "Blog", 12 ] - ], - "id" : "029" + ] }, { "data" : [ @@ -541,12 +543,10 @@ 10 ] ], - "id" : "030", - "name" : "030" + "name" : "030", + "id" : "030" }, { - "name" : "031", - "id" : "031", "data" : [ [ "Perl", @@ -560,7 +560,9 @@ "Blog", 9 ] - ] + ], + "name" : "031", + "id" : "031" }, { "name" : "032", @@ -581,7 +583,7 @@ "id" : "032" }, { - "id" : "033", + "name" : "033", "data" : [ [ "Perl", @@ -596,11 +598,11 @@ 10 ] ], - "name" : "033" + "id" : "033" }, { - "name" : "034", "id" : "034", + "name" : "034", "data" : [ [ "Perl", @@ -617,8 +619,6 @@ ] }, { - "name" : "035", - "id" : "035", "data" : [ [ "Perl", @@ -632,9 +632,12 @@ "Blog", 9 ] - ] + ], + "name" : "035", + "id" : "035" }, { + "id" : "036", "name" : "036", "data" : [ [ @@ -649,10 +652,10 @@ "Blog", 10 ] - ], - "id" : "036" + ] }, { + "id" : "037", "name" : "037", "data" : [ [ @@ -667,10 +670,10 @@ "Blog", 9 ] - ], - "id" : "037" + ] }, { + "id" : "038", "data" : [ [ "Perl", @@ -685,11 +688,10 @@ 11 ] ], - "id" : "038", "name" : "038" }, { - "name" : "039", + "id" : "039", "data" : [ [ "Perl", @@ -704,7 +706,7 @@ 12 ] ], - "id" : "039" + "name" : "039" }, { "data" : [ @@ -721,19 +723,19 @@ 9 ] ], - "id" : "040", - "name" : "040" + "name" : "040", + "id" : "040" }, { "name" : "041", "data" : [ [ "Perl", - 31 + 33 ], [ "Raku", - 24 + 26 ], [ "Blog", @@ -744,19 +746,12 @@ } ] }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-05 22:17:53 GMT" - }, - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "Challenge {point.name}: {point.y:f}
" - }, - "legend" : { - "enabled" : "false" + "title" : { + "text" : "Perl Weekly Challenge Language" }, "series" : [ { + "colorByPoint" : "true", "data" : [ { "y" : 140, @@ -765,18 +760,18 @@ }, { "name" : "#002", - "y" : 109, - "drilldown" : "002" + "drilldown" : "002", + "y" : 109 }, { "y" : 71, - "name" : "#003", - "drilldown" : "003" + "drilldown" : "003", + "name" : "#003" }, { "y" : 91, - "name" : "#004", - "drilldown" : "004" + "drilldown" : "004", + "name" : "#004" }, { "y" : 71, @@ -789,48 +784,48 @@ "drilldown" : "006" }, { - "drilldown" : "007", + "y" : 56, "name" : "#007", - "y" : 56 + "drilldown" : "007" }, { - "name" : "#008", "y" : 70, + "name" : "#008", "drilldown" : "008" }, { + "name" : "#009", "drilldown" : "009", - "y" : 68, - "name" : "#009" + "y" : 68 }, { - "name" : "#010", "y" : 60, + "name" : "#010", "drilldown" : "010" }, { "y" : 79, - "name" : "#011", - "drilldown" : "011" + "drilldown" : "011", + "name" : "#011" }, { - "drilldown" : "012", + "y" : 83, "name" : "#012", - "y" : 83 + "drilldown" : "012" }, { - "drilldown" : "013", "name" : "#013", + "drilldown" : "013", "y" : 76 }, { + "y" : 96, "drilldown" : "014", - "name" : "#014", - "y" : 96 + "name" : "#014" }, { - "drilldown" : "015", "name" : "#015", + "drilldown" : "015", "y" : 93 }, { @@ -839,19 +834,19 @@ "drilldown" : "016" }, { - "name" : "#017", "y" : 79, + "name" : "#017", "drilldown" : "017" }, { - "name" : "#018", "y" : 76, + "name" : "#018", "drilldown" : "018" }, { + "name" : "#019", "drilldown" : "019", - "y" : 95, - "name" : "#019" + "y" : 95 }, { "y" : 95, @@ -859,19 +854,19 @@ "drilldown" : "020" }, { - "name" : "#021", "y" : 67, - "drilldown" : "021" + "drilldown" : "021", + "name" : "#021" }, { - "y" : 63, + "drilldown" : "022", "name" : "#022", - "drilldown" : "022" + "y" : 63 }, { "y" : 91, - "name" : "#023", - "drilldown" : "023" + "drilldown" : "023", + "name" : "#023" }, { "y" : 70, @@ -879,24 +874,24 @@ "drilldown" : "024" }, { - "y" : 55, "name" : "#025", - "drilldown" : "025" + "drilldown" : "025", + "y" : 55 }, { - "drilldown" : "026", "y" : 70, - "name" : "#026" + "name" : "#026", + "drilldown" : "026" }, { + "drilldown" : "027", "name" : "#027", - "y" : 58, - "drilldown" : "027" + "y" : 58 }, { - "y" : 78, "name" : "#028", - "drilldown" : "028" + "drilldown" : "028", + "y" : 78 }, { "drilldown" : "029", @@ -904,77 +899,71 @@ "y" : 77 }, { - "drilldown" : "030", "name" : "#030", + "drilldown" : "030", "y" : 115 }, { + "drilldown" : "031", "name" : "#031", - "y" : 87, - "drilldown" : "031" + "y" : 87 }, { "drilldown" : "032", - "y" : 92, - "name" : "#032" + "name" : "#032", + "y" : 92 }, { + "drilldown" : "033", "name" : "#033", - "y" : 108, - "drilldown" : "033" + "y" : 108 }, { "y" : 60, - "name" : "#034", - "drilldown" : "034" + "drilldown" : "034", + "name" : "#034" }, { + "name" : "#035", "drilldown" : "035", - "y" : 60, - "name" : "#035" + "y" : 60 }, { - "name" : "#036", "y" : 61, - "drilldown" : "036" + "drilldown" : "036", + "name" : "#036" }, { - "drilldown" : "037", "y" : 63, + "drilldown" : "037", "name" : "#037" }, { + "name" : "#038", "drilldown" : "038", - "y" : 60, - "name" : "#038" + "y" : 60 }, { + "drilldown" : "039", "name" : "#039", - "y" : 60, - "drilldown" : "039" + "y" : 60 }, { + "drilldown" : "040", "name" : "#040", - "y" : 66, - "drilldown" : "040" + "y" : 66 }, { - "drilldown" : "041", + "y" : 65, "name" : "#041", - "y" : 61 + "drilldown" : "041" } ], - "colorByPoint" : "true", "name" : "Perl Weekly Challenge Languages" } ], - "chart" : { - "type" : "column" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "legend" : { + "enabled" : "false" }, "plotOptions" : { "series" : { @@ -985,7 +974,18 @@ } } }, - "title" : { - "text" : "Perl Weekly Challenge Language" + "chart" : { + "type" : "column" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-05 23:53:32 GMT" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 233283e0b1..14c5d55512 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,7 +1,4 @@ { - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, "plotOptions" : { "series" : { "borderWidth" : 0, @@ -11,25 +8,31 @@ } } }, + "chart" : { + "type" : "column" + }, "yAxis" : { "title" : { "text" : "Total Score" } }, - "chart" : { - "type" : "column" + "xAxis" : { + "type" : "category" }, - "legend" : { - "enabled" : "false" + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-01-05 23:53:32 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, "series" : [ { - "name" : "Perl Weekly Challenge Leaders", "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders", "data" : [ { - "drilldown" : "Laurent Rosenfeld", "name" : "#1: Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld", "y" : 512 }, { @@ -38,14 +41,14 @@ "y" : 334 }, { - "drilldown" : "Jaldhar H. Vyas", "y" : 326, + "drilldown" : "Jaldhar H. Vyas", "name" : "#3: Jaldhar H. Vyas" }, { - "drilldown" : "Ruben Westerberg", + "y" : 324, "name" : "#4: Ruben Westerberg", - "y" : 324 + "drilldown" : "Ruben Westerberg" }, { "y" : 274, @@ -53,44 +56,44 @@ "drilldown" : "Adam Russell" }, { + "name" : "#6: Arne Sommer", "drilldown" : "Arne Sommer", - "y" : 252, - "name" : "#6: Arne Sommer" + "y" : 252 }, { - "y" : 220, "name" : "#7: E. Choroba", - "drilldown" : "E. Choroba" + "drilldown" : "E. Choroba", + "y" : 220 }, { - "drilldown" : "Roger Bell West", + "y" : 220, "name" : "#8: Roger Bell West", - "y" : 220 + "drilldown" : "Roger Bell West" }, { - "drilldown" : "Athanasius", "name" : "#9: Athanasius", + "drilldown" : "Athanasius", "y" : 208 }, { + "drilldown" : "Andrezgz", "name" : "#10: Andrezgz", - "y" : 166, - "drilldown" : "Andrezgz" + "y" : 166 }, { - "drilldown" : "Kian-Meng Ang", "y" : 162, - "name" : "#11: Kian-Meng Ang" + "name" : "#11: Kian-Meng Ang", + "drilldown" : "Kian-Meng Ang" }, { "drilldown" : "Simon Proctor", - "y" : 158, - "name" : "#12: Simon Proctor" + "name" : "#12: Simon Proctor", + "y" : 158 }, { + "y" : 144, "drilldown" : "Duncan C. White", - "name" : "#13: Duncan C. White", - "y" : 144 + "name" : "#13: Duncan C. White" }, { "y" : 132, @@ -99,87 +102,87 @@ }, { "name" : "#15: Steven Wilson", - "y" : 126, - "drilldown" : "Steven Wilson" + "drilldown" : "Steven Wilson", + "y" : 126 }, { - "name" : "#16: Yet Ebreo", "y" : 114, + "name" : "#16: Yet Ebreo", "drilldown" : "Yet Ebreo" }, { + "y" : 112, "drilldown" : "Kevin Colyer", - "name" : "#17: Kevin Colyer", - "y" : 112 + "name" : "#17: Kevin Colyer" }, { - "drilldown" : "Javier Luque", "name" : "#18: Javier Luque", + "drilldown" : "Javier Luque", "y" : 110 }, { - "drilldown" : "Duane Powell", "name" : "#19: Duane Powell", + "drilldown" : "Duane Powell", "y" : 104 }, { - "drilldown" : "Ryan Thompson", "y" : 102, + "drilldown" : "Ryan Thompson", "name" : "#20: Ryan Thompson" }, { - "drilldown" : "Francis Whittle", "name" : "#21: Francis Whittle", + "drilldown" : "Francis Whittle", "y" : 96 }, { - "y" : 90, "name" : "#22: Noud Aldenhoven", - "drilldown" : "Noud Aldenhoven" + "drilldown" : "Noud Aldenhoven", + "y" : 90 }, { - "name" : "#23: Feng Chang", "y" : 88, - "drilldown" : "Feng Chang" + "drilldown" : "Feng Chang", + "name" : "#23: Feng Chang" }, { + "y" : 84, + "drilldown" : "Colin Crain", + "name" : "#24: Colin Crain" + }, + { + "name" : "#25: Lubos Kolouch", "drilldown" : "Lubos Kolouch", - "name" : "#24: Lubos Kolouch", "y" : 84 }, { "y" : 82, - "name" : "#25: Daniel Mantovani", + "name" : "#26: Daniel Mantovani", "drilldown" : "Daniel Mantovani" }, { + "name" : "#27: Mark Senn", "drilldown" : "Mark Senn", - "y" : 80, - "name" : "#26: Mark Senn" + "y" : 80 }, { "drilldown" : "Burkhard Nickels", - "name" : "#27: Burkhard Nickels", + "name" : "#28: Burkhard Nickels", "y" : 76 }, { - "drilldown" : "Colin Crain", - "y" : 76, - "name" : "#28: Colin Crain" - }, - { - "drilldown" : "Gustavo Chaves", + "y" : 72, "name" : "#29: Gustavo Chaves", - "y" : 72 + "drilldown" : "Gustavo Chaves" }, { - "name" : "#30: Yozen Hernandez", "y" : 70, - "drilldown" : "Yozen Hernandez" + "drilldown" : "Yozen Hernandez", + "name" : "#30: Yozen Hernandez" }, { - "drilldown" : "Guillermo Ramos", "name" : "#31: Guillermo Ramos", + "drilldown" : "Guillermo Ramos", "y" : 64 }, { @@ -189,52 +192,52 @@ }, { "drilldown" : "Ulrich Rieke", - "y" : 60, - "name" : "#33: Ulrich Rieke" + "name" : "#33: Ulrich Rieke", + "y" : 60 }, { + "y" : 56, "drilldown" : "Ozzy", - "name" : "#34: Ozzy", - "y" : 56 + "name" : "#34: Ozzy" }, { "name" : "#35: Dr James A. Smith", - "y" : 52, - "drilldown" : "Dr James A. Smith" + "drilldown" : "Dr James A. Smith", + "y" : 52 }, { + "y" : 52, "drilldown" : "Randy Lauen", - "name" : "#36: Randy Lauen", - "y" : 52 + "name" : "#36: Randy Lauen" }, { - "drilldown" : "Dave Cross", + "y" : 46, "name" : "#37: Dave Cross", - "y" : 46 + "drilldown" : "Dave Cross" }, { - "y" : 44, + "drilldown" : "Daniel Mita", "name" : "#38: Daniel Mita", - "drilldown" : "Daniel Mita" + "y" : 44 }, { + "y" : 44, "drilldown" : "Veesh Goldman", - "name" : "#39: Veesh Goldman", - "y" : 44 + "name" : "#39: Veesh Goldman" }, { + "name" : "#40: Markus Holzer", "drilldown" : "Markus Holzer", - "y" : 40, - "name" : "#40: Markus Holzer" + "y" : 40 }, { "name" : "#41: Lars Balker", - "y" : 38, - "drilldown" : "Lars Balker" + "drilldown" : "Lars Balker", + "y" : 38 }, { - "drilldown" : "Mark Anderson", "name" : "#42: Mark Anderson", + "drilldown" : "Mark Anderson", "y" : 32 }, { @@ -243,55 +246,46 @@ "drilldown" : "Nick Logan" }, { + "drilldown" : "Kivanc Yazan", "name" : "#44: Kivanc Yazan", - "y" : 28, - "drilldown" : "Kivanc Yazan" + "y" : 28 }, { + "drilldown" : "Pete Houston", "name" : "#45: Pete Houston", - "y" : 28, - "drilldown" : "Pete Houston" + "y" : 28 }, { - "drilldown" : "Saif Ahmed", "name" : "#46: Saif Ahmed", + "drilldown" : "Saif Ahmed", "y" : 26 }, { - "drilldown" : "Jaime Corchado", "name" : "#47: Jaime Corchado", + "drilldown" : "Jaime Corchado", "y" : 24 }, { - "drilldown" : "Lars Thegler", "y" : 24, - "name" : "#48: Lars Thegler" + "name" : "#48: Lars Thegler", + "drilldown" : "Lars Thegler" }, { - "drilldown" : "Maxim Nechaev", "name" : "#49: Maxim Nechaev", + "drilldown" : "Maxim Nechaev", "y" : 24 }, { "drilldown" : "Alicia Bielsa", - "y" : 22, - "name" : "#50: Alicia Bielsa" + "name" : "#50: Alicia Bielsa", + "y" : 22 } ] } ], - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-01-05 22:17:53 GMT" - }, "drilldown" : { "series" : [ { - "id" : "Laurent Rosenfeld", "data" : [ [ "Blog", @@ -306,7 +300,8 @@ 81 ] ], - "name" : "Laurent Rosenfeld" + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { "name" : "Joelle Maslak", @@ -328,7 +323,6 @@ }, { "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ [ "Blog", @@ -342,9 +336,11 @@ "Raku", 70 ] - ] + ], + "id" : "Jaldhar H. Vyas" }, { + "name" : "Ruben Westerberg", "data" : [ [ "Perl", @@ -355,8 +351,7 @@ 81 ] ], - "id" : "Ruben Westerberg", - "name" : "Ruben Westerberg" + "id" : "Ruben Westerberg" }, { "name" : "Adam Russell", @@ -377,6 +372,8 @@ "id" : "Adam Russell" }, { + "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ [ "Blog", @@ -390,11 +387,10 @@ "Raku", 82 ] - ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + ] }, { + "id" : "E. Choroba", "name" : "E. Choroba", "data" : [ [ @@ -405,11 +401,10 @@ "Perl", 75 ] - ], - "id" : "E. Choroba" + ] }, { - "id" : "Roger Bell West", + "name" : "Roger Bell West", "data" : [ [ "Blog", @@ -424,7 +419,7 @@ 33 ] ], - "name" : "Roger Bell West" + "id" : "Roger Bell West" }, { "data" : [ @@ -441,20 +436,21 @@ 38 ] ], - "id" : "Athanasius", - "name" : "Athanasius" + "name" : "Athanasius", + "id" : "Athanasius" }, { - "name" : "Andrezgz", - "id" : "Andrezgz", "data" : [ [ "Perl", 83 ] - ] + ], + "name" : "Andrezgz", + "id" : "Andrezgz" }, { + "name" : "Kian-Meng Ang", "data" : [ [ "Blog", @@ -465,10 +461,10 @@ 38 ] ], - "id" : "Kian-Meng Ang", - "name" : "Kian-Meng Ang" + "id" : "Kian-Meng Ang" }, { + "id" : "Simon Proctor", "name" : "Simon Proctor", "data" : [ [ @@ -483,11 +479,10 @@ "Raku", 67 ] - ], - "id" : "Simon Proctor" + ] }, { - "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ [ "Blog", @@ -498,11 +493,11 @@ 71 ] ], - "name" : "Duncan C. White" + "id" : "Duncan C. White" }, { - "name" : "Dave Jacoby", "id" : "Dave Jacoby", + "name" : "Dave Jacoby", "data" : [ [ "Blog", @@ -519,7 +514,6 @@ ] }, { - "id" : "Steven Wilson", "data" : [ [ "Blog", @@ -534,9 +528,11 @@ 1 ] ], - "name" : "Steven Wilson" + "name" : "Steven Wilson", + "id" : "Steven Wilson" }, { + "id" : "Yet Ebreo", "data" : [ [ "Blog", @@ -551,10 +547,10 @@ 21 ] ], - "id" : "Yet Ebreo", "name" : "Yet Ebreo" }, { + "name" : "Kevin Colyer", "data" : [ [ "Blog", @@ -569,12 +565,10 @@ 53 ] ], - "id" : "Kevin Colyer", - "name" : "Kevin Colyer" + "id" : "Kevin Colyer" }, { "name" : "Javier Luque", - "id" : "Javier Luque", "data" : [ [ "Blog", @@ -588,7 +582,8 @@ "Raku", 22 ] - ] + ], + "id" : "Javier Luque" }, { "data" : [ @@ -597,10 +592,11 @@ 52 ] ], - "id" : "Duane Powell", - "name" : "Duane Powell" + "name" : "Duane Powell", + "id" : "Duane Powell" }, { + "id" : "Ryan Thompson", "data" : [ [ "Blog", @@ -615,7 +611,6 @@ 21 ] ], - "id" : "Ryan Thompson", "name" : "Ryan Thompson" }, { @@ -629,12 +624,12 @@ 39 ]