aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2019-04-28 18:19:55 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2019-04-28 18:19:55 +0100
commit4ea279abda9a15890fc858acb8c2d80746c27926 (patch)
treeffe5201363b0d1a8908396116e4be3058dba212a
parent7e738cac946a6c0629c1614247cf03fddbe356da (diff)
downloadperlweeklychallenge-club-4ea279abda9a15890fc858acb8c2d80746c27926.tar.gz
perlweeklychallenge-club-4ea279abda9a15890fc858acb8c2d80746c27926.tar.bz2
perlweeklychallenge-club-4ea279abda9a15890fc858acb8c2d80746c27926.zip
- Added solutions by Laurent Rosenfeld.
-rw-r--r--challenge-005/laurent-rosenfeld/perl5/ch-1.pl13
-rw-r--r--challenge-005/laurent-rosenfeld/perl5/ch-1a.pl14
-rw-r--r--challenge-005/laurent-rosenfeld/perl5/ch-1b.pl15
-rw-r--r--challenge-005/laurent-rosenfeld/perl5/ch-2.pl27
-rw-r--r--challenge-005/laurent-rosenfeld/perl6/ch-1.p67
-rw-r--r--challenge-005/laurent-rosenfeld/perl6/ch-1a.p66
-rw-r--r--challenge-005/laurent-rosenfeld/perl6/ch-1b.p66
-rw-r--r--challenge-005/laurent-rosenfeld/perl6/ch-2.p618
-rw-r--r--challenge-005/laurent-rosenfeld/perl6/ch-2a.p610
-rw-r--r--stats/pwc-current.json199
-rw-r--r--stats/pwc-language-breakdown.json114
-rw-r--r--stats/pwc-leaders.json592
-rw-r--r--stats/pwc-summary-1-30.json44
-rw-r--r--stats/pwc-summary-31-60.json36
-rw-r--r--stats/pwc-summary-61-90.json42
-rw-r--r--stats/pwc-summary.json56
16 files changed, 684 insertions, 515 deletions
diff --git a/challenge-005/laurent-rosenfeld/perl5/ch-1.pl b/challenge-005/laurent-rosenfeld/perl5/ch-1.pl
new file mode 100644
index 0000000000..19f53a6bc7
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl5/ch-1.pl
@@ -0,0 +1,13 @@
+use strict;
+use warnings;
+use feature 'say';
+sub is_anagram {
+ my ($word1, $word2) = @_;
+ return 0 if length $word1 != length $word2;
+ my $letters1 = join "", sort split "", $word1;
+ my $letters2 = join "", sort split "", $word2;
+ return $letters1 eq $letters2
+}
+for ( [qw / ban bane/], [qw /post post/], [qw / post spot /], [qw /post spot/], [qw / pots spot/], [qw /pots taps/] ) {
+ say "$$_[0] $$_[1]:\t", is_anagram($$_[0], $$_[1]) ? "True" : "False";
+}
diff --git a/challenge-005/laurent-rosenfeld/perl5/ch-1a.pl b/challenge-005/laurent-rosenfeld/perl5/ch-1a.pl
new file mode 100644
index 0000000000..20b000f5f9
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl5/ch-1a.pl
@@ -0,0 +1,14 @@
+use strict;
+use warnings;
+use feature 'say';
+sub is_anagram {
+ my ($word1, $word2) = @_;
+ return 0 if length $word1 != length $word2;
+ my $letters1 = join "", sort split "", $word1;
+ my $letters2 = join "", sort split "", $word2;
+ return $letters1 eq $letters2
+}
+my $word = "post";
+for (qw /past post spot tops taps pots top/) {
+ say "$word $_\t", is_anagram($word, $_) ? "True" : "False";
+}
diff --git a/challenge-005/laurent-rosenfeld/perl5/ch-1b.pl b/challenge-005/laurent-rosenfeld/perl5/ch-1b.pl
new file mode 100644
index 0000000000..1d31cfb414
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl5/ch-1b.pl
@@ -0,0 +1,15 @@
+use strict;
+use warnings;
+use feature 'say';
+sub is_anagram {
+ my ($word1, $word2) = @_;
+ return 0 if length $word1 != length $word2;
+ my $letters1 = join "", sort split "", $word1;
+ my $letters2 = join "", sort split "", $word2;
+ return $letters1 eq $letters2
+}
+my $word = "post";
+while (<>) {
+ chomp;
+ say if is_anagram $word, $_;
+}
diff --git a/challenge-005/laurent-rosenfeld/perl5/ch-2.pl b/challenge-005/laurent-rosenfeld/perl5/ch-2.pl
new file mode 100644
index 0000000000..d493ea4b5a
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl5/ch-2.pl
@@ -0,0 +1,27 @@
+use strict;
+use warnings;
+use feature 'say';
+
+my %words; # our HoA
+my $file_in = "words.txt";
+open my $IN, "<", $file_in or die "Ouverture impossible $file_in $!";
+while (my $word = <$IN>) {
+ next unless $word =~ /\w/; # skipping empty lines if any
+ $word =~ s/\s+$//; # removing trailing spaces, new lines and carriage returns (if any)
+ next if length $word < 3;
+ my $key = join '', sort split //, $word; # normalizing the word for the hash key
+ push @{$words{$key}}, $word; # storing the word in the HoA
+}
+close $IN;
+my @max_anagrams;
+my $max = 5;
+for my $key (keys %words) {
+ next if @{$words{$key}} < $max;
+ if (@{$words{$key}} == $max) {
+ push @max_anagrams, $key;
+ } else {
+ @max_anagrams = ($key);
+ $max = scalar @{$words{$key}};
+ }
+}
+say "$_:\t @{$words{$_}}" for (@max_anagrams);
diff --git a/challenge-005/laurent-rosenfeld/perl6/ch-1.p6 b/challenge-005/laurent-rosenfeld/perl6/ch-1.p6
new file mode 100644
index 0000000000..e63a980a78
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl6/ch-1.p6
@@ -0,0 +1,7 @@
+sub is-anagram (Str $word1, Str $word2) {
+ return False if $word1.chars != $word2.chars;
+ return $word1.comb.sort eq $word2.comb.sort;
+}
+for <ban bane post stop pots stop post pots pots taps> -> $w1, $w2 {
+ say "$w1 $w2:\t", is-anagram $w1, $w2;
+}
diff --git a/challenge-005/laurent-rosenfeld/perl6/ch-1a.p6 b/challenge-005/laurent-rosenfeld/perl6/ch-1a.p6
new file mode 100644
index 0000000000..0e4ae68e5f
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl6/ch-1a.p6
@@ -0,0 +1,6 @@
+sub is-anagram (Str $word1, Str $word2) {
+ return $word1.comb.Bag === $word2.comb.Bag;
+}
+for <ban bane post stop pots stop post pots pots taps> -> $w1, $w2 {
+ say "$w1 $w2:\t", is-anagram $w1, $w2;
+}
diff --git a/challenge-005/laurent-rosenfeld/perl6/ch-1b.p6 b/challenge-005/laurent-rosenfeld/perl6/ch-1b.p6
new file mode 100644
index 0000000000..5abaa0a687
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl6/ch-1b.p6
@@ -0,0 +1,6 @@
+sub infix:<ana> (Str $word1, Str $word2) {
+ return $word1.comb.Bag === $word2.comb.Bag;
+}
+for <ban bane post stop pots stop post pots pots taps> -> $w1, $w2 {
+ say "$w1 $w2:\t", $w1 ana $w2;
+}
diff --git a/challenge-005/laurent-rosenfeld/perl6/ch-2.p6 b/challenge-005/laurent-rosenfeld/perl6/ch-2.p6
new file mode 100644
index 0000000000..5874af92d7
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl6/ch-2.p6
@@ -0,0 +1,18 @@
+my %words;
+for "words.txt".IO.lines -> $line {
+ next unless $line ~~ /\w/; # skipping empty lines if any
+ $line ~~ s/\s+$//; # removing trailing spaces if any
+ next if $line.chars < 3;
+ my $key = $line.comb.sort.join('');
+ push %words{$key}, $line;
+}
+my @max-anagrams;
+my $max = 5;
+for %words.keys -> $key {
+ given %words{$key}.elems {
+ when $_ < $max { next }
+ when $_ == $max { @max-anagrams.push($key) }
+ default { @max-anagrams = $key,; $max = $_}
+ }
+}
+say "$_:\t %words{$_}" for (@max-anagrams);
diff --git a/challenge-005/laurent-rosenfeld/perl6/ch-2a.p6 b/challenge-005/laurent-rosenfeld/perl6/ch-2a.p6
new file mode 100644
index 0000000000..372496cec5
--- /dev/null
+++ b/challenge-005/laurent-rosenfeld/perl6/ch-2a.p6
@@ -0,0 +1,10 @@
+my %words;
+for "words.txt".IO.lines -> $line {
+ next unless $line ~~ /\w/; # skipping empty lines if any
+ $line ~~ s/\s+$//; # removing trailing spaces if any
+ next if $line.chars < 3;
+ my $key = $line.comb.sort.join('');
+ push %words{$key}, $line;
+}
+my $max = max map { .elems }, values %words;
+say "$_:\t %words{$_}" if %words{$_}.elems == $max for %words.keys;
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 4d0a3a3910..25ca8827fa 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,4 +1,7 @@
{
+ "chart" : {
+ "type" : "column"
+ },
"drilldown" : {
"series" : [
{
@@ -12,28 +15,28 @@
"id" : "Adam Russell"
},
{
+ "name" : "Andrezgz",
"id" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
- ],
- "name" : "Andrezgz"
+ ]
},
{
- "name" : "Athanasius",
"data" : [
[
"Perl 5",
2
]
],
+ "name" : "Athanasius",
"id" : "Athanasius"
},
{
- "id" : "Daniel Mantovani",
"name" : "Daniel Mantovani",
+ "id" : "Daniel Mantovani",
"data" : [
[
"Perl 5",
@@ -42,24 +45,24 @@
]
},
{
+ "id" : "Doug Schrag",
+ "name" : "Doug Schrag",
"data" : [
[
"Perl 6",
2
]
- ],
- "name" : "Doug Schrag",
- "id" : "Doug Schrag"
+ ]
},
{
- "name" : "Duncan C. White",
"data" : [
[
"Perl 5",
2
]
],
- "id" : "Duncan C. White"
+ "id" : "Duncan C. White",
+ "name" : "Duncan C. White"
},
{
"data" : [
@@ -68,31 +71,42 @@
2
]
],
- "name" : "E. Choroba",
- "id" : "E. Choroba"
+ "id" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
+ "name" : "Francis Whittle",
"id" : "Francis Whittle",
"data" : [
[
"Perl 6",
2
]
- ],
- "name" : "Francis Whittle"
+ ]
},
{
+ "id" : "Gustavo Chaves",
"name" : "Gustavo Chaves",
"data" : [
[
"Perl 5",
2
]
- ],
- "id" : "Gustavo Chaves"
+ ]
+ },
+ {
+ "name" : "Jaime Corchado",
+ "id" : "Jaime Corchado",
+ "data" : [
+ [
+ "Perl 5",
+ 2
+ ]
+ ]
},
{
"name" : "Jaldhar H. Vyas",
+ "id" : "Jaldhar H. Vyas",
"data" : [
[
"Perl 5",
@@ -102,18 +116,17 @@
"Perl 6",
2
]
- ],
- "id" : "Jaldhar H. Vyas"
+ ]
},
{
- "id" : "Dr James A. Smith",
- "name" : "Dr James A. Smith",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "id" : "Dr James A. Smith",
+ "name" : "Dr James A. Smith"
},
{
"data" : [
@@ -130,14 +143,14 @@
"id" : "Joelle Maslak"
},
{
+ "name" : "John Barrett",
+ "id" : "John Barrett",
"data" : [
[
"Perl 5",
2
]
- ],
- "name" : "John Barrett",
- "id" : "John Barrett"
+ ]
},
{
"data" : [
@@ -146,18 +159,32 @@
2
]
],
- "name" : "Lars Balker",
- "id" : "Lars Balker"
+ "id" : "Lars Balker",
+ "name" : "Lars Balker"
+ },
+ {
+ "id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
+ "data" : [
+ [
+ "Perl 5",
+ 2
+ ],
+ [
+ "Perl 6",
+ 2
+ ]
+ ]
},
{
- "id" : "Mark Senn",
"data" : [
[
"Perl 6",
2
]
],
- "name" : "Mark Senn"
+ "name" : "Mark Senn",
+ "id" : "Mark Senn"
},
{
"id" : "Robert Gratza",
@@ -170,22 +197,33 @@
]
},
{
+ "name" : "Ruben Westerberg",
+ "id" : "Ruben Westerberg",
+ "data" : [
+ [
+ "Perl 5",
+ 2
+ ],
+ [
+ "Perl 6",
+ 2
+ ]
+ ]
+ },
+ {
+ "id" : "Simon Proctor",
"name" : "Simon Proctor",
"data" : [
[
"Perl 6",
2
]
- ],
- "id" : "Simon Proctor"
+ ]
}
]
},
- "subtitle" : {
- "text" : "[Champions: 17] Last updated at 2019-04-28 12:42:46 GMT"
- },
- "xAxis" : {
- "type" : "category"
+ "legend" : {
+ "enabled" : 0
},
"series" : [
{
@@ -196,9 +234,9 @@
"y" : 2
},
{
+ "name" : "Andrezgz",
"drilldown" : "Andrezgz",
- "y" : 2,
- "name" : "Andrezgz"
+ "y" : 2
},
{
"name" : "Athanasius",
@@ -206,106 +244,121 @@
"y" : 2
},
{
- "drilldown" : "Daniel Mantovani",
"y" : 2,
- "name" : "Daniel Mantovani"
+ "name" : "Daniel Mantovani",
+ "drilldown" : "Daniel Mantovani"
},
{
+ "drilldown" : "Doug Schrag",
"name" : "Doug Schrag",
- "y" : 2,
- "drilldown" : "Doug Schrag"
+ "y" : 2
},
{
+ "drilldown" : "Duncan C. White",
"name" : "Duncan C. White",
- "y" : 2,
- "drilldown" : "Duncan C. White"
+ "y" : 2
},
{
+ "name" : "E. Choroba",
"drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
+ "y" : 2
},
{
- "name" : "Francis Whittle",
"y" : 2,
+ "name" : "Francis Whittle",
"drilldown" : "Francis Whittle"
},
{
- "name" : "Gustavo Chaves",
"drilldown" : "Gustavo Chaves",
+ "name" : "Gustavo Chaves",
"y" : 2
},
{
- "name" : "Jaldhar H. Vyas",
+ "y" : 2,
+ "name" : "Jaime Corchado",
+ "drilldown" : "Jaime Corchado"
+ },
+ {
"y" : 4,
- "drilldown" : "Jaldhar H. Vyas"
+ "drilldown" : "Jaldhar H. Vyas",
+ "name" : "Jaldhar H. Vyas"
},
{
- "drilldown" : "Dr James A. Smith",
"y" : 2,
- "name" : "Dr James A. Smith"
+ "name" : "Dr James A. Smith",
+ "drilldown" : "Dr James A. Smith"
},
{
- "y" : 4,
+ "name" : "Joelle Maslak",
"drilldown" : "Joelle Maslak",
- "name" : "Joelle Maslak"
+ "y" : 4
},
{
- "drilldown" : "John Barrett",
"y" : 2,
+ "drilldown" : "John Barrett",
"name" : "John Barrett"
},
{
- "y" : 2,
"drilldown" : "Lars Balker",
- "name" : "Lars Balker"
+ "name" : "Lars Balker",
+ "y" : 2
+ },
+ {
+ "y" : 4,
+ "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld"
},
{
- "name" : "Mark Senn",
+ "y" : 2,
"drilldown" : "Mark Senn",
- "y" : 2
+ "name" : "Mark Senn"
},
{
- "drilldown" : "Robert Gratza",
"y" : 2,
+ "drilldown" : "Robert Gratza",
"name" : "Robert Gratza"
},
{
+ "name" : "Ruben Westerberg",
+ "drilldown" : "Ruben Westerberg",
+ "y" : 4
+ },
+ {
+ "drilldown" : "Simon Proctor",
"name" : "Simon Proctor",
- "y" : 2,
- "drilldown" : "Simon Proctor"
+ "y" : 2
}
],
"name" : "Champions",
"colorByPoint" : 1
}
],
- "title" : {
- "text" : "Perl Weekly Challenge - 005"
+ "subtitle" : {
+ "text" : "[Champions: 20] Last updated at 2019-04-28 17:19:21 GMT"
+ },
+ "tooltip" : {
+ "pointerFormat" : "<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/>"
},
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "legend" : {
- "enabled" : 0
+ "title" : {
+ "text" : "Perl Weekly Challenge - 005"
},
- "chart" : {
- "type" : "column"
+ "xAxis" : {
+ "type" : "category"
},
"plotOptions" : {
"series" : {
- "borderWidth" : 0,
"dataLabels" : {
"format" : "{point.y}",
"enabled" : 1
- }
+ },
+ "borderWidth" : 0
}
- },
- "tooltip" : {
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "pointerFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : 1
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index d0eaa9962f..6fa6073855 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,46 +1,12 @@
{
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-04-28 12:42:56 GMT"
- },
- "legend" : {
- "enabled" : "false"
- },
- "title" : {
- "text" : "Perl Weekly Challenge Language"
- },
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "chart" : {
- "type" : "column"
- },
- "tooltip" : {
- "followPointer" : "true",
- "headerFormat" : "<span style=\"font-size:11px\"></span>",
- "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>"
- },
- "xAxis" : {
- "type" : "category"
- },
"series" : [
{
"name" : "Perl Weekly Challenge Languages",
"data" : [
{
"drilldown" : "001",
- "y" : 113,
- "name" : "#001 [P5=76 P6=37]"
+ "name" : "#001 [P5=76 P6=37]",
+ "y" : 113
},
{
"y" : 95,
@@ -48,27 +14,53 @@
"drilldown" : "002"
},
{
+ "y" : 58,
"drilldown" : "003",
- "name" : "#003 [P5=32 P6=26]",
- "y" : 58
+ "name" : "#003 [P5=32 P6=26]"
},
{
- "y" : 75,
"name" : "#004 [P5=46 P6=29]",
- "drilldown" : "004"
+ "drilldown" : "004",
+ "y" : 75
},
{
- "name" : "#005 [P5=24 P6=14]",
- "y" : 38,
- "drilldown" : "005"
+ "name" : "#005 [P5=30 P6=18]",
+ "drilldown" : "005",
+ "y" : 48
}
],
"colorByPoint" : "true"
}
],
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ },
+ "borderWidth" : 0
+ }
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Language"
+ },
+ "tooltip" : {
+ "followPointer" : "true",
+ "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "headerFormat" : "<span style=\"font-size:11px\"></span>"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-04-28 17:19:44 GMT"
+ },
"drilldown" : {
"series" : [
{
+ "id" : "001",
"data" : [
[
"Perl 5",
@@ -79,10 +71,10 @@
37
]
],
- "name" : "001",
- "id" : "001"
+ "name" : "001"
},
{
+ "name" : "002",
"data" : [
[
"Perl 5",
@@ -93,10 +85,11 @@
32
]
],
- "id" : "002",
- "name" : "002"
+ "id" : "002"
},
{
+ "id" : "003",
+ "name" : "003",
"data" : [
[
"Perl 5",
@@ -106,11 +99,10 @@
"Perl 6",
26
]
- ],
- "name" : "003",
- "id" : "003"
+ ]
},
{
+ "name" : "004",
"data" : [
[
"Perl 5",
@@ -121,23 +113,31 @@
29
]
],
- "id" : "004",
- "name" : "004"
+ "id" : "004"
},
{
+ "id" : "005",
+ "name" : "005",
"data" : [
[
"Perl 5",
- 24
+ 30
],
[
"Perl 6",
- 14
+ 18
]
- ],
- "name" : "005",
- "id" : "005"
+ ]
}
]
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "chart" : {
+ "type" : "column"
}
}
diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json
index 13977665ee..81cd51432c 100644
--- a/stats/pwc-leaders.json
+++ b/stats/pwc-leaders.json
@@ -1,105 +1,97 @@
{
- "tooltip" : {
- "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style=\"font-size:11px\"></span>",
- "followPointer" : "true"
- },
- "legend" : {
- "enabled" : "false"
- },
"series" : [
{
"name" : "Perl Weekly Challenge Leaders",
"data" : [
{
- "drilldown" : "Joelle Maslak",
- "name" : "#1: Joelle Maslak",
- "y" : 42
+ "y" : 48,
+ "name" : "#1: Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld"
},
{
- "y" : 40,
- "name" : "#2: Jaldhar H. Vyas",
- "drilldown" : "Jaldhar H. Vyas"
+ "y" : 42,
+ "name" : "#2: Joelle Maslak",
+ "drilldown" : "Joelle Maslak"
},
{
- "y" : 40,
- "name" : "#3: Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld"
+ "drilldown" : "Jaldhar H. Vyas",
+ "name" : "#3: Jaldhar H. Vyas",
+ "y" : 40
},
{
- "y" : 36,
"name" : "#4: Dr James A. Smith",
- "drilldown" : "Dr James A. Smith"
+ "drilldown" : "Dr James A. Smith",
+ "y" : 36
},
{
- "y" : 36,
"name" : "#5: Simon Proctor",
- "drilldown" : "Simon Proctor"
+ "drilldown" : "Simon Proctor",
+ "y" : 36
},
{
- "y" : 32,
+ "drilldown" : "Jo Christian Oterhals",
"name" : "#6: Jo Christian Oterhals",
- "drilldown" : "Jo Christian Oterhals"
+ "y" : 32
},
{
- "y" : 32,
+ "drilldown" : "Nick Logan",
"name" : "#7: Nick Logan",
- "drilldown" : "Nick Logan"
+ "y" : 32
+ },
+ {
+ "name" : "#8: Ruben Westerberg",
+ "drilldown" : "Ruben Westerberg",
+ "y" : 32
},
{
+ "y" : 30,
"drilldown" : "Adam Russell",
- "name" : "#8: Adam Russell",
- "y" : 30
+ "name" : "#9: Adam Russell"
},
{
+ "y" : 28,
"drilldown" : "Lars Balker",
- "name" : "#9: Lars Balker",
- "y" : 28
+ "name" : "#10: Lars Balker"
},
{
- "name" : "#10: Mark Senn",
+ "y" : 26,
"drilldown" : "Mark Senn",
- "y" : 26
+ "name" : "#11: Mark Senn"
},
{
- "y" : 24,
- "drilldown" : "Ruben Westerberg",
- "name" : "#11: Ruben Westerberg"
+ "drilldown" : "Kian-Meng Ang",
+ "name" : "#12: Kian-Meng Ang",
+ "y" : 24
},
{
"y" : 22,
"drilldown" : "Gustavo Chaves",
- "name" : "#12: Gustavo Chaves"
- },
- {
- "y" : 22,
- "name" : "#13: Kian-Meng Ang",
- "drilldown" : "Kian-Meng Ang"
+ "name" : "#13: Gustavo Chaves"
},
{
"y" : 20,
- "drilldown" : "Andrezgz",
- "name" : "#14: Andrezgz"
+ "name" : "#14: Andrezgz",
+ "drilldown" : "Andrezgz"
},
{
- "y" : 20,
+ "name" : "#15: Athanasius",
"drilldown" : "Athanasius",
- "name" : "#15: Athanasius"
+ "y" : 20
},
{
- "y" : 20,
"drilldown" : "Doug Schrag",
- "name" : "#16: Doug Schrag"
+ "name" : "#16: Doug Schrag",
+ "y" : 20
},
{
"y" : 18,
- "name" : "#17: Arne Sommer",
- "drilldown" : "Arne Sommer"
+ "drilldown" : "Arne Sommer",
+ "name" : "#17: Arne Sommer"
},
{
- "drilldown" : "Francis Whittle",
+ "y" : 18,
"name" : "#18: Francis Whittle",
- "y" : 18
+ "drilldown" : "Francis Whittle"
},
{
"name" : "#19: Duncan C. White",
@@ -107,34 +99,34 @@
"y" : 16
},
{
- "drilldown" : "Robert Gratza",
+ "y" : 16,
"name" : "#20: Robert Gratza",
- "y" : 16
+ "drilldown" : "Robert Gratza"
},
{
- "name" : "#21: John Barrett",
+ "y" : 14,
"drilldown" : "John Barrett",
- "y" : 14
+ "name" : "#21: John Barrett"
},
{
"y" : 12,
- "name" : "#22: Daniel Mantovani",
- "drilldown" : "Daniel Mantovani"
+ "drilldown" : "Daniel Mantovani",
+ "name" : "#22: Daniel Mantovani"
},
{
- "drilldown" : "Philippe Bruhat",
+ "y" : 12,
"name" : "#23: Philippe Bruhat",
- "y" : 12
+ "drilldown" : "Philippe Bruhat"
},
{
- "drilldown" : "Sergio Iglesias",
+ "y" : 12,
"name" : "#24: Sergio Iglesias",
- "y" : 12
+ "drilldown" : "Sergio Iglesias"
},
{
+ "y" : 10,
"drilldown" : "Khalid",
- "name" : "#25: Khalid",
- "y" : 10
+ "name" : "#25: Khalid"
},
{
"y" : 10,
@@ -142,234 +134,237 @@
"drilldown" : "Steve Rogerson"
},
{
- "y" : 10,
"name" : "#27: Veesh Goldman",
- "drilldown" : "Veesh Goldman"
+ "drilldown" : "Veesh Goldman",
+ "y" : 10
},
{
- "y" : 8,
+ "name" : "#28: Alex Daniel",
"drilldown" : "Alex Daniel",
- "name" : "#28: Alex Daniel"
+ "y" : 8
},