From 9673cb4f1df96f0fbf5787a6f5f74d3178e21a9b Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Tue, 3 Sep 2019 19:57:49 -0500 Subject: perl5 solution for task 2 --- challenge-024/randy-lauen/perl5/ch-2.pl | 108 ++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 challenge-024/randy-lauen/perl5/ch-2.pl diff --git a/challenge-024/randy-lauen/perl5/ch-2.pl b/challenge-024/randy-lauen/perl5/ch-2.pl new file mode 100644 index 0000000000..8f65832fd5 --- /dev/null +++ b/challenge-024/randy-lauen/perl5/ch-2.pl @@ -0,0 +1,108 @@ +#!/usr/bin/env perl + +=head2 SYNOPSIS + +Task: + Create a script to implement full text search functionality using Inverted Index. + +Notes: + This script has a hardcoded list of documents. Run the script and pass a word as + the only argument to see which documents contain that word. + +Example Usage: + $ perl ch-2.pl minds + Found 2 document(s) for 'minds' + * "Pride and Prejudice": 1 occurence(s) + * "War of the Worlds": 1 occurence(s) + + $ perl ch-2.pl universe + Found 0 document(s) for 'universe' + +=cut + +use v5.26; +use strict; +use warnings; + +use List::MoreUtils qw( frequency ); + +my %index = build_inverse_index( get_documents() ); +my $keyword = lc $ARGV[0] // ''; +die "Must provide a keyword as an argument\n" unless length($keyword); + +my @matches = sort { $b->{freq} <=> $a->{freq} || $a->{doc} cmp $b->{doc} } $index{ $keyword }->@*; +say "Found " . scalar(@matches) . " document(s) for '$keyword'"; +if ( @matches ) { + say qq[* "$_->{doc}": $_->{freq} occurence(s)] for @matches; +} + +exit 0; + + +sub build_inverse_index { + my %documents = @_; + + my %index; + + while ( my ($name, $text) = each %documents ) { + my @words = map { lc $_ } $text =~ /\w+/g; + my %freq = frequency @words; + foreach my $word ( keys %freq ) { + push $index{ $word }->@*, { doc => $name, freq => $freq{$word} }; + } + } + + return %index; +} + + +sub get_documents { + return ( + 'Pride and Prejudice' => <<~'TXT', + It is a truth universally acknowledged, that + a single man in possession of a good fortune + must be in want of a wife. However little + known the feelings or views of such a man may + be on his first entering a neighbourhood, + this truth is so well fixed in the minds of + the surrounding families, that he is + considered the rightful property of some one + or other of their daughters. + TXT + 'War of the Worlds' => <<~'TXT', + No one would have believed, in the last years + of the nineteenth century, that human affairs + were being watched from the timeless worlds + of space. No one could have dreamed that we + were being scrutinised as someone with a + microscope studies creatures that swarm and + multiply in a drop of water. And yet, across + the gulf of space, minds immeasurably + superior to ours regarded this Earth with + envious eyes, and slowly, and surely, they + drew their plans against us... + TXT + 'Richard III' => <<~'TXT', + Now is the winter of our discontent made + glorious summer by this sun of York; and + all the clouds that lour'd upon our + house in the deep bosom of the ocean + buried. Now are our brows bound with + victorious wreaths; our bruised arms + hung up for monuments; our stern + alarums changed to merry meetings, our + dreadful marches to delightful + measures. + TXT +#'(Unconfuse VIM syntax highlighting) + "Hitchhiker's Guide to the Galaxy" => <<~'TXT', + Far back in the mists of ancient + time, in the great and glorious days + of the former Galactic Empire, life + was wild, rich and largely tax free. + TXT + ); +} + + + -- cgit From eeaf64155298cc2b923bfb16ff5697c012d2a0c3 Mon Sep 17 00:00:00 2001 From: Randy Lauen Date: Tue, 3 Sep 2019 20:07:59 -0500 Subject: remove tab chars --- challenge-024/randy-lauen/perl5/ch-2.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenge-024/randy-lauen/perl5/ch-2.pl b/challenge-024/randy-lauen/perl5/ch-2.pl index 8f65832fd5..96c9eb10ae 100644 --- a/challenge-024/randy-lauen/perl5/ch-2.pl +++ b/challenge-024/randy-lauen/perl5/ch-2.pl @@ -11,9 +11,9 @@ Notes: Example Usage: $ perl ch-2.pl minds - Found 2 document(s) for 'minds' - * "Pride and Prejudice": 1 occurence(s) - * "War of the Worlds": 1 occurence(s) + Found 2 document(s) for 'minds' + * "Pride and Prejudice": 1 occurence(s) + * "War of the Worlds": 1 occurence(s) $ perl ch-2.pl universe Found 0 document(s) for 'universe' -- cgit From 73943946ec754bb4a46e64e411e018ce05ea38bd Mon Sep 17 00:00:00 2001 From: andrezgz Date: Thu, 5 Sep 2019 19:53:48 -0300 Subject: challenge-024 andrezgz solution --- challenge-024/andrezgz/perl5/ch-1.pl | 1 + challenge-024/andrezgz/perl5/ch-2.pl | 42 ++++++++++++++++++++++++++ challenge-024/andrezgz/perl5/father_sons.txt | 17 +++++++++++ challenge-024/andrezgz/perl5/herdsman_bull.txt | 14 +++++++++ challenge-024/andrezgz/perl5/lion_mouse.txt | 15 +++++++++ challenge-024/andrezgz/perl5/wolf_lamb.txt | 15 +++++++++ 6 files changed, 104 insertions(+) create mode 100644 challenge-024/andrezgz/perl5/ch-1.pl create mode 100644 challenge-024/andrezgz/perl5/ch-2.pl create mode 100644 challenge-024/andrezgz/perl5/father_sons.txt create mode 100644 challenge-024/andrezgz/perl5/herdsman_bull.txt create mode 100644 challenge-024/andrezgz/perl5/lion_mouse.txt create mode 100644 challenge-024/andrezgz/perl5/wolf_lamb.txt diff --git a/challenge-024/andrezgz/perl5/ch-1.pl b/challenge-024/andrezgz/perl5/ch-1.pl new file mode 100644 index 0000000000..aacea2a264 --- /dev/null +++ b/challenge-024/andrezgz/perl5/ch-1.pl @@ -0,0 +1 @@ +print "This script is the smallest in terms of size that on execution doesn't throw any error, doesn't do anything special and explains what it does" diff --git a/challenge-024/andrezgz/perl5/ch-2.pl b/challenge-024/andrezgz/perl5/ch-2.pl new file mode 100644 index 0000000000..bfa208c451 --- /dev/null +++ b/challenge-024/andrezgz/perl5/ch-2.pl @@ -0,0 +1,42 @@ +#!/usr/bin/perl + +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-024/ +# Task #2 +# Create a script to implement full text search functionality using Inverted Index. According to wikipedia: +# In computer science, an inverted index (also referred to as a postings file or inverted file) +# is a database index storing a mapping from content, such as words or numbers, to its locations in a table, +# or in a document or a set of documents (named in contrast to a forward index, which maps from documents to content). +# The purpose of an inverted index is to allow fast full-text searches, at a cost of increased processing +# when a document is added to the database. +# Here is a nice example of Inverted Index. +# https://en.wikipedia.org/wiki/Search_engine_indexing#Inverted_indices + +use strict; +use warnings; + +die "Usage: $0 []" if @ARGV == 0; + +# Prepare inverted index +my %index; +while (<>) { + chomp; # remove line trailing string + s/["'?!]/ /ig; # some cleaning + my @words = grep { # filter words... + length > 2 # with 3 or more... + && /^[a-z\-]+$/i # alphabetic and hyphen characters only + } + split /[.,; ]/; # split line in words + $index{lc $_}{$ARGV}++ for (@words); # store word usage in file +} +print 'Words added: ' . join(',',sort keys %index) . "\n"; + +# Search word +print "\nSearch word: "; +my $w = <>; +chomp $w; +if ( exists $index{lc $w} ) { + print "'$w' was found on ", join(',',keys $index{lc $w}) . "\n"; +} +else { + print "'$w' wasn't found on any document\n"; +} diff --git a/challenge-024/andrezgz/perl5/father_sons.txt b/challenge-024/andrezgz/perl5/father_sons.txt new file mode 100644 index 0000000000..cf15c7f292 --- /dev/null +++ b/challenge-024/andrezgz/perl5/father_sons.txt @@ -0,0 +1,17 @@ +The Father and His Sons + +A FATHER had a family of sons who were perpetually quarreling +among themselves. When he failed to heal their disputes by his +exhortations, he determined to give them a practical illustration +of the evils of disunion; and for this purpose he one day told +them to bring him a bundle of sticks. When they had done so, he +placed the faggot into the hands of each of them in succession, +and ordered them to break it in pieces. They tried with all +their strength, and were not able to do it. He next opened the +faggot, took the sticks separately, one by one, and again put +them into his sons' hands, upon which they broke them easily. He +then addressed them in these words: "My sons, if you are of one +mind, and unite to assist each other, you will be as this faggot, +uninjured by all the attempts of your enemies; but if you are +divided among yourselves, you will be broken as easily as these +sticks." diff --git a/challenge-024/andrezgz/perl5/herdsman_bull.txt b/challenge-024/andrezgz/perl5/herdsman_bull.txt new file mode 100644 index 0000000000..f106e4f08c --- /dev/null +++ b/challenge-024/andrezgz/perl5/herdsman_bull.txt @@ -0,0 +1,14 @@ +The Herdsman and the Lost Bull + +A HERDSMAN tending his flock in a forest lost a Bull-calf from +the fold. After a long and fruitless search, he made a vow that, +if he could only discover the thief who had stolen the Calf, he +would offer a lamb in sacrifice to Hermes, Pan, and the Guardian +Deities of the forest. Not long afterwards, as he ascended a +small hillock, he saw at its foot a Lion feeding on the Calf. +Terrified at the sight, he lifted his eyes and his hands to +heaven, and said: "Just now I vowed to offer a lamb to the +Guardian Deities of the forest if I could only find out who had +robbed me; but now that I have discovered the thief, I would +willingly add a full-grown Bull to the Calf I have lost, if I may +only secure my own escape from him in safety." diff --git a/challenge-024/andrezgz/perl5/lion_mouse.txt b/challenge-024/andrezgz/perl5/lion_mouse.txt new file mode 100644 index 0000000000..36738f2918 --- /dev/null +++ b/challenge-024/andrezgz/perl5/lion_mouse.txt @@ -0,0 +1,15 @@ +The Lion and the Mouse + +A LION was awakened from sleep by a Mouse running over his face. +Rising up angrily, he caught him and was about to kill him, when +the Mouse piteously entreated, saying: "If you would only spare +my life, I would be sure to repay your kindness." The Lion +laughed and let him go. It happened shortly after this that the +Lion was caught by some hunters, who bound him by st ropes to the +ground. The Mouse, recognizing his roar, came gnawed the rope +with his teeth, and set him free, exclaim + +"You ridiculed the idea of my ever being able to help you, +expecting to receive from me any repayment of your favor; I now +you know that it is possible for even a Mouse to con benefits on +a Lion." diff --git a/challenge-024/andrezgz/perl5/wolf_lamb.txt b/challenge-024/andrezgz/perl5/wolf_lamb.txt new file mode 100644 index 0000000000..3b05b40064 --- /dev/null +++ b/challenge-024/andrezgz/perl5/wolf_lamb.txt @@ -0,0 +1,15 @@ +The Wolf and the Lamb + +WOLF, meeting with a Lamb astray from the fold, resolved not to +lay violent hands on him, but to find some plea to justify to the +Lamb the Wolf's right to eat him. He thus addressed him: +"Sirrah, last year you grossly insulted me." "Indeed," bleated +the Lamb in a mournful tone of voice, "I was not then born." Then +said the Wolf, "You feed in my pasture." "No, good sir," replied +the Lamb, "I have not yet tasted grass." Again said the Wolf, +"You drink of my well." "No," exclaimed the Lamb, "I never yet +drank water, for as yet my mother's milk is both food and drink +to me." Upon which the Wolf seized him and ate him up, saying, +"Well! I won't remain supperless, even though you refute every +one of my imputations." The tyrant will always find a pretext for +his tyranny. -- cgit From 62decd00f202639a773c3d2e5ed5d310663dfc24 Mon Sep 17 00:00:00 2001 From: andrezgz Date: Thu, 5 Sep 2019 20:05:47 -0300 Subject: challenge-024 ch-2 fix --- challenge-024/andrezgz/perl5/ch-2.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-024/andrezgz/perl5/ch-2.pl b/challenge-024/andrezgz/perl5/ch-2.pl index bfa208c451..49aa67a02a 100644 --- a/challenge-024/andrezgz/perl5/ch-2.pl +++ b/challenge-024/andrezgz/perl5/ch-2.pl @@ -35,7 +35,7 @@ print "\nSearch word: "; my $w = <>; chomp $w; if ( exists $index{lc $w} ) { - print "'$w' was found on ", join(',',keys $index{lc $w}) . "\n"; + print "'$w' was found on ", join(',',keys %{$index{lc $w}}) . "\n"; } else { print "'$w' wasn't found on any document\n"; -- cgit From aed0db39edba13ff8a6df3c7f25cec35bd1e2cb3 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Fri, 6 Sep 2019 11:55:40 +0100 Subject: - Added solutions by Andrezgz. --- stats/pwc-current.json | 171 +++--- stats/pwc-language-breakdown-summary.json | 64 +-- stats/pwc-language-breakdown.json | 230 ++++---- stats/pwc-leaders.json | 906 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 108 ++-- stats/pwc-summary-31-60.json | 28 +- stats/pwc-summary-61-90.json | 32 +- stats/pwc-summary-91-120.json | 92 +-- stats/pwc-summary.json | 264 ++++----- 9 files changed, 955 insertions(+), 940 deletions(-) diff --git a/stats/pwc-current.json b/stats/pwc-current.json index a782622e90..bc2879262d 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,9 +1,77 @@ { - "xAxis" : { - "type" : "category" + "title" : { + "text" : "Perl Weekly Challenge - 024" + }, + "series" : [ + { + "data" : [ + { + "name" : "Andrezgz", + "y" : 2, + "drilldown" : "Andrezgz" + }, + { + "name" : "Dave Cross", + "y" : 1, + "drilldown" : "Dave Cross" + }, + { + "y" : 2, + "name" : "Duane Powell", + "drilldown" : "Duane Powell" + }, + { + "drilldown" : "Joelle Maslak", + "y" : 4, + "name" : "Joelle Maslak" + }, + { + "name" : "Laurent Rosenfeld", + "y" : 5, + "drilldown" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Roger Bell West", + "y" : 4, + "name" : "Roger Bell West" + }, + { + "y" : 3, + "name" : "Simon Proctor", + "drilldown" : "Simon Proctor" + }, + { + "drilldown" : "Steven Wilson", + "name" : "Steven Wilson", + "y" : 1 + }, + { + "y" : 5, + "name" : "Yet Ebreo", + "drilldown" : "Yet Ebreo" + } + ], + "name" : "Perl Weekly Challenge - 024", + "colorByPoint" : 1 + } + ], + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" }, "drilldown" : { "series" : [ + { + "name" : "Andrezgz", + "id" : "Andrezgz", + "data" : [ + [ + "Perl 5", + 2 + ] + ] + }, { "data" : [ [ @@ -15,8 +83,8 @@ "id" : "Dave Cross" }, { - "name" : "Duane Powell", "id" : "Duane Powell", + "name" : "Duane Powell", "data" : [ [ "Perl 5", @@ -25,6 +93,8 @@ ] }, { + "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -34,9 +104,7 @@ "Perl 6", 2 ] - ], - "name" : "Joelle Maslak", - "id" : "Joelle Maslak" + ] }, { "data" : [ @@ -53,8 +121,8 @@ 1 ] ], - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { "id" : "Roger Bell West", @@ -75,6 +143,8 @@ ] }, { + "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Perl 5", @@ -84,13 +154,11 @@ "Perl 6", 2 ] - ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + ] }, { - "name" : "Steven Wilson", "id" : "Steven Wilson", + "name" : "Steven Wilson", "data" : [ [ "Perl 5", @@ -118,57 +186,23 @@ } ] }, - "series" : [ - { - "data" : [ - { - "name" : "Dave Cross", - "drilldown" : "Dave Cross", - "y" : 1 - }, - { - "name" : "Duane Powell", - "y" : 2, - "drilldown" : "Duane Powell" - }, - { - "name" : "Joelle Maslak", - "drilldown" : "Joelle Maslak", - "y" : 4 - }, - { - "name" : "Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld", - "y" : 5 - }, - { - "name" : "Roger Bell West", - "y" : 4, - "drilldown" : "Roger Bell West" - }, - { - "name" : "Simon Proctor", - "y" : 3, - "drilldown" : "Simon Proctor" - }, - { - "name" : "Steven Wilson", - "drilldown" : "Steven Wilson", - "y" : 1 - }, - { - "drilldown" : "Yet Ebreo", - "y" : 5, - "name" : "Yet Ebreo" - } - ], - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 024" + "yAxis" : { + "title" : { + "text" : "Total Solutions" } - ], + }, "legend" : { "enabled" : 0 }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "[Champions: 9] Last updated at 2019-09-06 10:55:09 GMT" + }, + "xAxis" : { + "type" : "category" + }, "plotOptions" : { "series" : { "borderWidth" : 0, @@ -177,24 +211,5 @@ "format" : "{point.y}" } } - }, - "subtitle" : { - "text" : "[Champions: 8] Last updated at 2019-09-04 20:20:46 GMT" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, - "title" : { - "text" : "Perl Weekly Challenge - 024" - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1, - "headerFormat" : "{series.name}
" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 3353ad6010..5c438f6299 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -2,29 +2,27 @@ "tooltip" : { "pointFormat" : "{point.y:.0f}" }, - "chart" : { - "type" : "column" - }, - "xAxis" : { - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - }, - "type" : "category" + "subtitle" : { + "text" : "Last updated at 2019-09-06 10:55:18 GMT" }, "title" : { "text" : "Perl Weekly Challenge Contributions - 2019" }, - "legend" : { - "enabled" : "false" - }, - "subtitle" : { - "text" : "Last updated at 2019-09-04 20:21:06 GMT" - }, "series" : [ { + "dataLabels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "rotation" : -90, + "color" : "#FFFFFF", + "align" : "right", + "format" : "{point.y:.0f}", + "enabled" : "true", + "y" : 10 + }, + "name" : "Contributions", "data" : [ [ "Blog", @@ -32,28 +30,30 @@ ], [ "Perl 5", - 984 + 986 ], [ "Perl 6", 591 ] - ], - "dataLabels" : { - "enabled" : "true", - "align" : "right", - "y" : 10, - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "rotation" : -90, - "format" : "{point.y:.0f}", - "color" : "#FFFFFF" - }, - "name" : "Contributions" + ] } ], + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + }, "yAxis" : { "min" : 0, "title" : { diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 89ea785fc3..026e3d7766 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,25 +1,26 @@ { - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "chart" : { + "type" : "column" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "tooltip" : { + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "followPointer" : "true" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-09-06 10:55:18 GMT" }, "series" : [ { + "name" : "Perl Weekly Challenge Languages", "data" : [ { - "name" : "#001", + "y" : 132, "drilldown" : "001", - "y" : 132 + "name" : "#001" }, { "y" : 104, @@ -27,64 +28,64 @@ "name" : "#002" }, { - "drilldown" : "003", "y" : 66, + "drilldown" : "003", "name" : "#003" }, { - "y" : 86, + "name" : "#004", "drilldown" : "004", - "name" : "#004" + "y" : 86 }, { - "y" : 66, + "name" : "#005", "drilldown" : "005", - "name" : "#005" + "y" : 66 }, { "name" : "#006", - "y" : 47, - "drilldown" : "006" + "drilldown" : "006", + "y" : 47 }, { - "drilldown" : "007", "y" : 55, - "name" : "#007" + "name" : "#007", + "drilldown" : "007" }, { - "name" : "#008", "y" : 68, + "name" : "#008", "drilldown" : "008" }, { + "y" : 66, "name" : "#009", - "drilldown" : "009", - "y" : 66 + "drilldown" : "009" }, { + "drilldown" : "010", "name" : "#010", - "y" : 59, - "drilldown" : "010" + "y" : 59 }, { - "name" : "#011", "y" : 78, + "name" : "#011", "drilldown" : "011" }, { - "y" : 82, "drilldown" : "012", - "name" : "#012" + "name" : "#012", + "y" : 82 }, { - "drilldown" : "013", "y" : 75, + "drilldown" : "013", "name" : "#013" }, { "y" : 95, - "drilldown" : "014", - "name" : "#014" + "name" : "#014", + "drilldown" : "014" }, { "name" : "#015", @@ -92,66 +93,77 @@ "y" : 93 }, { + "name" : "#016", "drilldown" : "016", - "y" : 66, - "name" : "#016" + "y" : 66 }, { - "drilldown" : "017", "y" : 79, - "name" : "#017" + "name" : "#017", + "drilldown" : "017" }, { - "name" : "#018", "y" : 76, - "drilldown" : "018" + "drilldown" : "018", + "name" : "#018" }, { - "y" : 95, + "name" : "#019", "drilldown" : "019", - "name" : "#019" + "y" : 95 }, { - "drilldown" : "020", "y" : 95, + "drilldown" : "020", "name" : "#020" }, { + "drilldown" : "021", "name" : "#021", - "y" : 66, - "drilldown" : "021" + "y" : 66 }, { - "name" : "#022", "y" : 62, + "name" : "#022", "drilldown" : "022" }, { + "name" : "#023", "drilldown" : "023", - "y" : 88, - "name" : "#023" + "y" : 88 }, { + "name" : "#024", "drilldown" : "024", - "y" : 25, - "name" : "#024" + "y" : 27 } ], - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Languages" + "colorByPoint" : "true" } ], - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-09-04 20:21:06 GMT" - }, "legend" : { "enabled" : "false" }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "xAxis" : { + "type" : "category" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, "drilldown" : { "series" : [ { - "id" : "001", - "name" : "001", "data" : [ [ "Perl 5", @@ -165,9 +177,12 @@ "Blog", 11 ] - ] + ], + "id" : "001", + "name" : "001" }, { + "name" : "002", "data" : [ [ "Perl 5", @@ -182,12 +197,9 @@ 9 ] ], - "id" : "002", - "name" : "002" + "id" : "002" }, { - "id" : "003", - "name" : "003", "data" : [ [ "Perl 5", @@ -201,7 +213,9 @@ "Blog", 8 ] - ] + ], + "id" : "003", + "name" : "003" }, { "data" : [ @@ -222,7 +236,6 @@ "name" : "004" }, { - "id" : "005", "name" : "005", "data" : [ [ @@ -237,10 +250,10 @@ "Blog", 11 ] - ] + ], + "id" : "005" }, { - "id" : "006", "name" : "006", "data" : [ [ @@ -255,10 +268,10 @@ "Blog", 6 ] - ] + ], + "id" : "006" }, { - "name" : "007", "id" : "007", "data" : [ [ @@ -273,10 +286,10 @@ "Blog", 9 ] - ] + ], + "name" : "007" }, { - "id" : "008", "name" : "008", "data" : [ [ @@ -291,11 +304,12 @@ "Blog", 10 ] - ] + ], + "id" : "008" }, { - "id" : "009", "name" : "009", + "id" : "009", "data" : [ [ "Perl 5", @@ -312,7 +326,6 @@ ] }, { - "id" : "010", "name" : "010", "data" : [ [ @@ -327,7 +340,8 @@ "Blog", 10 ] - ] + ], + "id" : "010" }, { "data" : [ @@ -348,7 +362,6 @@ "name" : "011" }, { - "name" : "012", "id" : "012", "data" : [ [ @@ -363,11 +376,10 @@ "Blog", 10 ] - ] + ], + "name" : "012" }, { - "id" : "013", - "name" : "013", "data" : [ [ "Perl 5", @@ -381,10 +393,11 @@ "Blog", 12 ] - ] + ], + "id" : "013", + "name" : "013" }, { - "id" : "014", "name" : "014", "data" : [ [ @@ -399,11 +412,10 @@ "Blog", 14 ] - ] + ], + "id" : "014" }, { - "name" : "015", - "id" : "015", "data" : [ [ "Perl 5", @@ -417,9 +429,12 @@ "Blog", 15 ] - ] + ], + "id" : "015", + "name" : "015" }, { + "id" : "016", "data" : [ [ "Perl 5", @@ -434,10 +449,11 @@ 12 ] ], - "id" : "016", "name" : "016" }, { + "name" : "017", + "id" : "017", "data" : [ [ "Perl 5", @@ -451,11 +467,10 @@ "Blog", 12 ] - ], - "name" : "017", - "id" : "017" + ] }, { + "id" : "018", "data" : [ [ "Perl 5", @@ -470,12 +485,11 @@ 14 ] ], - "id" : "018", "name" : "018" }, { - "id" : "019", "name" : "019", + "id" : "019", "data" : [ [ "Perl 5", @@ -492,6 +506,8 @@ ] }, { + "name" : "020", + "id" : "020", "data" : [ [ "Perl 5", @@ -505,11 +521,10 @@ "Blog", 13 ] - ], - "name" : "020", - "id" : "020" + ] }, { + "id" : "021", "data" : [ [ "Perl 5", @@ -524,10 +539,10 @@ 9 ] ], - "id" : "021", "name" : "021" }, { + "name" : "022", "data" : [ [ "Perl 5", @@ -542,10 +557,11 @@ 9 ] ], - "name" : "022", "id" : "022" }, { + "name" : "023", + "id" : "023", "data" : [ [ "Perl 5", @@ -559,15 +575,14 @@ "Blog", 9 ] - ], - "id" : "023", - "name" : "023" + ] }, { + "name" : "024", "data" : [ [ "Perl 5", - 13 + 15 ], [ "Perl 6", @@ -578,23 +593,8 @@ 3 ] ], - "id" : "024", - "name" : "024" + "id" : "024" } ] - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "xAxis" : { - "type" : "category" - }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "Challenge {point.name}: {point.y:f}
" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index c0cd95e5eb..21f7497f71 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,9 +1,294 @@ { + "legend" : { + "enabled" : "false" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-09-06 10:55:16 GMT" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "", + "followPointer" : "true" + }, + "xAxis" : { + "type" : "category" + }, + "series" : [ + { + "data" : [ + { + "y" : 276, + "drilldown" : "Laurent Rosenfeld", + "name" : "#1: Laurent Rosenfeld" + }, + { + "y" : 256, + "drilldown" : "Joelle Maslak", + "name" : "#2: Joelle Maslak" + }, + { + "name" : "#3: Jaldhar H. Vyas", + "y" : 202, + "drilldown" : "Jaldhar H. Vyas" + }, + { + "drilldown" : "Ruben Westerberg", + "y" : 172, + "name" : "#4: Ruben Westerberg" + }, + { + "y" : 152, + "drilldown" : "Athanasius", + "name" : "#5: Athanasius" + }, + { + "y" : 148, + "drilldown" : "Adam Russell", + "name" : "#6: Adam Russell" + }, + { + "drilldown" : "Arne Sommer", + "y" : 144, + "name" : "#7: Arne Sommer" + }, + { + "name" : "#8: Kian-Meng Ang", + "drilldown" : "Kian-Meng Ang", + "y" : 124 + }, + { + "name" : "#9: E. Choroba", + "y" : 112, + "drilldown" : "E. Choroba" + }, + { + "y" : 104, + "drilldown" : "Simon Proctor", + "name" : "#10: Simon Proctor" + }, + { + "name" : "#11: Andrezgz", + "y" : 92, + "drilldown" : "Andrezgz" + }, + { + "name" : "#12: Francis Whittle", + "drilldown" : "Francis Whittle", + "y" : 92 + }, + { + "name" : "#13: Dave Jacoby", + "y" : 90, + "drilldown" : "Dave Jacoby" + }, + { + "name" : "#14: Duncan C. White", + "y" : 82, + "drilldown" : "Duncan C. White" + }, + { + "y" : 80, + "drilldown" : "Feng Chang", + "name" : "#15: Feng Chang" + }, + { + "name" : "#16: Daniel Mantovani", + "drilldown" : "Daniel Mantovani", + "y" : 78 + }, + { + "name" : "#17: Roger Bell West", + "drilldown" : "Roger Bell West", + "y" : 78 + }, + { + "name" : "#18: Steven Wilson", + "drilldown" : "Steven Wilson", + "y" : 74 + }, + { + "y" : 72, + "drilldown" : "Gustavo Chaves", + "name" : "#19: Gustavo Chaves" + }, + { + "drilldown" : "Yozen Hernandez", + "y" : 70, + "name" : "#20: Yozen Hernandez" + }, + { + "y" : 58, + "drilldown" : "Mark Senn", + "name" : "#21: Mark Senn" + }, + { + "name" : "#22: Guillermo Ramos", + "y" : 56, + "drilldown" : "Guillermo Ramos" + }, + { + "y" : 56, + "drilldown" : "Jo Christian Oterhals", + "name" : "#23: Jo Christian Oterhals" + }, + { + "drilldown" : "Kevin Colyer", + "y" : 46, + "name" : "#24: Kevin Colyer" + }, + { + "name" : "#25: Ozzy", + "y" : 46, + "drilldown" : "Ozzy" + }, + { + "drilldown" : "Yet Ebreo", + "y" : 46, + "name" : "#26: Yet Ebreo" + }, + { + "name" : "#27: Dr James A. Smith", + "y" : 44, + "drilldown" : "Dr James A. Smith" + }, + { + "name" : "#28: Randy Lauen", + "y" : 44, + "drilldown" : "Randy Lauen" + }, + { + "y" : 42, + "drilldown" : "Duane Powell", + "name" : "#29: Duane Powell" + }, + { + "y" : 42, + "drilldown" : "Veesh Goldman", + "name" : "#30: Veesh Goldman" + }, + { + "drilldown" : "Lubos Kolouch", + "y" : 38, + "name" : "#31: Lubos Kolouch" + }, + { + "name" : "#32: Noud", + "y" : 36, + "drilldown" : "Noud" + }, + { + "drilldown" : "Nick Logan", + "y" : 32, + "name" : "#33: Nick Logan" + }, + { + "name" : "#34: Lars Balker", + "drilldown" : "Lars Balker", + "y" : 28 + }, + { + "name" : "#35: Jaime Corchado", + "y" : 24, + "drilldown" : "Jaime Corchado" + }, + { + "name" : "#36: Maxim Nechaev", + "drilldown" : "Maxim Nechaev", + "y" : 24 + }, + { + "name" : "#37: Alicia Bielsa", + "y" : 22, + "drilldown" : "Alicia Bielsa" + }, + { + "name" : "#38: Doug Schrag", + "drilldown" : "Doug Schrag", + "y" : 20 + }, + { + "drilldown" : "Dave Cross", + "y" : 18, + "name" : "#39: Dave Cross" + }, + { + "name" : "#40: Neil Bowers", + "y" : 18, + "drilldown" : "Neil Bowers" + }, + { + "y" : 18, + "drilldown" : "Walt Mankowski", + "name" : "#41: Walt Mankowski" + }, + { + "drilldown" : "Mark Anderson", + "y" : 16, + "name" : "#42: Mark Anderson" + }, + { + "name" : "#43: Pete Houston", + "y" : 16, + "drilldown" : "Pete Houston" + }, + { + "name" : "#44: Robert Gratza", + "y" : 16, + "drilldown" : "Robert Gratza" + }, + { + "y" : 14, + "drilldown" : "John Barrett", + "name" : "#45: John Barrett" + }, + { + "drilldown" : "Khalid", + "y" : 14, + "name" : "#46: Khalid" + }, + { + "y" : 12, + "drilldown" : "Aaron Sherman", + "name" : "#47: Aaron Sherman" + }, + { + "drilldown" : "Donald Hunter", + "y" : 12, + "name" : "#48: Donald Hunter" + }, + { + "y" : 12, + "drilldown" : "Kivanc Yazan", + "name" : "#49: Kivanc Yazan" + }, + { + "name" : "#50: Maxim Kolodyazhny", + "drilldown" : "Maxim Kolodyazhny", + "y" : 12 + } + ], + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Leaders" + } + ], + "chart" : { + "type" : "column" + }, "drilldown" : { "series" : [ { - "id" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 6", @@ -17,14 +302,15 @@ "Blog", 43 ] - ] + ], + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { "id" : "Joelle Maslak", - "name" : "Joelle Maslak", "data" : [ [ - "Perl 6", + "Perl 5", 62 ], [ @@ -32,12 +318,14 @@ 4 ], [ - "Perl 5", + "Perl 6", 62 ] - ] + ], + "name" : "Joelle Maslak" }, { + "id" : "Jaldhar H. Vyas", "data" : [ [ "Perl 6", @@ -52,17 +340,16 @@ 10 ] ], - "id" : "Jaldhar H. Vyas", "name" : "Jaldhar H. Vyas" }, { "data" : [ [ - "Perl 5", + "Perl 6", 43 ], [ - "Perl 6", + "Perl 5", 43 ] ], @@ -70,6 +357,7 @@ "id" : "Ruben Westerberg" }, { + "name" : "Athanasius", "data" : [ [ "Blog", @@ -84,43 +372,42 @@ 24 ] ], - "name" : "Athanasius", "id" : "Athanasius" }, { - "name" : "Adam Russell", "id" : "Adam Russell", "data" : [ [ "Perl 6", 3 ], - [ - "Blog", - 24 - ], [ "Perl 5", 47 + ], + [ + "Blog", + 24 ] - ] + ], + "name" : "Adam Russell" }, { + "name" : "Arne Sommer", "data" : [ [ - "Perl 6", - 46 + "Perl 5", + 3 ], [ "Blog", 23 ], [ - "Perl 5", - 3 + "Perl 6", + 46 ] ], - "name" : "Arne Sommer", "id" : "Arne Sommer" }, { @@ -134,12 +421,10 @@ 37 ] ], - "id" : "Kian-Meng Ang", - "name" : "Kian-Meng Ang" + "name" : "Kian-Meng Ang", + "id" : "Kian-Meng Ang" }, { - "id" : "E. Choroba", - "name" : "E. Choroba", "data" : [ [ "Blog", @@ -149,7 +434,9 @@ "Perl 5", 38 ] - ] + ], + "name" : "E. Choroba", + "id" : "E. Choroba" }, { "data" : [ @@ -157,19 +444,30 @@ "Perl 6", 40 ], + [ + "Blog", + 7 + ], [ "Perl 5", 5 - ], + ] + ], + "name" : "Simon Proctor", + "id" : "Simon Proctor" + }, + { + "id" : "Andrezgz", + "data" : [ [ - "Blog", - 7 + "Perl 5", + 46 ] ], - "id" : "Simon Proctor", - "name" : "Simon Proctor" + "name" : "Andrezgz" }, { + "id" : "Francis Whittle", "data" : [ [ "Perl 6", @@ -180,34 +478,33 @@ 9 ] ], - "id" : "Francis Whittle", "name" : "Francis Whittle" }, { "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ - [ - "Perl 5", - 26 - ], [ "Blog", 18 ], + [ + "Perl 5", + 26 + ], [ "Perl 6", 1 ] - ] + ], + "id" : "Dave Jacoby" }, { - "name" : "Andrezgz", - "id" : "Andrezgz", + "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ [ "Perl 5", - 44 + 41 ] ] }, @@ -215,29 +512,19 @@ "data" : [ [ "Perl 5", - 41 - ] - ], - "name" : "Duncan C. White", - "id" : "Duncan C. White" - }, - { - "name" : "Feng Chang", - "id" : "Feng Chang", - "data" : [ + 19 + ], [ "Perl 6", 21 - ], - [ - "Perl 5", - 19 ] - ] + ], + "name" : "Feng Chang", + "id" : "Feng Chang" }, { - "name" : "Daniel Mantovani", "id" : "Daniel Mantovani", + "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", @@ -246,9 +533,12 @@ ] }, { - "name" : "Roger Bell West", "id" : "Roger Bell West", "data" : [ + [ + "Perl 6", + 9 + ], [ "Blog", 8 @@ -256,43 +546,39 @@ [ "Perl 5", 22 - ], - [ - "Perl 6", - 9 ] - ] + ], + "name" : "Roger Bell West" }, { "name" : "Steven Wilson", - "id" : "Steven Wilson", "data" : [ - [ - "Perl 5", - 34 - ], [ "Blog", 3 + ], + [ + "Perl 5", + 34 ] - ] + ], + "id" : "Steven Wilson" }, { + "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 5", 32 + ], + [ + "Blog", + 4 ] - ], - "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + ] }, { - "name" : "Yozen Hernandez", "id" : "Yozen Hernandez", "data" : [ [ @@ -303,36 +589,39 @@ "Perl 5", 21 ] - ] + ], + "name" : "Yozen Hernandez" }, { + "id" : "Mark Senn", "data" : [ - [ - "Perl 6", - 19 - ], [ "Blog", 10 + ], + [ + "Perl 6", + 19 ] ], - "name" : "Mark Senn", - "id" : "Mark Senn" + "name" : "Mark Senn" }, { + "id" : "Guillermo Ramos", "data" : [ [ "Perl 5", 28 ] ], - "id" : "Guillermo Ramos", "name" : "Guillermo Ramos" }, { - "name" : "Jo Christian Oterhals", - "id" : "Jo Christian Oterhals", "data" : [ + [ + "Perl 6", + 15 + ], [ "Perl 5", 6 @@ -340,56 +629,55 @@ [ "Blog", 7 - ], - [ - "Perl 6", - 15 ] - ] + ], + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals" }, { - "id" : "Kevin Colyer", - "name" : "Kevin Colyer", "data" : [ - [ - "Perl 6", - 21 - ], [ "Perl 5", 2 + ], + [ + "Perl 6", + 21 ] - ] + ], + "name" : "Kevin Colyer", + "id" : "Kevin Colyer" }, { - "name" : "Ozzy", - "id" : "Ozzy", "data" : [ [ "Perl 6", 23 ] - ] + ], + "name" : "Ozzy", + "id" : "Ozzy" }, { - "name" : "Yet Ebreo", - "id" : "Yet Ebreo", "data" : [ [ - "Perl 6", - 9 + "Perl 5", + 11 ], [ "Blog", 3 ], [ - "Perl 5", - 11 + "Perl 6", + 9 ] - ] + ], + "name" : "Yet Ebreo", + "id" : "Yet Ebreo" }, { + "id" : "Dr James A. Smith", "data" : [ [ "Perl 6", @@ -400,10 +688,10 @@ 12 ] ], - "id" : "Dr James A. Smith", "name" : "Dr James A. Smith" }, { + "id" : "Randy Lauen", "data" : [ [ "Perl 5", @@ -414,70 +702,69 @@ 15 ] ], - "name" : "Randy Lauen", - "id" : "Randy Lauen" + "name" : "Randy Lauen" }, { + "id" : "Duane Powell", + "name" : "Duane Powell", "data" : [ [ "Perl 5", 21 ] - ], - "id" : "Duane Powell", - "name" : "Duane Powell" + ] }, { + "name" : "Veesh Goldman", "data" : [ [ "Perl 6", 2 ], - [ - "Perl 5", - 16 - ], [ "Blog", 3 + ], + [ + "Perl 5", + 16 ] ], - "name" : "Veesh Goldman", "id" : "Veesh Goldman" }, { + "id" : "Lubos Kolouch", "data" : [ [ "Perl 5", 19 ] ], - "id" : "Lubos Kolouch", "name" : "Lubos Kolouch" }, { "name" : "Noud", - "id" : "Noud", "data" : [ [ "Perl 6", 18 ] - ] + ], + "id" : "Noud" }, { "data" : [ [ - "Perl 5", + "Perl 6", 8 ], [ - "Perl 6", + "Perl 5", 8 ] ], - "id" : "Nick Logan", - "name" : "Nick Logan" + "name" : "Nick Logan", + "id" : "Nick Logan" }, { "data" : [ @@ -490,8 +777,8 @@ 4 ] ], - "id" : "Lars Balker", - "name" : "Lars Balker" + "name" : "Lars Balker", + "id" : "Lars Balker" }, { "data" : [ @@ -500,8 +787,8 @@ 12 ] ], - "id" : "Jaime Corchado", - "name" : "Jaime Corchado" + "name" : "Jaime Corchado", + "id" : "Jaime Corchado" }, { "data" : [ @@ -514,18 +801,18 @@ "id" : "Maxim Nechaev" }, { - "name" : "Alicia Bielsa", "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] - ] + ], + "name" : "Alicia Bielsa" }, { - "name" : "Doug Schrag", "id" : "Doug Schrag", + "name" : "Doug Schrag", "data" : [ [ "Perl 6", @@ -534,18 +821,18 @@ ] }, { + "id" : "Dave Cross", + "name" : "Dave Cross", "data" : [ - [ - "Perl 5", - 7 - ], [ "Blog", 2 + ], + [ + "Perl 5", + 7 ] - ], - "name" : "Dave Cross", - "id" : "Dave Cross" + ] }, { "data" : [ @@ -558,18 +845,18 @@ 6 ] ], - "id" : "Neil Bowers", - "name" : "Neil Bowers" + "name" : "Neil Bowers", + "id" : "Neil Bowers" }, { - "id" : "Walt Mankowski", "name" : "Walt Mankowski", "data" : [ [ "Perl 5", 9 ] - ] + ], + "id" : "Walt Mankowski" }, { "id" : "Mark Anderson", @@ -588,64 +875,63 @@ 8 ] ], - "id" : "Pete Houston", - "name" : "Pete Houston" + "name" : "Pete Houston", + "id" : "Pete Houston" }, { + "id" : "Robert Gratza", "data" : [ - [ - "Perl 5", - 2 - ], [ "Perl 6", 6 + ], + [ + "Perl 5", + 2 ] ], - "name" : "Robert Gratza", - "id" : "Robert Gratza" + "name" : "Robert Gratza" }, { + "id" : "John Barrett", + "name" : "John Barrett", "data" : [ [ "Perl 5", 7 ] - ], - "name" : "John Barrett", - "id" : "John Barrett" + ] }, { "data" : [ [ - "Blog", - 1 + "Perl 6", + 2 ], [ "Perl 5", 4 ], [ - "Perl 6", - 2 + "Blog", + 1 ] ], "name" : "Khalid", "id" : "Khalid" }, { + "name" : "Aaron Sherman", "data" : [ [ "Perl 6", 6 ] ], - "name" : "Aaron Sherman", "id" : "Aaron Sherman" }, { "name" : "Donald Hunter", - "id" : "Donald Hunter", "data" : [ [ "Blog", @@ -655,17 +941,18 @@ "Perl 6", 3 ] - ] + ], + "id" : "Donald Hunter" }, { "name" : "Kivanc Yazan", - "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] - ] + ], + "id" : "Kivanc Yazan" }, { "data" : [ @@ -683,292 +970,5 @@ "title" : { "text" : "Total Score" } - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-09-04 20:21:02 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, - "xAxis" : { - "type" : "category" - }, - "series" : [ - { - "data" : [ - { - "name" : "#1: Laurent Rosenfeld", - "y" : 276, - "drilldown" : "Laurent Rosenfeld" - }, - { - "drilldown" : "Joelle Maslak", - "name" : "#2: Joelle Maslak", - "y" : 256 - }, - { - "drilldown" : "Jaldhar H. Vyas", - "y" : 202, - "name" : "#3: Jaldhar H. Vyas" - }, - { - "y" : 172, - "name" : "#4: Ruben Westerberg", - "drilldown" : "Ruben Westerberg" - }, - { - "name" : "#5: Athanasius", - "y" : 152, - "drilldown" : "Athanasius" - }, - { - "y" : 148, - "name" : "#6: Adam Russell", - "drilldown" : "Adam Russell" - }, - { - "drilldown" : "Arne Sommer", - "name" : "#7: Arne Sommer", - "y" : 144 - }, - { - "drilldown" : "Kian-Meng Ang", - "name" : "#8: Kian-Meng Ang", - "y" : 124 - }, - { - "drilldown" : "E. Choroba", - "y" : 112, - "name" : "#9: E. Choroba" - }, - { - "drilldown" : "Simon Proctor", - "name" : "#10: Simon Proctor", - "y" : 104 - }, - { - "y" : 92, - "name" : "#11: Francis Whittle", - "drilldown" : "Francis Whittle" - }, - { - "name" : "#12: Dave Jacoby", - "y" : 90, - "drilldown" : "Dave Jacoby" - }, - { - "drilldown" : "Andrezgz", - "y" : 88, - "name" : "#13: Andrezgz" - }, - { - "drilldown" : "Duncan C. White", - "name" : "#14: Duncan C. White", - "y" : 82 - }, - { - "drilldown" : "Feng Chang", - "y" : 80, - "name" : "#15: Feng Chang" - }, - { - "y" : 78, - "name" : "#16: Daniel Mantovani", - "drilldown" : "Daniel Mantovani" - }, - { - "y" : 78, - "name" : "#17: Roger Bell West", - "drilldown" : "Roger Bell West" - }, - { - "name" : "#18: Steven Wilson", - "y" : 74, -