aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-100/colin-crain/perl/ch-1.pl122
-rw-r--r--challenge-100/colin-crain/perl/ch-2.pl98
-rw-r--r--challenge-100/colin-crain/raku/ch-1.raku46
-rw-r--r--challenge-100/colin-crain/raku/ch-2.raku54
-rw-r--r--stats/pwc-current.json352
-rw-r--r--stats/pwc-language-breakdown-summary.json46
-rw-r--r--stats/pwc-language-breakdown.json744
-rw-r--r--stats/pwc-leaders.json742
-rw-r--r--stats/pwc-summary-1-30.json110
-rw-r--r--stats/pwc-summary-121-150.json40
-rw-r--r--stats/pwc-summary-151-180.json104
-rw-r--r--stats/pwc-summary-181-210.json106
-rw-r--r--stats/pwc-summary-211-240.json36
-rw-r--r--stats/pwc-summary-31-60.json108
-rw-r--r--stats/pwc-summary-61-90.json106
-rw-r--r--stats/pwc-summary-91-120.json46
-rw-r--r--stats/pwc-summary.json478
17 files changed, 1833 insertions, 1505 deletions
diff --git a/challenge-100/colin-crain/perl/ch-1.pl b/challenge-100/colin-crain/perl/ch-1.pl
new file mode 100644
index 0000000000..57866a9240
--- /dev/null
+++ b/challenge-100/colin-crain/perl/ch-1.pl
@@ -0,0 +1,122 @@
+#! /opt/local/bin/perl
+#
+# fun-time-ta-go-go.pl
+#
+# TASK #1 Ý Fun Time
+# Submitted by: Mohammad S Anwar
+# You are given a time (12 hour / 24 hour).
+#
+# Write a script to convert the given time from 12 hour format to 24
+# hour format and vice versa.
+#
+# Ideally we expect a one-liner.
+#
+# Example 1:
+# Input: 05:15 pm or 05:15pm
+# Output: 17:15
+# Example 2:
+# Input: 19:15
+# Output: 07:15 pm or 07:15pm
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use feature ":5.26";
+
+
+sub timef {
+ local $_= shift;
+
+ /^ (\d+)(:\d+)\s?(am|pm)* $/xi;
+
+ my $hr = $1;
+ my $cyc = 'am';
+
+ if ( $3 ) { ## 12hr->24hr
+ $hr = sprintf "%02d", $1 % 12;
+ $hr += 12 if $3 eq 'pm';
+ return "$hr$2";
+ }
+ else { ## 24hr->12hr
+ $cyc = 'pm' if $hr > 11;
+ $hr %= 12;
+ $hr ||= 12;
+ return "$hr$2$cyc";
+ }
+}
+
+sub timef_refactored {
+ local $_= shift;
+
+ /^ (\d+)(:\d+)\s?(am|pm)* $/xi;
+
+ my $cyc = $1 > 11 ? 'pm' : 'am';
+ my $hr = $1 % 12;
+
+ if ( $3 ) {
+ $hr += 12 if $3 eq 'pm';
+ return sprintf "%02d%s", $hr, $2;
+ }
+ else {
+ $hr ||= 12;
+ return "$hr$2$cyc";
+ }
+}
+
+sub timefl {
+ no strict 'vars';
+ local $_ = shift;
+ /^(\d+)(:\d+)\s?(am|pm)*$/i;
+ $c=$1>11?'pm':'am';
+ $h=$1%12;
+ if($3){
+ $h+=12if$3eq"pm";
+ sprintf"%02d%s",$h,$2;
+ }
+ else{
+ $h||=12;
+ "$h$2$c";
+ }
+}
+
+=pod
+
+as a one-liner we need to change the I/O a bit:
+
+perl -E'@ARGV[0]=~/^(\d+)(:\d+)\s?(am|pm)*$/i;$c=$1>11?'pm':'am';$h=$1%12;if($3){$3eq"pm"and$h+=12;printf"%02d%s\n",$h,$2;}else{$h||=12;say"$h$2$c"}'
+
+perl -E '$_=@ARGV[0];/^(\d+)(:\d+)\s?(am|pm)*$/i;$c=$1>11?'pm':'am';$h=$1%12;if($3){$3eq"pm"and$h+=12;printf"%02d%s\n",$h,$2}else{$h||=12;say"$h$2$c"}
+
+=cut
+
+use Test::More;
+
+is timef("5:15AM"), "05:15", '12->24am';
+is timef("5:15 am"), "05:15", '12->24am space';
+is timef("5:15pm"), "17:15", '12->24pm';
+is timef("5:15 pm"), "17:15", '12->24pm space';
+is timef("12:15am"), "00:15", '12->24am-mid';
+is timef("12:15pm"), "12:15", '12->24pm-noon';
+is timef("5:15"), "5:15am", '24->12am';
+is timef("17:15"), "5:15pm", '12->24am';
+is timef("12:00"), "12:00pm", '24->12-noon';
+is timef("00:00"), "12:00am", '24->12-mid';
+say '';
+is timefl("5:15AM"), "05:15", '12->24am';
+is timefl("5:15 am"), "05:15", '12->24am space';
+is timefl("5:15pm"), "17:15", '12->24pm';
+is timefl("5:15 pm"), "17:15", '12->24pm space';
+is timefl("12:15am"), "00:15", '12->24am-mid';
+is timefl("12:15pm"), "12:15", '12->24pm-noon';
+
+is timefl("5:15"), "5:15am", '24->12am';
+is timefl("17:15"), "5:15pm", '12->24am';
+is timefl("12:00"), "12:00pm", '24->12-noon';
+is timefl("00:00"), "12:00am", '24->12-mid';
+
+
+done_testing();
diff --git a/challenge-100/colin-crain/perl/ch-2.pl b/challenge-100/colin-crain/perl/ch-2.pl
new file mode 100644
index 0000000000..360f83b29b
--- /dev/null
+++ b/challenge-100/colin-crain/perl/ch-2.pl
@@ -0,0 +1,98 @@
+#! /opt/local/bin/perl
+#
+# pyramid-power.pl
+#
+# Triangle Sum
+# Submitted by: Mohammad S Anwar
+# You are given triangle array.
+#
+# Write a script to find the minimum path sum from top to bottom.
+#
+# When you are on index i on the current row then you may move to either index i or index i + 1 on the next row.
+#
+# Example 1:
+# Input: Triangle = [ [1], [2,4], [6,4,9], [5,1,7,2] ]
+# Output: 8
+#
+# Explanation: The given triangle
+#
+# 1
+# 2 4
+# 6 4 9
+# 5 1 7 2
+#
+# The minimum path sum from top to bottom: 1 + 2 + 4 + 1 = 8
+#
+# [1]
+# [2] 4
+# 6 [4] 9
+# 5 [1] 7 2
+#
+# Example 2:
+# Input: Triangle = [ [3], [3,1], [5,2,3], [4,3,1,3] ]
+# Output: 7
+#
+# Explanation: The given triangle
+#
+# 3
+# 3 1
+# 5 2 3
+# 4 3 1 3
+#
+# The minimum path sum from top to bottom: 3 + 1 + 2 + 1 = 7
+#
+# [3]
+# 3 [1]
+# 5 [2] 3
+# 4 3 [1] 3
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+
+sub findpath ($arr) {
+## the data structure: [ sum, [arr of values along path], last index ]
+
+ my $root = $arr->[0][0];
+ my @data = [$root, [$root], 0];
+
+ for my $depth ( 0..$#$arr-1 ) {
+ for my $pos ( 0..2**$depth-1 ) {
+ my $path = shift @data;
+ for (0,1) {
+ my ($sum, $trace, $last) = @$path;
+ my $value = $arr->[$depth+1][$last+$_];
+ my $newpath = [ $sum + $value,
+ [$trace->@*, $value],
+ $last + $_ ];
+ push @data, $newpath;
+ }
+ }
+ }
+
+ my $minpath = (sort {$a->[0] <=> $b->[0]} @data)[0];
+
+ say "minimum path sum: ", $minpath->[0];
+ say "path:";
+ say join ' -> ', $minpath->[1]->@*;
+
+ return $minpath->[0];
+}
+
+
+use Test::More;
+
+is findpath( [[1], [2,4], [6,4,9], [5,1,7,2]] ), 8, 'ex-1';
+is findpath( [[3], [3,1], [5,2,3], [4,3,1,3]] ), 7, 'ex-2';
+
+
+
+done_testing();
diff --git a/challenge-100/colin-crain/raku/ch-1.raku b/challenge-100/colin-crain/raku/ch-1.raku
new file mode 100644
index 0000000000..57e353ef4f
--- /dev/null
+++ b/challenge-100/colin-crain/raku/ch-1.raku
@@ -0,0 +1,46 @@
+#!/usr/bin/env perl6
+#
+#
+# time-travel.raku
+#
+# one-liner:
+#
+# raku -e '$_=@*ARGS[0];m/^(\d+)(":"\d+)\s?(am|pm)*$/;my$c=$0>11??"pm"!!"am";my$h=$0%12;if $2 {$2~~"pm"and$h+=12;"%02d%s\n".printf($h,$1)}else{$h||=12;"$h$1$c".say}'
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+unit sub MAIN () ;
+
+use Test;
+
+plan 8;
+
+is timef("5:15am"), "05:15", '12->24am';
+is timef("5:15pm"), "17:15", '12->24pm';
+is timef("12:15am"), "00:15", '12->24am-mid';
+is timef("12:15pm"), "12:15", '12->24pm-noon';
+is timef("5:15"), "5:15am", '24->12am';
+is timef("17:15"), "5:15pm", '12->24am';
+is timef("12:00"), "12:00pm", '24->12-noon';
+is timef("00:00"), "12:00am", '24->12-mid';
+
+
+
+sub timef ($_) {
+ m:i/^ (\d+) (":"\d+) \s? (am|pm)* $/;
+ my $c = $0 > 11 ?? 'pm'
+ !! 'am';
+ my $h = $0 % 12;
+ if ($2) {
+ $h += 12 if $2 eq "pm";
+ "%02d%s".sprintf($h,$1);
+ }
+ else{
+ $h ||= 12;
+ "$h$1$c";
+ }
+}
+
diff --git a/challenge-100/colin-crain/raku/ch-2.raku b/challenge-100/colin-crain/raku/ch-2.raku
new file mode 100644
index 0000000000..3171b0d458
--- /dev/null
+++ b/challenge-100/colin-crain/raku/ch-2.raku
@@ -0,0 +1,54 @@
+#!/usr/bin/env perl6
+#
+#
+# pyramid-power.raku
+#
+#
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+unit sub MAIN () ;
+
+use Test;
+plan 3;
+
+is findpath( [[1], [2,3], [4,5,6], [7,8,9,10]] ), 14, "BFO triangle test";
+is findpath( [[1], [2,4], [6,4,9], [5,1,7,2]] ) , 8, "ex-1";
+is findpath( [[3], [3,1], [5,2,3], [4,3,1,3]] ) , 7, 'ex-2';
+
+sub findpath (@arr) {
+## the data structure: [ sum, [arr of values along path], last index ]
+
+ my $root = @arr[0][0];
+ my @root = [$root, [$root], 0];
+ my @data.push: @root;
+
+ for 0..@arr.elems-2 -> $depth {
+ for 0..2**$depth-1 -> $pos {
+ my $path = @data.shift;
+ for 0,1 {
+ my ($sum, $trace, $last) = $path;
+ my $value = @arr[$depth+1][$last+$_];
+ my @newpath = $sum + $value,
+ [|$trace, $value],
+ $last + $_ ;
+ push @data, @newpath;
+ }
+ }
+ }
+
+ ## a little verbose output
+ my $minpath = @data.min( { $^a[0] } );
+
+ say '';
+ say "minimum path sum: ", $minpath[0];
+ say "path:";
+ say $minpath[1].join: ' -> ';
+
+ ## the requested value
+ return $minpath[0];
+}
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 5c4ff82bbb..fb74dcb223 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,23 +1,12 @@
{
- "xAxis" : {
- "type" : "category"
- },
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
- },
- "chart" : {
- "type" : "column"
+ "legend" : {
+ "enabled" : 0
},
"drilldown" : {
"series" : [
{
"id" : "Aaron Smith",
+ "name" : "Aaron Smith",
"data" : [
[
"Raku",
@@ -27,12 +16,9 @@
"Blog",
1
]
- ],
- "name" : "Aaron Smith"
+ ]
},
{
- "name" : "Abigail",
- "id" : "Abigail",
"data" : [
[
"Perl",
@@ -42,10 +28,11 @@
"Blog",
2
]
- ]
+ ],
+ "name" : "Abigail",
+ "id" : "Abigail"
},
{
- "id" : "Adam Russell",
"data" : [
[
"Perl",
@@ -56,40 +43,40 @@
2
]
],
- "name" : "Adam Russell"
+ "name" : "Adam Russell",
+ "id" : "Adam Russell"
},
{
+ "id" : "Alexander Karelas",
+ "name" : "Alexander Karelas",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Alexander Karelas",
- "name" : "Alexander Karelas"
+ ]
},
{
- "name" : "Alexander Pankoff",
- "id" : "Alexander Pankoff",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Alexander Pankoff",
+ "id" : "Alexander Pankoff"
},
{
- "id" : "Ali Moradi",
"data" : [
[
"Perl",
2
]
],
- "name" : "Ali Moradi"
+ "name" : "Ali Moradi",
+ "id" : "Ali Moradi"
},
{
- "id" : "Andinus",
"data" : [
[
"Raku",
@@ -100,9 +87,11 @@
1
]
],
- "name" : "Andinus"
+ "name" : "Andinus",
+ "id" : "Andinus"
},
{
+ "id" : "Arne Sommer",
"name" : "Arne Sommer",
"data" : [
[
@@ -117,11 +106,10 @@
"Blog",
1
]
- ],
- "id" : "Arne Sommer"
+ ]
},
{
- "id" : "Athanasius",
+ "name" : "Athanasius",
"data" : [
[
"Perl",
@@ -132,40 +120,49 @@
1
]
],
- "name" : "Athanasius"
+ "id" : "Athanasius"
},
{
- "id" : "Bob Lied",
+ "name" : "Bob Lied",
"data" : [
[
"Perl",
2
]
],
- "name" : "Bob Lied"
+ "id" : "Bob Lied"
},
{
+ "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
2
]
],
- "id" : "Cheok-Yin Fung",
"name" : "Cheok-Yin Fung"
},
{
- "name" : "Colin Crain",
- "id" : "Colin Crain",
"data" : [
[
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
"Blog",
1
]
- ]
+ ],
+ "name" : "Colin Crain",
+ "id" : "Colin Crain"
},
{
"id" : "Dave Jacoby",
+ "name" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -175,41 +172,39 @@
"Blog",
1
]
- ],
- "name" : "Dave Jacoby"
+ ]
},
{
- "name" : "Duane Powell",
+ "id" : "Duane Powell",
"data" : [
[
"Perl",
1
]
],
- "id" : "Duane Powell"
+ "name" : "Duane Powell"
},
{
- "name" : "Duncan C. White",
+ "id" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
],
- "id" : "Duncan C. White"
+ "name" : "Duncan C. White"
},
{
+ "id" : "E. Choroba",
"name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "E. Choroba"
+ ]
},
{
- "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -220,20 +215,22 @@
2
]
],
- "name" : "Flavio Poletti"
+ "name" : "Flavio Poletti",
+ "id" : "Flavio Poletti"
},
{
- "name" : "Gustavo Chaves",
- "id" : "Gustavo Chaves",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Gustavo Chaves",
+ "id" : "Gustavo Chaves"
},
{
"id" : "James Smith",
+ "name" : "James Smith",
"data" : [
[
"Perl",
@@ -243,37 +240,36 @@
"Blog",
1
]
- ],
- "name" : "James Smith"
+ ]
},
{
- "name" : "Jan Krnavek",
+ "id" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
],
- "id" : "Jan Krnavek"
+ "name" : "Jan Krnavek"
},
{
- "name" : "Joan Mimosinnet",
"id" : "Joan Mimosinnet",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Joan Mimosinnet"
},
{
+ "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
],
- "id" : "Jorg Sommrey",
"name" : "Jorg Sommrey"
},
{
@@ -283,11 +279,11 @@
2
]
],
- "id" : "Kai Burgdorf",
- "name" : "Kai Burgdorf"
+ "name" : "Kai Burgdorf",
+ "id" : "Kai Burgdorf"
},
{
- "id" : "Lance Wicks",
+ "name" : "Lance Wicks",
"data" : [
[
"Perl",
@@ -298,10 +294,9 @@
2
]
],
- "name" : "Lance Wicks"
+ "id" : "Lance Wicks"
},
{
- "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -316,19 +311,22 @@
1
]
],
- "name" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld"
},
{
+ "id" : "Lubos Kolouch",
+ "name" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
+ ]
},
{
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -338,22 +336,21 @@
"Blog",
2
]
- ],
- "id" : "Luca Ferrari",
- "name" : "Luca Ferrari"
+ ]
},
{
+ "id" : "Mark Anderson",
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Mark Anderson",
- "name" : "Mark Anderson"
+ ]
},
{
"id" : "Mark J. Reed",
+ "name" : "Mark J. Reed",
"data" : [
[
"Perl",
@@ -363,8 +360,7 @@
"Raku",
1
]
- ],
- "name" : "Mark J. Reed"
+ ]
},
{
"data" : [
@@ -373,50 +369,51 @@
2
]
],
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
+ "name" : "Mohammad S Anwar",
+ "id" : "Mohammad S Anwar"
},
{
"id" : "Niels van Dijke",
+ "name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Niels van Dijke"
+ ]
},
{
"name" : "Paulo Custodio",
- "id" : "Paulo Custodio",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Paulo Custodio"
},
{
+ "id" : "Pete Houston",
+ "name" : "Pete Houston",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Pete Houston",
- "name" : "Pete Houston"
+ ]
},
{
"name" : "Philip Hood",
- "id" : "Philip Hood",
"data" : [
[
"Raku",
1
]
- ]
+ ],
+ "id" : "Philip Hood"
},
{
+ "id" : "Roger Bell_West",
"name" : "Roger Bell_West",
"data" : [
[
@@ -431,8 +428,7 @@
"Blog",
1
]
- ],
- "id" : "Roger Bell_West"
+ ]
},
{
"id" : "Simon Green",
@@ -449,24 +445,24 @@
"name" : "Simon Green"
},
{
- "id" : "Simon Proctor",
+ "name" : "Simon Proctor",
"data" : [
[
"Raku",
2
]
],
- "name" : "Simon Proctor"
+ "id" : "Simon Proctor"
},
{
- "name" : "Steven Wilson",
+ "id" : "Steven Wilson",
"data" : [
[
"Perl",
1
]
],
- "id" : "Steven Wilson"
+ "name" : "Steven Wilson"
},
{
"id" : "Stuart Little",
@@ -483,7 +479,6 @@
"name" : "Stuart Little"
},
{
- "name" : "Ulrich Rieke",
"id" : "Ulrich Rieke",
"data" : [
[
@@ -494,20 +489,21 @@
"Raku",
2
]
- ]
+ ],
+ "name" : "Ulrich Rieke"
},
{
+ "id" : "Vinod Kumar K",
"name" : "Vinod Kumar K",
"data" : [
[
"Perl",
1
]
- ],
- "id" : "Vinod Kumar K"
+ ]
},
{
- "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -518,48 +514,50 @@
1
]
],
- "id" : "W. Luis Mochan"
+ "name" : "W. Luis Mochan"
},
{
- "id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
],
- "name" : "Wanderdoc"
+ "name" : "Wanderdoc",
+ "id" : "Wanderdoc"
},
{
+ "id" : "Yet Ebreo",
"data" : [
[
"Perl",
2
]
],
- "id" : "Yet Ebreo",
"name" : "Yet Ebreo"
}
]
},
- "subtitle" : {
- "text" : "[Champions: 44] Last updated at 2021-02-21 23:22:49 GMT"
- },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "legend" : {
- "enabled" : 0
- },
"tooltip" : {
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : 1,
"headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "followPointer" : 1
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge - 100"
},
"series" : [
{
+ "colorByPoint" : 1,
+ "name" : "Perl Weekly Challenge - 100",
"data" : [
{
"name" : "Aaron Smith",
@@ -567,13 +565,13 @@
"y" : 3
},
{
- "y" : 4,
+ "name" : "Abigail",
"drilldown" : "Abigail",
- "name" : "Abigail"
+ "y" : 4
},
{
- "name" : "Adam Russell",
"y" : 4,
+ "name" : "Adam Russell",
"drilldown" : "Adam Russell"
},
{
@@ -582,13 +580,13 @@
"name" : "Alexander Karelas"
},
{
- "drilldown" : "Alexander Pankoff",
"y" : 2,
- "name" : "Alexander Pankoff"
+ "name" : "Alexander Pankoff",
+ "drilldown" : "Alexander Pankoff"
},
{
- "drilldown" : "Ali Moradi",
"y" : 2,
+ "drilldown" : "Ali Moradi",
"name" : "Ali Moradi"
},
{
@@ -597,9 +595,9 @@
"y" : 2
},
{
- "drilldown" : "Arne Sommer",
"y" : 5,
- "name" : "Arne Sommer"
+ "name" : "Arne Sommer",
+ "drilldown" : "Arne Sommer"
},
{
"name" : "Athanasius",
@@ -608,38 +606,38 @@
},
{
"y" : 2,
- "drilldown" : "Bob Lied",
- "name" : "Bob Lied"
+ "name" : "Bob Lied",
+ "drilldown" : "Bob Lied"
},
{
+ "name" : "Cheok-Yin Fung",
"drilldown" : "Cheok-Yin Fung",
- "y" : 2,
- "name" : "Cheok-Yin Fung"
+ "y" : 2
},
{
- "y" : 1,
+ "name" : "Colin Crain",
"drilldown" : "Colin Crain",
- "name" : "Colin Crain"
+ "y" : 5
},
{
- "drilldown" : "Dave Jacoby",
"y" : 3,
+ "drilldown" : "Dave Jacoby",
"name" : "Dave Jacoby"
},
{
- "drilldown" : "Duane Powell",
"y" : 1,
+ "drilldown" : "Duane Powell",
"name" : "Duane Powell"
},
{
"drilldown" : "Duncan C. White",
- "y" : 2,
- "name" : "Duncan C. White"
+ "name" : "Duncan C. White",
+ "y" : 2
},
{
+ "name" : "E. Choroba",
"drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
+ "y" : 2
},
{
"name" : "Flavio Poletti",
@@ -648,53 +646,53 @@
},
{
"y" : 2,
- "drilldown" : "Gustavo Chaves",
- "name" : "Gustavo Chaves"
+ "name" : "Gustavo Chaves",
+ "drilldown" : "Gustavo Chaves"
},
{
- "name" : "James Smith",
"y" : 3,
- "drilldown" : "James Smith"
+ "drilldown" : "James Smith",
+ "name" : "James Smith"
},
{
- "name" : "Jan Krnavek",
"drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek",
"y" : 2
},
{
- "drilldown" : "Joan Mimosinnet",
"y" : 2,
+ "drilldown" : "Joan Mimosinnet",
"name" : "Joan Mimosinnet"
},
{
- "drilldown" : "Jorg Sommrey",
"y" : 2,
+ "drilldown" : "Jorg Sommrey",
"name" : "Jorg Sommrey"
},
{
"y" : 2,
- "drilldown" : "Kai Burgdorf",
- "name" : "Kai Burgdorf"
+ "name" : "Kai Burgdorf",
+ "drilldown" : "Kai Burgdorf"
},
{
- "name" : "Lance Wicks",
"drilldown" : "Lance Wicks",
+ "name" : "Lance Wicks",
"y" : 4
},
{
- "drilldown" : "Laurent Rosenfeld",
"y" : 5,
+ "drilldown" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld"
},
{
+ "y" : 2,
"name" : "Lubos Kolouch",
- "drilldown" : "Lubos Kolouch",
- "y" : 2
+ "drilldown" : "Lubos Kolouch"
},
{
"name" : "Luca Ferrari",