aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2020-10-19 10:20:18 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2020-10-19 10:20:18 +0100
commit52ae56bdd93bb55f04ee3d75bc45365b31e80306 (patch)
treebfa19a589d8a07b43e8b69b631cc462f4e7d0f0f
parentd46f83e37e3c252e2f566da9a78f7ad8c8254671 (diff)
downloadperlweeklychallenge-club-52ae56bdd93bb55f04ee3d75bc45365b31e80306.tar.gz
perlweeklychallenge-club-52ae56bdd93bb55f04ee3d75bc45365b31e80306.tar.bz2
perlweeklychallenge-club-52ae56bdd93bb55f04ee3d75bc45365b31e80306.zip
- Added solutions by Alexander Karelas for week 81.
-rwxr-xr-xchallenge-081/alexander-karelas/perl/ch-1.pl21
-rwxr-xr-xchallenge-081/alexander-karelas/perl/ch-2.pl25
-rw-r--r--challenge-081/alexander-karelas/perl/input3
-rw-r--r--stats/pwc-challenge-081.json315
-rw-r--r--stats/pwc-current.json312
-rw-r--r--stats/pwc-language-breakdown-summary.json76
-rw-r--r--stats/pwc-language-breakdown.json1162
-rw-r--r--stats/pwc-leaders.json714
-rw-r--r--stats/pwc-summary-1-30.json36
-rw-r--r--stats/pwc-summary-121-150.json110
-rw-r--r--stats/pwc-summary-151-180.json116
-rw-r--r--stats/pwc-summary-181-210.json70
-rw-r--r--stats/pwc-summary-31-60.json108
-rw-r--r--stats/pwc-summary-61-90.json42
-rw-r--r--stats/pwc-summary-91-120.json28
-rw-r--r--stats/pwc-summary.json34
16 files changed, 1618 insertions, 1554 deletions
diff --git a/challenge-081/alexander-karelas/perl/ch-1.pl b/challenge-081/alexander-karelas/perl/ch-1.pl
new file mode 100755
index 0000000000..f484f0ae77
--- /dev/null
+++ b/challenge-081/alexander-karelas/perl/ch-1.pl
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl
+
+use v5.30;
+use warnings;
+
+my ($A, $B) = @ARGV[0, 1];
+
+my $shorter = length $A;
+$shorter = length $B if length $B < length $A;
+
+my @solutions;
+
+for (my $len = 1; $len <= $shorter; $len++) {
+ next if length($A) % $len != 0 or length($B) % $len != 0;
+ my $candidate = substr $A, 0, $len;
+ if ($A eq $candidate x (length($A) / $len) and $B eq $candidate x (length($B) / $len)) {
+ push @solutions, $candidate;
+ }
+}
+
+print "(", join(", ", map qq{"$_"}, @solutions), ")\n";
diff --git a/challenge-081/alexander-karelas/perl/ch-2.pl b/challenge-081/alexander-karelas/perl/ch-2.pl
new file mode 100755
index 0000000000..d7ba46423d
--- /dev/null
+++ b/challenge-081/alexander-karelas/perl/ch-2.pl
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+
+use v5.30;
+use warnings;
+
+# read file into string var
+open my $fh, "input";
+my $text = do {local $/; <$fh>};
+close $fh;
+
+# get frequency of each word
+my %frequencies;
+my @words = split /(?:[\.\"\(\)\,]|\'s|\-\-|\s)+/, $text;
+$frequencies{$_}++ foreach @words;
+
+# generate %reverse_frequencies, a map from frequencies to words
+my %reverse_frequencies;
+while (my ($word, $freq) = each %frequencies) {
+ push @{ $reverse_frequencies{$freq} }, $word;
+}
+
+# display sorted
+foreach my $freq (sort {$a <=> $b} keys %reverse_frequencies) {
+ print $freq, (map " $_", sort @{ $reverse_frequencies{$freq} }), "\n\n";
+}
diff --git a/challenge-081/alexander-karelas/perl/input b/challenge-081/alexander-karelas/perl/input
new file mode 100644
index 0000000000..d2bb45d308
--- /dev/null
+++ b/challenge-081/alexander-karelas/perl/input
@@ -0,0 +1,3 @@
+West Side Story
+
+The award-winning adaptation of the classic romantic tragedy "Romeo and Juliet". The feuding families become two warring New York City gangs, the white Jets led by Riff and the Latino Sharks, led by Bernardo. Their hatred escalates to a point where neither can coexist with any form of understanding. But when Riff's best friend (and former Jet) Tony and Bernardo's younger sister Maria meet at a dance, no one can do anything to stop their love. Maria and Tony begin meeting in secret, planning to run away. Then the Sharks and Jets plan a rumble under the highway--whoever wins gains control of the streets. Maria sends Tony to stop it, hoping it can end the violence. It goes terribly wrong, and before the lovers know what's happened, tragedy strikes and doesn't stop until the climactic and heartbreaking ending. \ No newline at end of file
diff --git a/stats/pwc-challenge-081.json b/stats/pwc-challenge-081.json
index ccb5e8c53f..2eedc7fa23 100644
--- a/stats/pwc-challenge-081.json
+++ b/stats/pwc-challenge-081.json
@@ -1,54 +1,50 @@
{
- "chart" : {
- "type" : "column"
- },
- "subtitle" : {
- "text" : "[Champions: 40] Last updated at 2020-10-13 16:56:07 GMT"
- },
- "legend" : {
- "enabled" : 0
- },
- "tooltip" : {
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "followPointer" : 1
+ "title" : {
+ "text" : "Perl Weekly Challenge - 081"
},
"series" : [
{
+ "name" : "Perl Weekly Challenge - 081",
+ "colorByPoint" : 1,
"data" : [
{
- "y" : 2,
"drilldown" : "Abigail",
- "name" : "Abigail"
+ "name" : "Abigail",
+ "y" : 2
},
{
- "name" : "Adam Russell",
"drilldown" : "Adam Russell",
+ "name" : "Adam Russell",
"y" : 3
},
{
"y" : 2,
+ "name" : "Alexander Karelas",
+ "drilldown" : "Alexander Karelas"
+ },
+ {
+ "name" : "Alexander Pankoff",
"drilldown" : "Alexander Pankoff",
- "name" : "Alexander Pankoff"
+ "y" : 2
},
{
- "y" : 4,
+ "name" : "Andinus",
"drilldown" : "Andinus",
- "name" : "Andinus"
+ "y" : 4
},
{
- "drilldown" : "Andrew Shitov",
+ "y" : 2,
"name" : "Andrew Shitov",
- "y" : 2
+ "drilldown" : "Andrew Shitov"
},
{
"y" : 3,
- "drilldown" : "Arne Sommer",
- "name" : "Arne Sommer"
+ "name" : "Arne Sommer",
+ "drilldown" : "Arne Sommer"
},
{
- "drilldown" : "Athanasius",
"name" : "Athanasius",
+ "drilldown" : "Athanasius",
"y" : 4
},
{
@@ -57,13 +53,13 @@
"drilldown" : "Bob Lied"
},
{
+ "y" : 2,
"name" : "Cheok-Yin Fung",
- "drilldown" : "Cheok-Yin Fung",
- "y" : 2
+ "drilldown" : "Cheok-Yin Fung"
},
{
- "name" : "Colin Crain",
"drilldown" : "Colin Crain",
+ "name" : "Colin Crain",
"y" : 5
},
{
@@ -72,9 +68,9 @@
"drilldown" : "Dave Jacoby"
},
{
- "y" : 2,
+ "name" : "Duncan C. White",
"drilldown" : "Duncan C. White",
- "name" : "Duncan C. White"
+ "y" : 2
},
{
"name" : "E. Choroba",
@@ -82,14 +78,14 @@
"y" : 2
},
{
- "y" : 2,
+ "drilldown" : "Feng Chang",
"name" : "Feng Chang",
- "drilldown" : "Feng Chang"
+ "y" : 2
},
{
- "y" : 4,
+ "name" : "Flavio Poletti",
"drilldown" : "Flavio Poletti",
- "name" : "Flavio Poletti"
+ "y" : 4
},
{
"y" : 5,
@@ -98,28 +94,28 @@
},
{
"y" : 2,
- "name" : "James Smith",
- "drilldown" : "James Smith"
+ "drilldown" : "James Smith",
+ "name" : "James Smith"
},
{
- "y" : 2,
"name" : "Jan Krnavek",
- "drilldown" : "Jan Krnavek"
+ "drilldown" : "Jan Krnavek",
+ "y" : 2
},
{
- "y" : 2,
"drilldown" : "Jorg Sommrey",
- "name" : "Jorg Sommrey"
+ "name" : "Jorg Sommrey",
+ "y" : 2
},
{
- "drilldown" : "Jose Luis",
+ "y" : 2,
"name" : "Jose Luis",
- "y" : 2
+ "drilldown" : "Jose Luis"
},
{
+ "y" : 4,
"name" : "Julio de Castro",
- "drilldown" : "Julio de Castro",
- "y" : 4
+ "drilldown" : "Julio de Castro"
},
{
"name" : "Kang-min Liu",
@@ -133,22 +129,22 @@
},
{
"y" : 3,
- "drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld"
},
{
"y" : 2,
- "name" : "Lubos Kolouch",
- "drilldown" : "Lubos Kolouch"
+ "drilldown" : "Lubos Kolouch",
+ "name" : "Lubos Kolouch"
},
{
- "name" : "Mark Anderson",
+ "y" : 2,
"drilldown" : "Mark Anderson",
- "y" : 2
+ "name" : "Mark Anderson"
},
{
- "name" : "Markus Holzer",
"drilldown" : "Markus Holzer",
+ "name" : "Markus Holzer",
"y" : 2
},
{
@@ -162,63 +158,61 @@
"drilldown" : "Myoungjin Jeon"
},
{
- "name" : "Niels van Dijke",
+ "y" : 2,
"drilldown" : "Niels van Dijke",
- "y" : 2
+ "name" : "Niels van Dijke"
},
{
- "name" : "Nuno Vieira",
+ "y" : 2,
"drilldown" : "Nuno Vieira",
- "y" : 2
+ "name" : "Nuno Vieira"
},
{
- "name" : "Pete Houston",
"drilldown" : "Pete Houston",
+ "name" : "Pete Houston",
"y" : 2
},
{
- "y" : 5,
+ "name" : "Roger Bell_West",
"drilldown" : "Roger Bell_West",
- "name" : "Roger Bell_West"
+ "y" : 5
},
{
"y" : 2,
- "drilldown" : "Shawn Wagner",
- "name" : "Shawn Wagner"
+ "name" : "Shawn Wagner",
+ "drilldown" : "Shawn Wagner"
},
{
- "drilldown" : "Simon Green",
+ "y" : 3,
"name" : "Simon Green",
- "y" : 3
+ "drilldown" : "Simon Green"
},
{
- "name" : "Simon Proctor",
+ "y" : 2,
"drilldown" : "Simon Proctor",
- "y" : 2
+ "name" : "Simon Proctor"
},
{
"y" : 2,
- "drilldown" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
+ "name" : "Ulrich Rieke",
+ "drilldown" : "Ulrich Rieke"
},
{
- "y" : 1,
+ "drilldown" : "Vinod Kumar K",
"name" : "Vinod Kumar K",
- "drilldown" : "Vinod Kumar K"
+ "y" : 1
},
{
- "drilldown" : "Walt Mankowski",
+ "y" : 3,
"name" : "Walt Mankowski",
- "y" : 3
+ "drilldown" : "Walt Mankowski"
},
{
- "name" : "Wanderdoc",
+ "y" : 2,
"drilldown" : "Wanderdoc",
- "y" : 2
+ "name" : "Wanderdoc"
}
- ],
- "colorByPoint" : 1,
- "name" : "Perl Weekly Challenge - 081"
+ ]
}
],
"drilldown" : {
@@ -230,8 +224,8 @@
2
]
],
- "name" : "Abigail",
- "id" : "Abigail"
+ "id" : "Abigail",
+ "name" : "Abigail"
},
{
"name" : "Adam Russell",
@@ -248,18 +242,26 @@
]
},
{
- "id" : "Alexander Pankoff",
- "name" : "Alexander Pankoff",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Alexander Karelas",
+ "name" : "Alexander Karelas"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "id" : "Alexander Pankoff",
+ "name" : "Alexander Pankoff"
},
{
- "id" : "Andinus",
- "name" : "Andinus",
"data" : [
[
"Perl",
@@ -269,21 +271,22 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Andinus",
+ "name" : "Andinus"
},
{
+ "name" : "Andrew Shitov",
+ "id" : "Andrew Shitov",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Andrew Shitov",
- "id" : "Andrew Shitov"
+ ]
},
{
"name" : "Arne Sommer",
- "id" : "Arne Sommer",
"data" : [
[
"Raku",
@@ -293,9 +296,11 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Arne Sommer"
},
{
+ "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -306,18 +311,17 @@
2
]
],
- "id" : "Athanasius",
"name" : "Athanasius"
},
{
"name" : "Bob Lied",
- "id" : "Bob Lied",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Bob Lied"
},
{
"name" : "Cheok-Yin Fung",
@@ -330,7 +334,6 @@
]
},
{
- "id" : "Colin Crain",
"name" : "Colin Crain",
"data" : [
[
@@ -345,37 +348,38 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Colin Crain"
},
{
+ "name" : "Dave Jacoby",
"data" : [
[
"Perl",
2
]
],
- "id" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ "id" : "Dave Jacoby"
},
{
+ "id" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
],
- "name" : "Duncan C. White",
- "id" : "Duncan C. White"
+ "name" : "Duncan C. White"
},
{
"id" : "E. Choroba",
- "name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "E. Choroba"
},
{
"data" : [
@@ -384,10 +388,11 @@
2
]
],
- "name" : "Feng Chang",
- "id" : "Feng Chang"
+ "id" : "Feng Chang",
+ "name" : "Feng Chang"
},
{
+ "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -398,10 +403,10 @@
2
]
],
- "id" : "Flavio Poletti",
"name" : "Flavio Poletti"
},
{
+ "id" : "Jaldhar H. Vyas",
"data" : [
[
"Perl",
@@ -416,32 +421,31 @@
1
]
],
- "name" : "Jaldhar H. Vyas",
- "id" : "Jaldhar H. Vyas"
+ "name" : "Jaldhar H. Vyas"
},
{
- "name" : "James Smith",
"id" : "James Smith",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "James Smith"
},
{
- "id" : "Jan Krnavek",
"name" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Jan Krnavek"
},
{
- "id" : "Jorg Sommrey",
"name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
@@ -450,17 +454,16 @@
]
},
{
+ "id" : "Jose Luis",
"data" : [
[
"Perl",
2
]
],
- "name" : "Jose Luis",
- "id" : "Jose Luis"
+ "name" : "Jose Luis"
},
{
- "id" : "Julio de Castro",
"name" : "Julio de Castro",
"data" : [
[
@@ -471,11 +474,12 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Julio de Castro"
},
{
- "id" : "Kang-min Liu",
"name" : "Kang-min Liu",
+ "id" : "Kang-min Liu",
"data" : [
[
"Raku",
@@ -484,14 +488,14 @@
]
},
{
+ "id" : "Lars Thegler",
"data" : [
[
"Perl",
2
]
],
- "name" : "Lars Thegler",
- "id" : "Lars Thegler"
+ "name" : "Lars Thegler"
},
{
"name" : "Laurent Rosenfeld",
@@ -512,38 +516,36 @@
]
},
{
+ "id" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
],
- "name" : "Lubos Kolouch",
- "id" : "Lubos Kolouch"
+ "name" : "Lubos Kolouch"
},
{
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
- "id" : "Mark Anderson",
- "name" : "Mark Anderson"
+ "id" : "Mark Anderson"
},
{
- "name" : "Markus Holzer",
- "id" : "Markus Holzer",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Markus Holzer",
+ "name" : "Markus Holzer"
},
{
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar",
"data" : [
[
"Perl",
@@ -557,9 +559,13 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Mohammad S Anwar",
+ "name" : "Mohammad S Anwar"
},
{
+ "name" : "Myoungjin Jeon",
+ "id" : "Myoungjin Jeon",
"data" : [
[
"Perl",
@@ -573,42 +579,39 @@
"Blog",
2
]
- ],
- "name" : "Myoungjin Jeon",
- "id" : "Myoungjin Jeon"
+ ]
},
{
- "id" : "Niels van Dijke",
"name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Niels van Dijke"
},
{
- "name" : "Nuno Vieira",
"id" : "Nuno Vieira",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Nuno Vieira"
},
{
- "name" : "Pete Houston",
"id" : "Pete Houston",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Pete Houston"
},
{
- "name" : "Roger Bell_West",
"id" : "Roger Bell_West",
"data" : [
[
@@ -623,21 +626,21 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Roger Bell_West"
},
{
+ "id" : "Shawn Wagner",
"data" : [
[
"Perl",
2
]
],
- "name" : "Shawn Wagner",
- "id" : "Shawn Wagner"
+ "name" : "Shawn Wagner"
},
{
"name" : "Simon Green",
- "id" : "Simon Green",
"data" : [
[
"Perl",
@@ -647,19 +650,21 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Simon Green"
},
{
"name" : "Simon Proctor",
- "id" : "Simon Proctor",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Simon Proctor"
},
{
+ "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -670,8 +675,7 @@
1
]
],
- "name" : "Ulrich Rieke",
- "id" : "Ulrich Rieke"
+ "name" : "Ulrich Rieke"
},
{
"name" : "Vinod Kumar K",
@@ -684,6 +688,7 @@
]
},
{
+ "name" : "Walt Mankowski",
"data" : [
[
"Perl",
@@ -694,18 +699,17 @@
1
]
],
- "name" : "Walt Mankowski",
"id" : "Walt Mankowski"
},
{
- "id" : "Wanderdoc",
- "name" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Wanderdoc",
+ "name" : "Wanderdoc"
}
]
},
@@ -723,10 +727,21 @@
"text" : "Total Solutions"
}
},
+ "subtitle" : {
+ "text" : "[Champions: 41] Last updated at 2020-10-19 09:17:14 GMT"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
"xAxis" : {
"type" : "category"
},
- "title" : {
- "text" : "Perl Weekly Challenge - 081"
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : 1
}
}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 37ec97482b..ec8ca48507 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,93 +1,84 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "title" : {
- "text" : "Perl Weekly Challenge - 082"
- },
"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/>"
+ "chart" : {
+ "type" : "column"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 42] Last updated at 2020-10-19 09:20:00 GMT"
},
"plotOptions" : {
"series" : {
- "borderWidth" : 0,
"dataLabels" : {
"format" : "{point.y}",
"enabled" : 1
- }
+ },
+ "borderWidth" : 0
}
},
- "xAxis" : {
- "type" : "category"
- },
"series" : [
{
+ "name" : "Perl Weekly Challenge - 082",
"data" : [
{
- "y" : 4,
"drilldown" : "Abigail",
+ "y" : 4,
"name" : "Abigail"
},
{
+ "y" : 3,
"drilldown" : "Adam Russell",
- "name" : "Adam Russell",
- "y" : 3
+ "name" : "Adam Russell"
},
{
- "name" : "Alexander Pankoff",
+ "y" : 2,
"drilldown" : "Alexander Pankoff",
- "y" : 2
+ "name" : "Alexander Pankoff"
},
{
- "name" : "Andinus",
"drilldown" : "Andinus",
+ "name" : "Andinus",
"y" : 2
},
{
- "y" : 2,
+ "drilldown" : "Andrew Shitov",
"name" : "Andrew Shitov",
- "drilldown" : "Andrew Shitov"
+ "y" : 2
},
{
- "y" : 3,
"name" : "Arne Sommer",
- "drilldown" : "Arne Sommer"
+ "drilldown" : "Arne Sommer",
+ "y" : 3
},
{
- "name" : "Athanasius",
+ "y" : 4,
"drilldown" : "Athanasius",
- "y" : 4
+ "name" : "Athanasius"
},
{
- "y" : 2,
"name" : "Bob Lied",
- "drilldown" : "Bob Lied"
+ "drilldown" : "Bob Lied",
+ "y" : 2
},
{
- "y" : 2,
+ "name" : "Cheok-Yin Fung",
"drilldown" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung"
+ "y" : 2
},
{
"y" : 5,
- "name" : "Colin Crain",
- "drilldown" : "Colin Crain"
+ "drilldown" : "Colin Crain",
+ "name" : "Colin Crain"
},
{
- "name" : "Cristina Heredia",
"drilldown" : "Cristina Heredia",
- "y" : 1
+ "y" : 1,
+ "name" : "Cristina Heredia"
},
{
- "y" : 2,
"drilldown" : "Dave Cross",
+ "y" : 2,
"name" : "Dave Cross"
},
{
@@ -97,8 +88,8 @@
},
{
"drilldown" : "Dieter Dobbelaere",
- "name" : "Dieter Dobbelaere",
- "y" : 2
+ "y" : 2,
+ "name" : "Dieter Dobbelaere"
},
{
"name" : "Duncan C. White",
@@ -106,48 +97,48 @@
"y" : 2
},
{
- "y" : 2,
"drilldown" : "E. Choroba",
+ "y" : 2,
"name" : "E. Choroba"
},
{
- "name" : "Feng Chang",
"drilldown" : "Feng Chang",
- "y" : 2
+ "y" : 2,
+ "name" : "Feng Chang"
},
{
+ "y" : 5,
"drilldown" : "Flavio Poletti",
- "name" : "Flavio Poletti",
- "y" : 5
+ "name" : "Flavio Poletti"
},
{
+ "y" : 5,
"drilldown" : "Jaldhar H. Vyas",
- "name" : "Jaldhar H. Vyas",
- "y" : 5
+ "name" : "Jaldhar H. Vyas"
},
{
- "name" : "Jan Krnavek",
"drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek",
"y" : 2
},
{
- "y" : 2,
+ "drilldown" : "Jorg Sommrey",
"name" : "Jorg Sommrey",
- "drilldown" : "Jorg Sommrey"
+ "y" : 2
},
{
- "drilldown" : "Jose Luis",
"name" : "Jose Luis",
+ "drilldown" : "Jose Luis",
"y" : 2
},
{