diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2019-06-09 05:39:51 +0100 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2019-06-09 05:39:51 +0100 |
| commit | 8cdc531858dfa1b8f3c6c90a1d3058a92bfd8f78 (patch) | |
| tree | 9138ffeeca4a75aeaf6a99db6d70e6e59609187d | |
| parent | d4b277b14cf4fa525814ff76e0665f2151022fe0 (diff) | |
| download | perlweeklychallenge-club-8cdc531858dfa1b8f3c6c90a1d3058a92bfd8f78.tar.gz perlweeklychallenge-club-8cdc531858dfa1b8f3c6c90a1d3058a92bfd8f78.tar.bz2 perlweeklychallenge-club-8cdc531858dfa1b8f3c6c90a1d3058a92bfd8f78.zip | |
- Added solutions by Jo Christian Oterhals.
| -rw-r--r-- | challenge-011/jo-christian-oterhals/perl6/ch-1.p6 | 28 | ||||
| -rw-r--r-- | challenge-011/jo-christian-oterhals/perl6/ch-1.sh | 1 | ||||
| -rw-r--r-- | challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 | 3 | ||||
| -rw-r--r-- | challenge-011/jo-christian-oterhals/perl6/ch-2.p6 | 5 | ||||
| -rw-r--r-- | stats/pwc-current.json | 326 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 74 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 110 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 454 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 108 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 100 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 36 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 42 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 240 |
13 files changed, 767 insertions, 760 deletions
diff --git a/challenge-011/jo-christian-oterhals/perl6/ch-1.p6 b/challenge-011/jo-christian-oterhals/perl6/ch-1.p6 index 54955d03c7..aa12ae87ce 100644 --- a/challenge-011/jo-christian-oterhals/perl6/ch-1.p6 +++ b/challenge-011/jo-christian-oterhals/perl6/ch-1.p6 @@ -1,21 +1,21 @@ #!/usr/bin/env perl6 -multi MAIN( #= Compares the C. scale to any scale you dream up - Real $f, #= freezing point in custom scale - Real $b #= boiling point in custom scale +multi MAIN( #= Compares the Celcius scale to whatever scale you dream up + Real $f, #= freezing point in this scale + Real $b #= boiling point in this scale ) { - say "There is no equal point for this scale." and exit if $b - $f == 100; - my $equal-point = $f / (1 - (($b - $f) / 100)); - say "The calculated equal point is only theoretical as it is below absolute zero." if $equal-point < -273.15; - say "Equal point: $equal-point"; + say "There is no equal point for this scale." and exit if $b - $f == 100; + my $equal-point = $f / (1 - (($b - $f) / 100)); + say "The calculated equal point is only theoretical as it is below absolute zero." if $equal-point < -273.15; + say "Equal point: $equal-point"; } -multi MAIN( #= Compares the C. scale to a named temperature scale - Str $scale where { $_ ~~ m:i/^(fahrenheit|kelvin|rankin)$/ } #= Name of scale (Fahrenheit, Kelvin or Rankin) +multi MAIN( #= Compares the Celcius scale to a given temperature scale + Str $scale where { $_ ~~ m:i/^(fahrenheit|kelvin|rankin)$/ } #= Name of scale (Fahrenheit, Kelvin or Rankin) ) { - given $scale.fc { - when "fahrenheit" { MAIN( 32 , 212 ); } - when "kelvin" { MAIN(273.15, 373.15); } - when "rankin" { MAIN(491.67, 671.67); } - } + given $scale.fc { + when "fahrenheit" { MAIN( 32 , 212 ); } + when "kelvin" { MAIN(273.15, 373.15); } + when "rankin" { MAIN(491.67, 671.67); } + } } diff --git a/challenge-011/jo-christian-oterhals/perl6/ch-1.sh b/challenge-011/jo-christian-oterhals/perl6/ch-1.sh deleted file mode 100644 index 46451905ba..0000000000 --- a/challenge-011/jo-christian-oterhals/perl6/ch-1.sh +++ /dev/null @@ -1 +0,0 @@ -perl6 -e 'sub MAIN($a, $b) { say "Equal point: " ~ ( $b - $a == 100 ?? "None" !! $a / (1 - (($b - $a) / 100))) }' 32 212 diff --git a/challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 b/challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 new file mode 100644 index 0000000000..bff294d1a6 --- /dev/null +++ b/challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 @@ -0,0 +1,3 @@ +#!/usr/bin/env perl6 + +-> $a, $b { say "Equal point: " ~ ( $b - $a == 100 ?? "None" !! $a / (1 - (($b - $a) / 100))) }(32,212) diff --git a/challenge-011/jo-christian-oterhals/perl6/ch-2.p6 b/challenge-011/jo-christian-oterhals/perl6/ch-2.p6 new file mode 100644 index 0000000000..db71e84635 --- /dev/null +++ b/challenge-011/jo-christian-oterhals/perl6/ch-2.p6 @@ -0,0 +1,5 @@ +#!/usr/bin/env perl6 + +my &idm = -> $size { gather for ^$size -> $y { take map { Int($_ == $y) }, ^$size } }; +.join(' ').say for idm(4); # 4... 2... 16... or whatever... + diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 8f1b1655d2..47ce2ef5b1 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,148 +1,37 @@ { - "legend" : { - "enabled" : 0 - }, - "xAxis" : { - "type" : "category" + "tooltip" : { + "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>", + "followPointer" : 1, + "pointerFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>" }, - "series" : [ - { - "data" : [ - { - "drilldown" : "Aaron Sherman", - "y" : 2, - "name" : "Aaron Sherman" - }, - { - "name" : "Alicia Bielsa", - "y" : 2, - "drilldown" : "Alicia Bielsa" - }, - { - "name" : "Andrezgz", - "drilldown" : "Andrezgz", - "y" : 2 - }, - { - "name" : "Arne Sommer", - "drilldown" : "Arne Sommer", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby" - }, - { - "name" : "E. Choroba", - "y" : 2, - "drilldown" : "E. Choroba" - }, - { - "name" : "Feng Chang", - "y" : 4, - "drilldown" : "Feng Chang" - }, - { - "drilldown" : "Francis Whittle", - "y" : 2, - "name" : "Francis Whittle" - }, - { - "drilldown" : "Gustavo Chaves", - "y" : 2, - "name" : "Gustavo Chaves" - }, - { - "name" : "Jo Christian Oterhals", - "drilldown" : "Jo Christian Oterhals", - "y" : 1 - }, - { - "y" : 6, - "drilldown" : "Joelle Maslak", - "name" : "Joelle Maslak" - }, - { - "name" : "Khalid", - "y" : 2, - "drilldown" : "Khalid" - }, - { - "name" : "Kivanc Yazan", - "y" : 2, - "drilldown" : "Kivanc Yazan" - }, - { - "drilldown" : "Laurent Rosenfeld", - "y" : 4, - "name" : "Laurent Rosenfeld" - }, - { - "name" : "Maxim Nechaev", - "drilldown" : "Maxim Nechaev", - "y" : 2 - }, - { - "y" : 1, - "drilldown" : "Pete Houston", - "name" : "Pete Houston" - }, - { - "name" : "Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 2 - }, - { - "name" : "Steven Wilson", - "y" : 3, - "drilldown" : "Steven Wilson" - }, - { - "y" : 2, - "drilldown" : "Yozen Hernandez", - "name" : "Yozen Hernandez" - } - ], - "name" : "Champions", - "colorByPoint" : 1 + "yAxis" : { + "title" : { + "text" : "Total Solutions" } - ], - "title" : { - "text" : "Perl Weekly Challenge - 011" - }, - "chart" : { - "type" : "column" }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } + "xAxis" : { + "type" : "category" }, "drilldown" : { "series" : [ { - "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 2 ] ], + "id" : "Aaron Sherman", "name" : "Aaron Sherman" }, { - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Alicia Bielsa", "name" : "Alicia Bielsa" }, { @@ -152,32 +41,32 @@ 2 ] ], - "id" : "Andrezgz", - "name" : "Andrezgz" + "name" : "Andrezgz", + "id" : "Andrezgz" }, { - "name" : "Arne Sommer", - "id" : "Arne Sommer", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { - "name" : "Dave Jacoby", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Dave Jacoby" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { - "name" : "E. Choroba", "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl 5", @@ -186,6 +75,7 @@ ] }, { + "id" : "Feng Chang", "name" : "Feng Chang", "data" : [ [ @@ -196,22 +86,21 @@ "Perl 6", 3 ] - ], - "id" : "Feng Chang" + ] }, { - "name" : "Francis Whittle", - "id" : "Francis Whittle", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Francis Whittle", + "name" : "Francis Whittle" }, { - "name" : "Gustavo Chaves", "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", @@ -220,17 +109,16 @@ ] }, { - "name" : "Jo Christian Oterhals", "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals", "data" : [ [ "Perl 6", - 1 + 2 ] ] }, { - "id" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -241,30 +129,30 @@ 3 ] ], - "name" : "Joelle Maslak" + "name" : "Joelle Maslak", + "id" : "Joelle Maslak" }, { + "id" : "Khalid", "name" : "Khalid", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Khalid" + ] }, { - "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Kivanc Yazan" + "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan" }, { - "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -275,16 +163,17 @@ 2 ] ], - "id" : "Laurent Rosenfeld" + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" }, { - "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Maxim Nechaev", "name" : "Maxim Nechaev" }, { @@ -298,48 +187,159 @@ ] }, { + "name" : "Simon Proctor", "id" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Simon Proctor" + ] }, { + "name" : "Steven Wilson", "id" : "Steven Wilson", "data" : [ [ "Perl 5", 3 ] - ], - "name" : "Steven Wilson" + ] }, { - "name" : "Yozen Hernandez", - "id" : "Yozen Hernandez", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Yozen Hernandez", + "name" : "Yozen Hernandez" } ] }, - "subtitle" : { - "text" : "[Champions: 19] Last updated at 2019-06-09 04:28:32 GMT" + "chart" : { + "type" : "column" }, - "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 + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "name" : "Aaron Sherman", + "y" : 2, + "drilldown" : "Aaron Sherman" + }, + { + "y" : 2, + "drilldown" : "Alicia Bielsa", + "name" : "Alicia Bielsa" + }, + { + "y" : 2, + "drilldown" : "Andrezgz", + "name" : "Andrezgz" + }, + { + "name" : "Arne Sommer", + "y" : 2, + "drilldown" : "Arne Sommer" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 2, + "name" : "Dave Jacoby" + }, + { + "name" : "E. Choroba", + "y" : 2, + "drilldown" : "E. Choroba" + }, + { + "drilldown" : "Feng Chang", + "y" : 4, + "name" : "Feng Chang" + }, + { + "name" : "Francis Whittle", + "drilldown" : "Francis Whittle", + "y" : 2 + }, + { + "name" : "Gustavo Chaves", + "drilldown" : "Gustavo Chaves", + "y" : 2 + }, + { + "name" : "Jo Christian Oterhals", + "y" : 2, + "drilldown" : "Jo Christian Oterhals" + }, + { + "name" : "Joelle Maslak", + "y" : 6, + "drilldown" : "Joelle Maslak" + }, + { + "name" : "Khalid", + "y" : 2, + "drilldown" : "Khalid" + }, + { + "name" : "Kivanc Yazan", + "drilldown" : "Kivanc Yazan", + "y" : 2 + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 4, + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Maxim Nechaev", + "y" : 2, + "drilldown" : "Maxim Nechaev" + }, + { + "name" : "Pete Houston", + "y" : 1, + "drilldown" : "Pete Houston" + }, + { + "y" : 2, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + }, + { + "y" : 3, + "drilldown" : "Steven Wilson", + "name" : "Steven Wilson" + }, + { + "drilldown" : "Yozen Hernandez", + "y" : 2, + "name" : "Yozen Hernandez" + } + ], + "name" : "Champions" + } + ], + "title" : { + "text" : "Perl Weekly Challenge - 011" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } + }, + "legend" : { + "enabled" : 0 + }, + "subtitle" : { + "text" : "[Champions: 19] Last updated at 2019-06-09 04:39:24 GMT" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 35a773cfc4..c312dc63f3 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,22 +1,19 @@ { - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 - }, - "subtitle" : { - "text" : "Last updated at 2019-06-09 04:29:10 GMT" - }, - "tooltip" : { - "pointFormat" : "<b>{point.y:.0f}</b>" - }, - "legend" : { - "enabled" : "false" - }, "series" : [ { "name" : "Contributions", + "dataLabels" : { + "y" : 10, + "format" : "{point.y:.0f}", + "color" : "#FFFFFF", + "align" : "right", + "enabled" : "true", + "rotation" : -90, + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + }, "data" : [ [ "Blog", @@ -30,34 +27,37 @@ "Perl 6", 253 ] - ], - "dataLabels" : { - "format" : "{point.y:.0f}", - "y" : 10, - "align" : "right", - "enabled" : "true", - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "color" : "#FFFFFF", - "rotation" : -90 - } + ] } ], - "chart" : { - "type" : "column" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" - }, "xAxis" : { - "type" : "category", "labels" : { "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" } + }, + "type" : "category" + }, + "tooltip" : { + "pointFormat" : "<b>{point.y:.0f}</b>" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + }, + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "Last updated at 2019-06-09 04:39:36 GMT" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 47aa071120..2bd5558a9a 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -2,21 +2,18 @@ "xAxis" : { "type" : "category" }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, "series" : [ { "data" : [ { "drilldown" : "001", - "y" : 113, - "name" : "#001 [P5=76 P6=37]" + "name" : "#001 [P5=76 P6=37]", + "y" : 113 }, { "drilldown" : "002", - "y" : 95, - "name" : "#002 [P5=63 P6=32]" + "name" : "#002 [P5=63 P6=32]", + "y" : 95 }, { "drilldown" : "003", @@ -29,50 +26,64 @@ "drilldown" : "004" }, { - "y" : 55, + "drilldown" : "005", "name" : "#005 [P5=33 P6=22]", - "drilldown" : "005" + "y" : 55 }, { + "drilldown" : "006", "name" : "#006 [P5=27 P6=14]", - "y" : 41, - "drilldown" : "006" + "y" : 41 }, { - "drilldown" : "007", "y" : 46, - "name" : "#007 [P5=26 P6=20]" + "name" : "#007 [P5=26 P6=20]", + "drilldown" : "007" }, { - "name" : "#008 [P5=36 P6=20]", "y" : 56, + "name" : "#008 [P5=36 P6=20]", "drilldown" : "008" }, { - "drilldown" : "009", + "y" : 51, "name" : "#009 [P5=33 P6=18]", - "y" : 51 + "drilldown" : "009" }, { - "drilldown" : "010", "name" : "#010 [P5=30 P6=15]", - "y" : 45 + "y" : 45, + "drilldown" : "010" }, { + "drilldown" : "011", "y" : 46, - "name" : "#011 [P5=26 P6=20]", - "drilldown" : "011" + "name" : "#011 [P5=26 P6=20]" } ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Languages" } ], + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, "chart" : { "type" : "column" }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-09 04:29:10 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-09 04:39:36 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, "drilldown" : { "series" : [ @@ -105,7 +116,6 @@ "id" : "002" }, { - "name" : "003", "data" : [ [ "Perl 5", @@ -116,10 +126,12 @@ 26 ] ], + "name" : "003", "id" : "003" }, { "name" : "004", + "id" : "004", "data" : [ [ "Perl 5", @@ -129,11 +141,11 @@ "Perl 6", 29 ] - ], - "id" : "004" + ] }, { "name" : "005", + "id" : "005", "data" : [ [ "Perl 5", @@ -143,11 +155,9 @@ "Perl 6", 22 ] - ], - "id" : "005" + ] }, { - "name" : "006", "data" : [ [ "Perl 5", @@ -158,9 +168,12 @@ 14 ] ], - "id" : "006" + "id" : "006", + "name" : "006" }, { + "name" : "007", + "id" : "007", "data" : [ [ "Perl 5", @@ -170,12 +183,11 @@ "Perl 6", 20 ] - ], - "name" : "007", - "id" : "007" + ] }, { "name" : "008", + "id" : "008", "data" : [ [ "Perl 5", @@ -185,11 +197,9 @@ "Perl 6", 20 ] - ], - "id" : "008" + ] }, { - "name" : "009", "data" : [ [ "Perl 5", @@ -200,10 +210,12 @@ 18 ] ], + "name" : "009", "id" : "009" }, { "id" : "010", + "name" : "010", "data" : [ [ "Perl 5", @@ -213,12 +225,9 @@ "Perl 6", 15 ] - ], - "name" : "010" + ] }, { - "id" : "011", - "name" : "011", "data" : [ [ "Perl 5", @@ -228,27 +237,18 @@ "Perl 6", 20 ] - ] + ], + "name" : "011", + "id" : "011" } ] }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, "legend" : { "enabled" : "false" }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, "tooltip" : { "headerFormat" : "<span style=\"font-size:11px\"></span>", "followPointer" : "true", diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 49e283d290..48c87b9346 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,7 +1,27 @@ { + "legend" : { + "enabled" : "false" + }, "chart" : { "type" : "column" }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "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" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, "series" : [ { "name" : "Perl Weekly Challenge Leaders", @@ -13,19 +33,19 @@ "drilldown" : "Laurent Rosenfeld" }, { - "name" : "#2: Joelle Maslak", "y" : 110, + "name" : "#2: Joelle Maslak", "drilldown" : "Joelle Maslak" }, { - "drilldown" : "Jaldhar H. Vyas", + "name" : "#3: Jaldhar H. Vyas", "y" : 80, - "name" : "#3: Jaldhar H. Vyas" + "drilldown" : "Jaldhar H. Vyas" }, { "drilldown" : "Ruben Westerberg", - "name" : "#4: Ruben Westerberg", - "y" : 68 + "y" : 68, + "name" : "#4: Ruben Westerberg" }, { "drilldown" : "Adam Russell", @@ -34,13 +54,13 @@ }, { "drilldown" : "Arne Sommer", - "y" : 58, - "name" : "#6: Arne Sommer" + "name" : "#6: Arne Sommer", + "y" : 58 }, { - "y" : 56, + "drilldown" : "Simon Proctor", "name" : "#7: Simon Proctor", - "drilldown" : "Simon Proctor" + "y" : 56 }, { "drilldown" : "Kian-Meng Ang", @@ -48,54 +68,54 @@ "name" : "#8: Kian-Meng Ang" }, { - "name" : "#9: Gustavo Chaves", - "y" : 46, - "drilldown" : "Gustavo Chaves" + "y" : 48, + "name" : "#9: Jo Christian Oterhals", + "drilldown" : "Jo Christian Oterhals" }, { - "drilldown" : "Jo Christian Oterhals", - "name" : "#10: Jo Christian Oterhals", - "y" : 46 + "y" : 46, + "name" : "#10: Gustavo Chaves", + "drilldown" : "Gustavo Chaves" }, { - "y" : 44, "name" : "#11: Dr James A. Smith", + "y" : 44, "drilldown" : "Dr James A. Smith" }, { - "drilldown" : "Francis Whittle", + "y" : 44, "name" : "#12: Francis Whittle", - "y" : 44 + "drilldown" : "Francis Whittle" }, { - "drilldown" : "Andrezgz", "name" : "#13: Andrezgz", - "y" : 42 + "y" : 42, + "drilldown" : "Andrezgz" }, { - "y" : 40, + "drilldown" : "Athanasius", "name" : "#14: Athanasius", - "drilldown" : "Athanasius" + "y" : 40 }, { + "drilldown" : "E. Choroba", "name" : "#15: E. Choroba", - "y" : 40, - "drilldown" : "E. Choroba" + "y" : 40 }, |
