From 6fe50139a785056a18bb035967d826c64b12f3e1 Mon Sep 17 00:00:00 2001 From: user-person Date: Sat, 22 Feb 2020 18:07:44 -0500 Subject: User person's solutions for challenge 48 --- challenge-048/user-person/.DS_Store | Bin 0 -> 6148 bytes challenge-048/user-person/perl/ch-1.pl | 64 ++++++++++++++++++++++++ challenge-048/user-person/perl/ch-2.pl | 81 +++++++++++++++++++++++++++++++ challenge-048/user-person/python/ch-1.py | 61 +++++++++++++++++++++++ challenge-048/user-person/python/ch-2.py | 74 ++++++++++++++++++++++++++++ 5 files changed, 280 insertions(+) create mode 100644 challenge-048/user-person/.DS_Store create mode 100755 challenge-048/user-person/perl/ch-1.pl create mode 100755 challenge-048/user-person/perl/ch-2.pl create mode 100755 challenge-048/user-person/python/ch-1.py create mode 100755 challenge-048/user-person/python/ch-2.py diff --git a/challenge-048/user-person/.DS_Store b/challenge-048/user-person/.DS_Store new file mode 100644 index 0000000000..921f2b82b8 Binary files /dev/null and b/challenge-048/user-person/.DS_Store differ diff --git a/challenge-048/user-person/perl/ch-1.pl b/challenge-048/user-person/perl/ch-1.pl new file mode 100755 index 0000000000..f9d10c9b93 --- /dev/null +++ b/challenge-048/user-person/perl/ch-1.pl @@ -0,0 +1,64 @@ + #!/usr/bin/env perl + +########################################################################### +# script name: ch-1.pl # +# # +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-048/ # +# # +# Survivor # +# There are 50 people standing in a circle in position 1 to 50. # +# The person standing at position 1 has a sword. He kills the next person # +# i.e. standing at position 2 and pass on the sword to the immediate next # +# i.e. person standing at position 3. Now the person at position 3 does # +# the same and it goes on until only one survives. # +# # +# Write a script to find out the survivor. # +# # +# # +########################################################################### + +use strict; +use warnings; +use Getopt::Long; + +GetOptions(\my %option, 'verbose|v') or die "Bad options\n"; + +# -v or --verbose for detailed output. + +my @circle = ( 1 .. 50 ); + +for (my $i = 1; scalar @circle > 1 ; ++$i) { + + print "i: $i\n" if $option{verbose}; + + my $victim = splice(@circle, $i, 1); + + if ($option{verbose}) { + + print $circle[$i-1] . " killed " . $victim . "\n"; + print "@circle\n\n"; + + } + + # When the end of the array is reached, + # roll back the index to go back around the circle for another iteration. + # In odd cases the next victim will be 0. In even cases it will be 1. + # These have to be adjusted due to the for loop's incrementing: -1 for odd, 0 for even. + + if ( $#circle - $i == 0) { + + $i = -1; + + } elsif ( $#circle - $i == -1) { + + $i = 0; + + } +} + +print "@circle survives\n"; + +__END__ +output: + +37 survives diff --git a/challenge-048/user-person/perl/ch-2.pl b/challenge-048/user-person/perl/ch-2.pl new file mode 100755 index 0000000000..6c6455c20e --- /dev/null +++ b/challenge-048/user-person/perl/ch-2.pl @@ -0,0 +1,81 @@ +#!/usr/bin/env perl + +########################################################################### +# script name: ch-2.pl # +# Mon Feb 17 01:12:07 2020 | 1581919927 # +# # +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-048/ # +# # +# Palindrome Dates # +# Write a script to print all Palindrome Dates between 2000 and 2999. # +# The format of date is mmddyyyy. For example, the first one was on # +# October 2, 2001 as it is represented as 10022001. # +# # +########################################################################### + +use strict; +use warnings; + +# M M D D Y Y Y Y +# [01][*][012][2][2][012][*][01] +# $k $j $i $i $j $k +# +# $k - Months can only begin with 0 or 1. +# $j - The second months digit needs all numbers e.g. January 01 to October 10 (and of course beyond). +# $i - Days begin with 0,1,2,3, However all years begin with 2 so the cooresponding number +# means all days end in 2. 32 is not a valid day so the 3 is not needed. + +for ( my $i=0; $i < 3; ++$i ){ + + for ( my $j=0; $j < 10; ++$j ){ + + EDGES: + for ( my $k=0; $k < 2; ++$k ){ + + if (( $k == 1 and $j > 2 ) or ( $k == 0 and $j == 0 )) { # Months cannot be > 12 or 00 + next EDGES; + } + print "$k$j-${i}2-2$i$j$k\n"; + } + } +} + +__END__ +output: + +10-02-2001 +01-02-2010 +11-02-2011 +02-02-2020 +12-02-2021 +03-02-2030 +04-02-2040 +05-02-2050 +06-02-2060 +07-02-2070 +08-02-2080 +09-02-2090 +10-12-2101 +01-12-2110 +11-12-2111 +02-12-2120 +12-12-2121 +03-12-2130 +04-12-2140 +05-12-2150 +06-12-2160 +07-12-2170 +08-12-2180 +09-12-2190 +10-22-2201 +01-22-2210 +11-22-2211 +02-22-2220 +12-22-2221 +03-22-2230 +04-22-2240 +05-22-2250 +06-22-2260 +07-22-2270 +08-22-2280 +09-22-2290 diff --git a/challenge-048/user-person/python/ch-1.py b/challenge-048/user-person/python/ch-1.py new file mode 100755 index 0000000000..11f9da380e --- /dev/null +++ b/challenge-048/user-person/python/ch-1.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python3 + +########################################################################### +# script name: ch-1.py # +# Tue Feb 18 21:13:07 2020 | 1582078387 # +# jtangele+python@gmail.com # +# # +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-048/ # +# # +# Survivor # +# There are 50 people standing in a circle in position 1 to 50. # +# The person standing at position 1 has a sword. He kills the next person # +# i.e. standing at position 2 and pass on the sword to the immediate next # +# i.e. person standing at position 3. Now the person at position 3 does # +# the same and it goes on until only one survives. # +# # +# Write a script to find out the survivor. # +# # +########################################################################### + +from optparse import OptionParser + +parser = OptionParser() + +parser.add_option("-v","--verbose",action="store_true", dest="verbose") +(options, args) = parser.parse_args() + +circle = list(range(1,51)) + +i = 1 + +while len(circle) > 1: + + if options.verbose: + print ("i : ",i) + + victim = circle.pop(i) + + if options.verbose: + print(circle[i-1], " killed ", victim) + print(*circle, sep =" ") + print() + + # When the end of the array is reached, + # roll back the index to go back around the circle for another iteration. + # In odd cases the next victim will be 0. In even cases it will be 1. + # These have to be adjusted due to the for loop's incrementing -1 for odd, 0 for even. + + if (len(circle)-1) - i == 0: + i = -1 + + elif (len(circle)-1) - i == -1 : + i = 0 + + i += 1 + +print(*circle, " survives") + +# output: +# +# 37 survives diff --git a/challenge-048/user-person/python/ch-2.py b/challenge-048/user-person/python/ch-2.py new file mode 100755 index 0000000000..e7d287ee4d --- /dev/null +++ b/challenge-048/user-person/python/ch-2.py @@ -0,0 +1,74 @@ +#!/usr/bin/env python3 + +########################################################################### +# script name: ch-2.py # +# Tue Feb 18 23:48:19 2020 | 1582087699 # +# jtangele+python@gmail.com # +# # +# # +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-048/ # +# # +# Palindrome Dates # +# Write a script to print all Palindrome Dates between 2000 and 2999. # +# The format of date is mmddyyyy. For example, the first one was on # +# October 2, 2001 as it is represented as 10022001. # +# # +########################################################################### + +# M M D D Y Y Y Y +# [01][*][012][2][2][012][*][01] +# k j i i j k +# +# k - Months can only begin with 0 or 1. +# j - The second months digit needs all numbers e.g. January 01 to October 10 (and of course beyond). +# i - Days begin with 0,1,2,3, However all years begin with 2 so the corresponding number +# means all days end in 2. 32 is not a valid day so the 3 is not needed. + +for i in range(3): + for j in range(10): + for k in range(2): + if (k == 1 and j > 2) or (k == 0 and j == 0): + continue + print(k,j,"-",i,"2-2",i,j,k,sep='') + k += 1 + j += 1 + i += 1 + +# output: +# +# 10-02-2001 +# 01-02-2010 +# 11-02-2011 +# 02-02-2020 +# 12-02-2021 +# 03-02-2030 +# 04-02-2040 +# 05-02-2050 +# 06-02-2060 +# 07-02-2070 +# 08-02-2080 +# 09-02-2090 +# 10-12-2101 +# 01-12-2110 +# 11-12-2111 +# 02-12-2120 +# 12-12-2121 +# 03-12-2130 +# 04-12-2140 +# 05-12-2150 +# 06-12-2160 +# 07-12-2170 +# 08-12-2180 +# 09-12-2190 +# 10-22-2201 +# 01-22-2210 +# 11-22-2211 +# 02-22-2220 +# 12-22-2221 +# 03-22-2230 +# 04-22-2240 +# 05-22-2250 +# 06-22-2260 +# 07-22-2270 +# 08-22-2280 +# 09-22-2290 -- cgit From f35ebb13433887c02b92a5fd1b3169d46f8dc70c Mon Sep 17 00:00:00 2001 From: southpawgeek Date: Mon, 24 Feb 2020 08:15:07 -0500 Subject: solution 1, template for solution 2 --- challenge-049/southpawgeek/ch-1.pl | 13 +++++++++++++ challenge-049/southpawgeek/ch-2.pl | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 challenge-049/southpawgeek/ch-1.pl create mode 100644 challenge-049/southpawgeek/ch-2.pl diff --git a/challenge-049/southpawgeek/ch-1.pl b/challenge-049/southpawgeek/ch-1.pl new file mode 100644 index 0000000000..8f7c7dce76 --- /dev/null +++ b/challenge-049/southpawgeek/ch-1.pl @@ -0,0 +1,13 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + +my ($int) = @ARGV; +die "$int isn't an int! \n" if $int =~ /\D/; +say "checking $int"; + +for (my $i = 1;;$i++){ + my $bin = sprintf("%b", $i); + say "$bin is the smallest 0/1 multiple of $int" and last unless $bin % $int; +} diff --git a/challenge-049/southpawgeek/ch-2.pl b/challenge-049/southpawgeek/ch-2.pl new file mode 100644 index 0000000000..d2488c6d53 --- /dev/null +++ b/challenge-049/southpawgeek/ch-2.pl @@ -0,0 +1,33 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + +my ($size) = @ARGV; +die "$size isn't an int! \n" if $size =~ /\D/; +$size = 3 unless $size; +say "set cache size to $size"; + +set(1, 3); +set(2, 5); +set(3, 7); +get(2); +get(1); +get(4); +set(4, 9); +get(3); + +my (%cache, @keys); + +sub set { + my ($key, $value) = @_; + push @keys, $key; + $cache{$key} = $value; + say "key order.. @keys"; +} + +sub get { + my $key = shift; + say $cache{$key}; + say "key order.. @keys"; +} -- cgit From f611d058945c45c5da204dc864b816e32fd9cc4c Mon Sep 17 00:00:00 2001 From: "E. Choroba" Date: Tue, 25 Feb 2020 01:32:08 +0100 Subject: Add solutions to 049 (Smallest Multiple + LRU Cache) by E. Choroba --- challenge-049/e-choroba/perl/ch-1a.pl | 14 ++++++ challenge-049/e-choroba/perl/ch-1b.pl | 28 ++++++++++++ challenge-049/e-choroba/perl/ch-2.pl | 85 +++++++++++++++++++++++++++++++++++ 3 files changed, 127 insertions(+) create mode 100755 challenge-049/e-choroba/perl/ch-1a.pl create mode 100755 challenge-049/e-choroba/perl/ch-1b.pl create mode 100755 challenge-049/e-choroba/perl/ch-2.pl diff --git a/challenge-049/e-choroba/perl/ch-1a.pl b/challenge-049/e-choroba/perl/ch-1a.pl new file mode 100755 index 0000000000..fe8f988745 --- /dev/null +++ b/challenge-049/e-choroba/perl/ch-1a.pl @@ -0,0 +1,14 @@ +#!/usr/bin/perl +use warnings; +use strict; +use feature qw{ say }; + +my $x = shift; +say smallest_multiple($x); + +sub smallest_multiple { + my ($n) = @_; + my $r = $n; + $r += $n until $r =~ /^[01]+$/; + $r +} diff --git a/challenge-049/e-choroba/perl/ch-1b.pl b/challenge-049/e-choroba/perl/ch-1b.pl new file mode 100755 index 0000000000..84fc5c711c --- /dev/null +++ b/challenge-049/e-choroba/perl/ch-1b.pl @@ -0,0 +1,28 @@ +#!/usr/bin/perl +use warnings; +use strict; +use feature qw{ say }; + +my $x = shift; +say smallest_multiple($x); + +sub smallest_multiple { + my ($n) = @_; + return 0 unless $n; + + my $binary = 1 . (0 x (length($n) - 1)); + increment($binary) while $binary % $n; + $binary +} + +sub increment { + my $pos = rindex $_[0], 0; + if ($pos > -1) { + substr $_[0], $pos, 1, '1'; + substr $_[0], $pos + 1, length($_[0]) - $pos - 1, + '0' x (length($_[0]) - $pos - 1); + } else { + $_[0] = '1' . ('0' x length $_[0]); + } +} + diff --git a/challenge-049/e-choroba/perl/ch-2.pl b/challenge-049/e-choroba/perl/ch-2.pl new file mode 100755 index 0000000000..5bd6e64aaf --- /dev/null +++ b/challenge-049/e-choroba/perl/ch-2.pl @@ -0,0 +1,85 @@ +#!/usr/bin/perl +use warnings; +use strict; +use feature qw{ say }; + +{ package Cache::LRU; + use enum qw( CAPACITY HASH ARRAY ); + use enum qw( POS VALUE ); + + sub new { + my ($class, $capacity) = @_; + bless [$capacity, {}, []], $class + } + + sub capacity { $_[0][CAPACITY] } + + sub _last { $#{ $_[0][ARRAY] } } + + sub _value { $_[0][HASH]{ $_[1] }[VALUE] } + + sub _pos :lvalue { $_[0][HASH]{ $_[1] }[POS] } + + sub _move_to_start { + my ($self, $key, $value, $size) = @_; + $value //= $self->_value($key); + my $pos = exists $self->[HASH]{$key} + ? $self->_pos($key) + : 1 + $self->_last; + @{ $self->[HASH]{$key} }[POS, VALUE] = (0, $value); + splice @{ $self->[ARRAY] }, $pos, 1; + unshift @{ $self->[ARRAY] }, $key; + ++$self->_pos($_) + for @{ $self->[ARRAY] }[1 .. $pos]; + } + + sub get { + my ($self, $key) = @_; + return undef unless exists $self->[HASH]{$key}; + + $self->_move_to_start($key); + return $self->_value($key) + } + + sub set { + my ($self, $key, $value) = @_; + $self->_move_to_start($key, $value); + delete $self->[HASH]{ pop @{ $self->[ARRAY] } } + if $self->_last == $self->capacity; + } + + sub inspect { + reverse @{ $_[0][ARRAY] } + } +} + +use Test::More; + +my $c = 'Cache::LRU'->new(3); +$c->set(1, 3); + +$c->set(2, 5); + +$c->set(3, 7); + +is_deeply [$c->inspect], [1, 2, 3]; + +is $c->get(2), 5, 'get 2'; + +is_deeply [$c->inspect], [1, 3, 2]; + +is $c->get(1), 3, 'get 1'; + +is_deeply [$c->inspect], [3, 2, 1]; + +is $c->get(4), undef, 'get 4'; + +is_deeply [$c->inspect], [3, 2, 1]; + +$c->set(4, 9); + +is_deeply [$c->inspect], [2, 1, 4]; + +is $c->get(3), undef, 'get 3'; + +done_testing(); -- cgit From 0f6260120be35fc120f9d711790e7094e99fb72e Mon Sep 17 00:00:00 2001 From: southpawgeek Date: Mon, 24 Feb 2020 23:07:12 -0500 Subject: fixed challenge to account for 1s *and* 0s --- challenge-049/southpawgeek/ch-1.pl | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/challenge-049/southpawgeek/ch-1.pl b/challenge-049/southpawgeek/ch-1.pl index 8f7c7dce76..4edfd257c9 100644 --- a/challenge-049/southpawgeek/ch-1.pl +++ b/challenge-049/southpawgeek/ch-1.pl @@ -5,9 +5,15 @@ use feature qw/say/; my ($int) = @ARGV; die "$int isn't an int! \n" if $int =~ /\D/; -say "checking $int"; -for (my $i = 1;;$i++){ +for (my $i = 2;;$i++){ my $bin = sprintf("%b", $i); - say "$bin is the smallest 0/1 multiple of $int" and last unless $bin % $int; + next if $bin == $int; + + # we know it starts with 1, but make sure there's at least one 0 + next unless $bin =~ /0+/; + + say "$bin is the smallest multiple of $int with 1s *and* 0s." + and last + unless $bin % $int; } -- cgit From 760832cf1baeb640d6c9723460b1f921fe10986f Mon Sep 17 00:00:00 2001 From: "Markus \"Holli\" Holzer" Date: Tue, 25 Feb 2020 07:46:05 +0100 Subject: Solution #1 --- challenge-048/markus-holzer/raku/ch-1.p6 | 2 +- challenge-049/markus-holzer/raku/ch-1.p6 | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 challenge-049/markus-holzer/raku/ch-1.p6 diff --git a/challenge-048/markus-holzer/raku/ch-1.p6 b/challenge-048/markus-holzer/raku/ch-1.p6 index 3b8d44cd6c..97ec1a5a18 100644 --- a/challenge-048/markus-holzer/raku/ch-1.p6 +++ b/challenge-048/markus-holzer/raku/ch-1.p6 @@ -4,7 +4,7 @@ # # A concise version of this looks like -given my @men = 1..50 { .push( .splice(0,2).first ) while .elems > 1 }; +given my @men = 1..50 { .push( .splice(0,2).first ) while .elems }; say @men.first; # But, the problem naturally lends itself to be expressed in terms of a circular linked list, diff --git a/challenge-049/markus-holzer/raku/ch-1.p6 b/challenge-049/markus-holzer/raku/ch-1.p6 new file mode 100644 index 0000000000..5793330e98 --- /dev/null +++ b/challenge-049/markus-holzer/raku/ch-1.p6 @@ -0,0 +1,4 @@ +sub MAIN( $n ) +{ + say (1, 10, { $_ %% 2 ?? $_ + 1 !! $_ * 10 } ... *).first( * %% $n ); +} \ No newline at end of file -- cgit From 4eac79a8077d5901fc6158be32d5cffe693ef953 Mon Sep 17 00:00:00 2001 From: "Markus \"Holli\" Holzer" Date: Tue, 25 Feb 2020 07:51:48 +0100 Subject: oopsie --- challenge-048/markus-holzer/raku/ch-1.p6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-048/markus-holzer/raku/ch-1.p6 b/challenge-048/markus-holzer/raku/ch-1.p6 index 97ec1a5a18..3b8d44cd6c 100644 --- a/challenge-048/markus-holzer/raku/ch-1.p6 +++ b/challenge-048/markus-holzer/raku/ch-1.p6 @@ -4,7 +4,7 @@ # # A concise version of this looks like -given my @men = 1..50 { .push( .splice(0,2).first ) while .elems }; +given my @men = 1..50 { .push( .splice(0,2).first ) while .elems > 1 }; say @men.first; # But, the problem naturally lends itself to be expressed in terms of a circular linked list, -- cgit From 82d6696419db53bb008faadf5de6df30c64f3cc3 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 25 Feb 2020 11:18:11 +0000 Subject: - Added solutions by E. Choroba. --- challenge-049/e-choroba/perl/ch-1.pl | 14 + challenge-049/e-choroba/perl/ch-1a.pl | 20 +- challenge-049/e-choroba/perl/ch-1b.pl | 28 -- stats/pwc-current.json | 151 +++--- stats/pwc-language-breakdown-summary.json | 56 +-- stats/pwc-language-breakdown.json | 734 +++++++++++++++--------------- stats/pwc-leaders.json | 714 ++++++++++++++--------------- stats/pwc-summary-1-30.json | 112 ++--- stats/pwc-summary-121-150.json | 50 +- stats/pwc-summary-31-60.json | 42 +- stats/pwc-summary-61-90.json | 40 +- stats/pwc-summary-91-120.json | 102 ++--- stats/pwc-summary.json | 42 +- 13 files changed, 1060 insertions(+), 1045 deletions(-) create mode 100755 challenge-049/e-choroba/perl/ch-1.pl delete mode 100755 challenge-049/e-choroba/perl/ch-1b.pl diff --git a/challenge-049/e-choroba/perl/ch-1.pl b/challenge-049/e-choroba/perl/ch-1.pl new file mode 100755 index 0000000000..fe8f988745 --- /dev/null +++ b/challenge-049/e-choroba/perl/ch-1.pl @@ -0,0 +1,14 @@ +#!/usr/bin/perl +use warnings; +use strict; +use feature qw{ say }; + +my $x = shift; +say smallest_multiple($x); + +sub smallest_multiple { + my ($n) = @_; + my $r = $n; + $r += $n until $r =~ /^[01]+$/; + $r +} diff --git a/challenge-049/e-choroba/perl/ch-1a.pl b/challenge-049/e-choroba/perl/ch-1a.pl index fe8f988745..84fc5c711c 100755 --- a/challenge-049/e-choroba/perl/ch-1a.pl +++ b/challenge-049/e-choroba/perl/ch-1a.pl @@ -8,7 +8,21 @@ say smallest_multiple($x); sub smallest_multiple { my ($n) = @_; - my $r = $n; - $r += $n until $r =~ /^[01]+$/; - $r + return 0 unless $n; + + my $binary = 1 . (0 x (length($n) - 1)); + increment($binary) while $binary % $n; + $binary +} + +sub increment { + my $pos = rindex $_[0], 0; + if ($pos > -1) { + substr $_[0], $pos, 1, '1'; + substr $_[0], $pos + 1, length($_[0]) - $pos - 1, + '0' x (length($_[0]) - $pos - 1); + } else { + $_[0] = '1' . ('0' x length $_[0]); + } } + diff --git a/challenge-049/e-choroba/perl/ch-1b.pl b/challenge-049/e-choroba/perl/ch-1b.pl deleted file mode 100755 index 84fc5c711c..0000000000 --- a/challenge-049/e-choroba/perl/ch-1b.pl +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/perl -use warnings; -use strict; -use feature qw{ say }; - -my $x = shift; -say smallest_multiple($x); - -sub smallest_multiple { - my ($n) = @_; - return 0 unless $n; - - my $binary = 1 . (0 x (length($n) - 1)); - increment($binary) while $binary % $n; - $binary -} - -sub increment { - my $pos = rindex $_[0], 0; - if ($pos > -1) { - substr $_[0], $pos, 1, '1'; - substr $_[0], $pos + 1, length($_[0]) - $pos - 1, - '0' x (length($_[0]) - $pos - 1); - } else { - $_[0] = '1' . ('0' x length $_[0]); - } -} - diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 6a6bdfcf9f..f07447edb5 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,12 +1,74 @@ { + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" + }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "name" : "E. Choroba", + "drilldown" : "E. Choroba", + "y" : 2 + }, + { + "name" : "Luca Ferrari", + "y" : 4, + "drilldown" : "Luca Ferrari" + }, + { + "name" : "Mohammad S Anwar", + "y" : 3, + "drilldown" : "Mohammad S Anwar" + }, + { + "name" : "Peter Scott", + "y" : 1, + "drilldown" : "Peter Scott" + }, + { + "name" : "Roger Bell West", + "y" : 4, + "drilldown" : "Roger Bell West" + }, + { + "name" : "Simon Proctor", + "y" : 2, + "drilldown" : "Simon Proctor" + }, + { + "drilldown" : "Wanderdoc", + "y" : 2, + "name" : "Wanderdoc" + } + ], + "name" : "Perl Weekly Challenge - 049" + } + ], "yAxis" : { "title" : { "text" : "Total Solutions" } }, + "xAxis" : { + "type" : "category" + }, "drilldown" : { "series" : [ { + "id" : "E. Choroba", + "name" : "E. Choroba", + "data" : [ + [ + "Perl", + 2 + ] + ] + }, + { + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -17,11 +79,10 @@ 2 ] ], - "name" : "Luca Ferrari", - "id" : "Luca Ferrari" + "name" : "Luca Ferrari" }, { - "name" : "Mohammad S Anwar", + "id" : "Mohammad S Anwar", "data" : [ [ "Perl", @@ -32,19 +93,21 @@ 1 ] ], - "id" : "Mohammad S Anwar" + "name" : "Mohammad S Anwar" }, { + "id" : "Peter Scott", "data" : [ [ "Perl", 1 ] ], - "name" : "Peter Scott", - "id" : "Peter Scott" + "name" : "Peter Scott" }, { + "id" : "Roger Bell West", + "name" : "Roger Bell West", "data" : [ [ "Perl", @@ -54,9 +117,7 @@ "Raku", 2 ] - ], - "name" : "Roger Bell West", - "id" : "Roger Bell West" + ] }, { "name" : "Simon Proctor", @@ -69,82 +130,36 @@ "id" : "Simon Proctor" }, { + "id" : "Wanderdoc", "name" : "Wanderdoc", "data" : [ [ "Perl", 2 ] - ], - "id" : "Wanderdoc" + ] } ] }, - "chart" : { - "type" : "column" + "title" : { + "text" : "Perl Weekly Challenge - 049" + }, + "subtitle" : { + "text" : "[Champions: 7] Last updated at 2020-02-25 11:18:01 GMT" }, - "series" : [ - { - "data" : [ - { - "y" : 4, - "name" : "Luca Ferrari", - "drilldown" : "Luca Ferrari" - }, - { - "y" : 3, - "drilldown" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar" - }, - { - "drilldown" : "Peter Scott", - "name" : "Peter Scott", - "y" : 1 - }, - { - "y" : 4, - "name" : "Roger Bell West", - "drilldown" : "Roger Bell West" - }, - { - "y" : 2, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "name" : "Wanderdoc", - "drilldown" : "Wanderdoc", - "y" : 2 - } - ], - "name" : "Perl Weekly Challenge - 049", - "colorByPoint" : 1 - } - ], "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 } }, "legend" : { "enabled" : 0 }, - "subtitle" : { - "text" : "[Champions: 6] Last updated at 2020-02-24 19:01:00 GMT" - }, - "xAxis" : { - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge - 049" - }, - "tooltip" : { - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 00b251d8db..5f2cf7b3e3 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,47 +1,32 @@ { - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, "title" : { "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" }, - "xAxis" : { - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - }, - "type" : "category" - }, "subtitle" : { - "text" : "Last updated at 2020-02-24 19:01:00 GMT" + "text" : "Last updated at 2020-02-25 11:18:01 GMT" }, "legend" : { "enabled" : "false" }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, "series" : [ { "dataLabels" : { "align" : "right", - "rotation" : -90, - "enabled" : "true", + "format" : "{point.y:.0f}", "style" : { "fontSize" : "13px", "fontFamily" : "Verdana, sans-serif" }, "y" : 10, - "format" : "{point.y:.0f}", - "color" : "#FFFFFF" + "color" : "#FFFFFF", + "rotation" : -90, + "enabled" : "true" }, "name" : "Contributions", "data" : [ @@ -51,7 +36,7 @@ ], [ "Perl", - 2008 + 2010 ], [ "Raku", @@ -59,5 +44,20 @@ ] ] } - ] + ], + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } + } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 68a55d9306..2c36853248 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,14 +1,294 @@ { + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-02-25 11:18:01 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "chart" : { + "type" : "column" + }, + "legend" : { + "enabled" : "false" + }, + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
" + }, + "series" : [ + { + "colorByPoint" : "true", + "data" : [ + { + "name" : "#001", + "y" : 140, + "drilldown" : "001" + }, + { + "drilldown" : "002", + "y" : 109, + "name" : "#002" + }, + { + "name" : "#003", + "y" : 71, + "drilldown" : "003" + }, + { + "drilldown" : "004", + "y" : 91, + "name" : "#004" + }, + { + "drilldown" : "005", + "y" : 71, + "name" : "#005" + }, + { + "name" : "#006", + "y" : 48, + "drilldown" : "006" + }, + { + "name" : "#007", + "y" : 56, + "drilldown" : "007" + }, + { + "drilldown" : "008", + "y" : 70, + "name" : "#008" + }, + { + "drilldown" : "009", + "y" : 68, + "name" : "#009" + }, + { + "name" : "#010", + "y" : 60, + "drilldown" : "010" + }, + { + "y" : 79, + "drilldown" : "011", + "name" : "#011" + }, + { + "y" : 83, + "drilldown" : "012", + "name" : "#012" + }, + { + "drilldown" : "013", + "y" : 76, + "name" : "#013" + }, + { + "name" : "#014", + "drilldown" : "014", + "y" : 96 + }, + { + "name" : "#015", + "y" : 93, + "drilldown" : "015" + }, + { + "name" : "#016", + "y" : 66, + "drilldown" : "016" + }, + { + "name" : "#017", + "y" : 79, + "drilldown" : "017" + }, + { + "name" : "#018", + "y" : 76, + "drilldown" : "018" + }, + { + "y" : 95, + "drilldown" : "019", + "name" : "#019" + }, + { + "drilldown" : "020", + "y" : 95, + "name" : "#020" + }, + { + "name" : "#021", + "y" : 67, + "drilldown" : "021" + }, + { + "name" : "#022", + "y" : 63, + "drilldown" : "022" + }, + { + "name" : "#023", + "drilldown" : "023", + "y" : 91 + }, + { + "name" : "#024", + "y" : 70, + "drilldown" : "024" + }, + { + "name" : "#025", + "y" : 55, + "drilldown" : "025" + }, + { + "drilldown" : "026", + "y" : 70, + "name" : "#026" + }, + { + "name" : "#027", + "y" : 58, + "drilldown" : "027" + }, + { + "name" : "#028", + "drilldown" : "028", + "y" : 78 + }, + { + "y" : 77, + "drilldown" : "029", + "name" : "#029" + }, + { + "name" : "#030", + "y" : 115, + "drilldown" : "030" + }, + { + "name" : "#031", + "drilldown" : "031", + "y" : 87 + }, + { + "name" : "#032", + "y" : 92, + "drilldown" : "032" + }, + { + "drilldown" : "033", + "y" : 108, + "name" : "#033" + }, + { + "drilldown" : "034", + "y" : 60, + "name" : "#034" + }, + { + "name" : "#035", + "drilldown" : "035", + "y" : 60 + }, + { + "name" : "#036", + "y" : 61, + "drilldown" : "036" + }, + { + "name" : "#037", + "drilldown" : "037", + "y" : 63 + }, + { + "name" : "#038", + "drilldown" : "038", + "y" : 60 + }, + { + "name" : "#039", + "drilldown" : "039", + "y" : 60 + }, + { + "name" : "#040", + "drilldown" : "040", + "y" : 66 + }, + { + "drilldown" : "041", + "y" : 69, + "name" : "#041" + }, + { + "name" : "#042", + "drilldown" : "042", + "y" : 88 + }, + { + "name" : "#043", + "y" : 65, + "drilldown" : "043" + }, + { + "name" : "#044", + "y" : 81, + "drilldown" : "044" + }, + { + "drilldown" : "045", + "y" : 94, + "name" : "#045" + }, + { + "y" : 82, + "drilldown" : "046", + "name" : "#046" + }, + { + "y" : 80, + "drilldown" : "047", + "name" : "#047" + }, + { + "name" : "#048", + "drilldown" : "048", + "y" : 101 + }, + { + "name" : "#049", + "y" : 18, + "drilldown" : "049" + } + ], + "name" : "Perl Weekly Challenge Languages" + } + ], "yAxis" : { "title" : { "text" : "Total Solutions" } }, + "xAxis" : { + "type" : "category" + }, "drilldown" : { "series" : [ { - "id" : "001", - "name" : "001", "data" : [ [ "Perl", @@ -22,10 +302,11 @@ "Blog", 11 ] - ] + ], + "name" : "001", + "id" : "001" }, { - "id" : "002", "name" : "002", "data" : [ [ @@ -40,11 +321,10 @@ "Blog", 10 ] - ] + ], + "id" : "002" }, { - "id" : "003", - "name" : "003", "data" : [ [ "Perl", @@ -58,11 +338,11 @@ "Blog", 9 ] - ] + ], + "name" : "003", + "id" : "003" }, { - "id" : "004", - "name" : "004", "data" : [ [ "Perl", @@ -76,10 +356,12 @@ "Blog", 10 ] - ] + ], + "name" : "004", + "id" : "004" }, { - "id" : "005", + "name" : "005", "data" : [ [ "Perl", @@ -94,11 +376,10 @@ 12 ] ], - "name" : "005" + "id" : "005" }, { "id" : "006", - "name" : "006", "data" : [ [ "Perl", @@ -112,10 +393,10 @@ "Blog", 7 ] - ] + ], + "name" : "006" }, { - "id" : "007", "data" : [ [ "Perl", @@ -130,11 +411,10 @@ 10 ] ], - "name" : "007" + "name" : "007", + "id" : "007" }, { - "id" : "008", - "name" : "008", "data" : [ [ "Perl", @@ -148,10 +428,11 @@ "Blog", 12 ] - ] + ], + "name" : "008", + "id" : "008" }, { - "id" : "009", "data" : [ [ "Perl", @@ -166,11 +447,11 @@ 13 ] ], - "name" : "009" + "name" : "009", + "id" : "009" }, { "id" : "010", - "name" : "010", "data" : [ [ "Perl", @@ -184,10 +465,10 @@ "Blog", 11 ] - ] + ], + "name" : "010" }, { - "id" : "011", "name" : "011", "data" : [ [ @@ -202,10 +483,10 @@ "Blog", 10 ] - ] + ], + "id" : "011" }, { - "id" : "012", "data" : [ [ "Perl", @@ -220,7 +501,8 @@ 11 ] ], - "name" : "012" + "name" : "012", + "id" : "012" }, { "data" : [ @@ -241,7 +523,6 @@ "id" : "013" }, { - "id" : "014", "data" : [ [ "Perl", @@ -256,9 +537,12 @@ 15 ] ], - "name" : "014" + "name" : "014", + "id" : "014" }, { + "id" : "015", + "name" : "015", "data" : [ [ "Perl", @@ -272,11 +556,11 @@ "Blog", 15 ] - ], - "name" : "015", - "id" : "015" + ] }, { + "id" : "016", + "name" : "016", "data" : [ [ "Perl", @@ -290,11 +574,10 @@ "Blog", 12 ] - ], - "name" : "016", - "id" : "016" + ] }, { + "id" : "017", "data" : [ [ "Perl", @@ -309,10 +592,10 @@ 12 ] ], - "name" : "017", - "id" : "017" + "name" : "017" }, { + "id" : "018", "name" : "018", "data" : [ [ @@ -327,8 +610,7 @@ "Blog", 14 ] - ], - "id" : "018" + ] }, { "data" : [ @@ -349,6 +631,7 @@ "id" : "019" }, { + "id" : "020", "name" : "020", "data" : [ [ @@ -363,8 +646,7 @@ "Blog", 13 ] - ], - "id" : "020" + ] }, { "id" : "021", @@ -385,7 +667,6 @@ ] }, { - "id" : "022", "name" : "022", "data" : [ [ @@ -400,9 +681,11 @@ "Blog", 10 ] - ] + ], + "id" : "022" }, { + "id" : "023", "name" : "023", "data" : [ [ @@ -417,10 +700,10 @@ "Blog", 12 ] - ], - "id" : "023" + ] }, { + "id" : "024", "data" : [ [ "Perl", @@ -435,11 +718,10 @@ 11 ] ], - "name" : "024", - "id" : "024" + "name" : "024" }, { - "id" : "025", + "name" : "025", "data" : [ [ "Perl", @@ -454,7 +736,7 @@ 12 ] ], - "name" : "025" + "id" : "025" }, { "id" : "026", @@ -494,7 +776,6 @@ }, { "id" : "028", - "name" : "028", "data" : [ [ "Perl", @@ -508,7 +789,8 @@ "Blog", 9 ] - ] + ], + "name" : "028" }, { "name" : "029", @@ -529,6 +811,7 @@ "id" : "029" }, { + "id" : "030", "name" : "030", "data" : [ [ @@ -543,8 +826,7 @@ "Blog", 10 ] - ], - "id" : "030" + ] }, { "id" : "031", @@ -565,7 +847,7 @@ ] }, { - "id" : "032", + "name" : "032", "data" : [ [ "Perl", @@ -580,10 +862,9 @@ 10 ] ], - "name" : "032" + "id" : "032" }, { - "id" : "033", "name" : "033", "data" : [ [ @@ -598,7 +879,8 @@ "Blog", 10 ] - ] + ], + "id" : "033" }, { "id" : "034", @@ -619,8 +901,6 @@ ] }, { - "id" : "035", - "name" : "035", "data" : [ [ "Perl", @@ -634,7 +914,9 @@ "Blog", 9 ] - ] + ], + "name" : "035", + "id" : "035" }, { "id" : "036", @@ -655,7 +937,6 @@ "name" : "036" }, { - "id" : "037", "name" : "037", "data" : [ [ @@ -670,7 +951,8 @@ "Blog", 9 ] - ] + ], + "id" : "037" }, { "id" : "038", @@ -691,6 +973,8 @@ "name" : "038" }, { + "id" : "039", + "name" : "039", "data" : [ [ "Perl", @@ -704,12 +988,10 @@ "Blog", 12 ] - ], - "name" : "039", - "id" : "039" + ] }, { - "id" : "040", + "name" : "040", "data" : [ [ "Perl", @@ -724,10 +1006,9 @@ 9 ] ], - "name" : "040" + "id" : "040" }, { - "id" : "041", "name" : "041", "data" : [ [ @@ -742,10 +1023,10 @@ "Blog", 8 ] - ] + ], + "id" : "041" }, { - "name" : "042", "data" : [ [ "Perl", @@ -760,9 +1041,12 @@ 11 ] ], + "name" : "042", "id" : "042" }, { + "id" : "043", + "name" : "043", "data" : [ [ "Perl", @@ -776,12 +1060,10 @@ "Blog", 10 ] - ], - "name" : "043", - "id" : "043" + ] }, { - "id" : "044", + "name" : "044", "data" : [ [ "Perl", @@ -796,9 +1078,10 @@ 10 ] ], - "name" : "044" + "id" : "044" }, { + "id" : "045", "data" : [ [ "Perl", @@ -813,10 +1096,10 @@ 11 ] ], - "name" : "045", - "id" : "045" + "name" : "045" }, { + "id" : "046", "data" : [ [ "Perl", @@ -831,12 +1114,10 @@ 9 ] ], - "name" : "046", - "id" : "046" + "name" : "046" }, { "id" : "047", - "name" : "047", "data" : [ [ "Perl", @@ -850,10 +1131,12 @@ "Blog", 9 ] - ] + ], + "name" : "047" }, { "id" : "048", + "name" : "048", "data" : [ [ "Perl", @@ -867,14 +1150,13 @@ "Blog", 11 ] - ], - "name" : "048" + ] }, { "data" : [ [ "Perl", - 7 + 9 ], [ "Raku", @@ -889,287 +1171,5 @@ "id" : "049" } ] - }, - "chart" : { - "type" : "column" - }, - "series" : [ - { - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Languages", - "data" : [ - { - "drilldown" : "001", - "name" : "#001", - "y" : 140 - }, - { - "drilldown" : "002", - "name" : "#002", - "y" : 109 - }, - { - "y" : 71, - "drilldown" : "003", - "name" : "#003" - }, - { - "drilldown" : "004", - "name" : "#004", - "y" : 91 - }, - { - "name" : "#005", - "drilldown" : "005", - "y" : 71 - }, - { - "y" : 48, - "drilldown" : "006", - "name" : "#006" - }, - { - "y" : 56, - "name" : "#007", - "drilldown" : "007" - }, - { - "name" : "#008", - "drilldown" : "008", - "y" : 70 - }, - { - "drilldown" : "009", - "name" : "#009", - "y" : 68 - }, - { - "name" : "#010", - "drilldown" : "010", - "y" : 60 - }, - { - "y" : 79, - "drilldown" : "011", - "name" : "#011" - }, - { - "y" : 83, - "name" : "#012", - "drilldown" : "012" - }, - { - "y" : 76, - "drilldown" : "013", - "name" : "#013" - }, - { - "name" : "#014", - "drilldown" : "014", - "y" : 96 - }, - { - "y" : 93, - "drilldown" : "015", - "name" : "#015" - }, - { - "name" : "#016", - "drilldown" : "016", - "y" : 66 - }, - { - "y" : 79, - "drilldown" : "017", - "name" : "#017" - }, - { - "y" : 76, - "name" : "#018", - "drilldown" : "018" - }, - { - "y" : 95, - "name" : "#019", - "drilldown" : "019" - }, - { - "drilldown" : "020", - "name" : "#020", - "y" : 95 - }, - { - "drilldown" : "021", - "name" : "#021", - "y" : 67 - }, - { - "y" : 63, - "name" : "#022", - "drilldown" : "022" - }, - { - "drilldown" : "023", - "name" : "#023", - "y" : 91 - }, - { - "y" : 70, - "drilldown" : "024", - "name" : "#024" - }, - { - "drilldown" : "025", - "name" : "#025", - "y" : 55 - }, - { - "drilldown" : "026", - "name" : "#026", - "y" : 70 - }, - { - "y" : 58, - "name" : "#027", - "drilldown" : "027" - }, - { - "name" : "#028", - "drilldown" : "028", - "y" : 78 - }, - { - "drilldown" : "029", - "name" : "#029", - "y" : 77 - }, - { - "y" : 115, - "drilldown" : "030", - "name" : "#030" - }, - { - "y" : 87, - "drilldown" : "031", - "name" : "#031" - }, - { - "drilldown" : "032", - "name" : "#032", - "y" : 92 - }, - { - "y" : 108, - "drilldown" : "033", - "name" : "#033" - }, - { - "name" : "#034", - "drilldown" : "034", - "y" : 60 - }, - { - "y" : 60, - "name" : "#035", - "drilldown" : "035" - }, - { - "y" : 61, - "drilldown" : "036", - "name" : "#036" - }, - { - "drilldown" : "037", - "name" : "#037", - "y" : 63 - }, - { - "drilldown" : "038", - "name" : "#038", - "y" : 60 - }, - { - "y" : 60, - "drilldown" : "039", - "name" : "#039" - }, - { - "name" : "#040", - "drilldown" : "040", - "y" : 66 - }, - { - "y" : 69, - "drilldown" : "041", - "name" : "#041" - }, - { - "y" : 88, - "name" : "#042", - "drilldown" : "042" - }, - { - "y" : 65, - "name" : "#043", - "drilldown" : "043" - }, - { - "y" : 81, - "drilldown" : "044", - "name" : "#044" - }, - { - "name" : "#045", - "drilldown" : "045", - "y" : 94 - }, - { - "drilldown" : "046", - "name" : "#046", - "y" : 82 - }, - { - "y" : 80, - "drilldown" : "047", - "name" : "#047" - }, - { - "y" : 101, - "name" : "#048", - "drilldown" : "048" - }, - { - "name" : "#049", - "drilldown" : "049", - "y" : 16 - } - ] - } - ], - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, - "legend" : { - "enabled" : "false" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-02-24 19:01:00 GMT" - }, - "xAxis" : { - "type" : "category" - }, - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 67cfcd46b6..4e94fca68e 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -2,9 +2,294 @@ "chart" : { "type" : "column" }, + "legend" : { + "enabled" : "false" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-02-25 11:18:01 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "yAxis" : { + "title" : { + "text" : "Total Score" + } + }, + "series" : [ + { + "data" : [ + { + "name" : "#1: Laurent Rosenfeld", + "y" : 586, + "drilldown" : "Laurent Rosenfeld" + }, + { + "name" : "#2: Jaldhar H. Vyas", + "y" : 396, + "drilldown" : "Jaldhar H. Vyas" + }, + { + "y" : 380, + "drilldown" : "Ruben Westerberg", + "name" : "#3: Ruben Westerberg" + }, + { + "name" : "#4: Joelle Maslak", + "y" : 334, + "drilldown" : "Joelle Maslak" + }, + { + "y" : 300, + "drilldown" : "Adam Russell", + "name" : "#5: Adam Russell" + }, + { + "name" : "#6: Arne Sommer", + "drilldown" : "Arne Sommer", + "y" : 298 + }, + { + "name" : "#7: Roger Bell West", + "y" : 286, + "drilldown" : "Roger Bell West" + }, + { + "name" : "#8: E. Choroba", + "y" : 262, + "drilldown" : "E. Choroba" + }, + { + "name" : "#9: Athanasius", + "y" : 220, + "drilldown" : "Athanasius" + }, + { + "name" : "#10: Andrezgz", + "drilldown" : "Andrezgz", + "y" : 194 + }, + { + "y" : 192, + "drilldown" : "Simon Proctor", + "name" : "#11: Simon Proctor" + }, + { + "y" : 184, + "drilldown" : "Ryan Thompson", + "name" : "#12: Ryan Thompson" + }, + { + "name" : "#13: Javier Luque", + "drilldown" : "Javier Luque", + "y" : 180 + }, + { + "y" : 168, + "drilldown" : "Duncan C. White", + "name" : "#14: Duncan C. White" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 166, + "name" : "#15: Dave Jacoby" + }, + { + "y" : 162, + "drilldown" : "Kian-Meng Ang", + "name" : "#16: Kian-Meng Ang" + }, + { + "drilldown" : "Kevin Colyer", + "y" : 136, + "name" : "#17: Kevin Colyer" + }, + { + "name" : "#18: Steven Wilson", + "drilldown" : "Steven Wilson", + "y" : 134 + }, + { + "name" : "#19: Duane Powell", + "y" : 132, + "drilldown" : "Duane Powell" + }, + { + "name" : "#20: Colin Crain", + "y" : 128, + "drilldown" : "Colin Crain" + }, + { + "y" : 116, + "drilldown" : "Noud Aldenhoven", + "name" : "#21: Noud Aldenhoven" + }, + { + "name" : "#22: Yet Ebreo", + "y" : 114, + "drilldown" : "Yet Ebreo" + }, + { + "y" : 108, + "drilldown" : "Burkhard Nickels", + "name" : "#23: Burkhard Nickels" + }, + { + "name" : "#24: Francis Whittle", + "drilldown" : "Francis Whittle", + "y" : 96 + }, + { + "name" : "#25: Ulrich Rieke", + "y" : 94, + "drilldown" : "Ulrich Rieke" + }, + { + "name" : "#26: Lubos Kolouch", + "drilldown" : "Lubos Kolouch", + "y" : 92 + }, + { + "drilldown" : "Feng Chang", + "y" : 88, + "name" : "#27: Feng Chang" + }, + { + "name" : "#28: Daniel Mantovani", + "y" : 86, + "drilldown" : "Daniel Mantovani" + }, + { + "y" : 80, + "drilldown" : "Mark Senn", + "name" : "#29: Mark Senn" + }, + { + "name" : "#30: Gustavo Chaves", + "y" : 72, + "drilldown" : "Gustavo Chaves" + }, + { + "y" : 70, + "drilldown" : "Markus Holzer", + "name" : "#31: Markus Holzer" + }, + { + "name" : "#32: Yozen Hernandez", + "drilldown" : "Yozen Hernandez", + "y" : 70 + }, + { + "name" : "#33: Guillermo Ramos", + "drilldown" : "Guillermo Ramos", + "y" : 64 + }, + { + "y" : 60, + "drilldown" : "Jo Christian Oterhals", + "name" : "#34: Jo Christian Oterhals" + }, + { + "drilldown" : "Dave Cross", + "y" : 58, + "name" : "#35: Dave Cross" + }, + { + "name" : "#36: Ozzy", + "drilldown" : "Ozzy", + "y" : 56 + }, + { + "y" : 54, + "drilldown" : "Alicia Bielsa", + "name" : "#37: Alicia Bielsa" + }, + { + "name" : "#38: Saif Ahmed", + "y" : 54, + "drilldown" : "Saif Ahmed" + }, + { + "drilldown" : "Dr James A. Smith", + "y" : 52, + "name" : "#39: Dr James A. Smith" + }, + { + "name" : "#40: Randy Lauen", + "drilldown" : "Randy Lauen", + "y" : 52 + }, + { + "name" : "#41: Daniel Mita", + "drilldown" : "Daniel Mita", + "y" : 48 + }, + { + "y" : 46, + "drilldown" : "Mark Anderson", + "name" : "#42: Mark Anderson" + }, + { + "name" : "#43: Luca Ferrari", + "y" : 44, + "drilldown" : "Luca Ferrari" + }, + { + "y" : 44, + "drilldown" : "Veesh Goldman", + "name" : "#44: Veesh Goldman" + }, + { + "drilldown" : "Wanderdoc", + "y" : 40, + "name" : "#45: Wanderd