diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2020-02-16 17:14:08 +0000 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2020-02-16 17:14:08 +0000 |
| commit | e3de3d53b36b89161748a55b31f173b0b3e63f51 (patch) | |
| tree | 2791286ae4c911b02232d813d542572751d6b364 | |
| parent | d465e98f90beccde1c0fb2b81c283c778997d437 (diff) | |
| download | perlweeklychallenge-club-e3de3d53b36b89161748a55b31f173b0b3e63f51.tar.gz perlweeklychallenge-club-e3de3d53b36b89161748a55b31f173b0b3e63f51.tar.bz2 perlweeklychallenge-club-e3de3d53b36b89161748a55b31f173b0b3e63f51.zip | |
- Added solutions by Jaldhar H. Vyas.
| -rw-r--r-- | challenge-044/jaldhar-h-vyas/c++/ch-2.cpp (renamed from challenge-044/jaldhar-h-vyas/c++/ch-2.cc) | 0 | ||||
| -rwxr-xr-x | challenge-044/jaldhar-h-vyas/raku/ch-2.p6 | 40 | ||||
| -rwxr-xr-x | challenge-044/jaldhar-h-vyas/raku/ch-2a.p6 | 44 | ||||
| -rwxr-xr-x | challenge-044/jaldhar-h-vyas/raku/ch-2b.p6 | 18 | ||||
| -rw-r--r-- | stats/pwc-challenge-044.json | 489 | ||||
| -rw-r--r-- | stats/pwc-current.json | 364 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 66 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 732 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 444 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 44 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 92 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 106 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 126 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 102 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 32 |
15 files changed, 1361 insertions, 1338 deletions
diff --git a/challenge-044/jaldhar-h-vyas/c++/ch-2.cc b/challenge-044/jaldhar-h-vyas/c++/ch-2.cpp index ed93f58677..ed93f58677 100644 --- a/challenge-044/jaldhar-h-vyas/c++/ch-2.cc +++ b/challenge-044/jaldhar-h-vyas/c++/ch-2.cpp diff --git a/challenge-044/jaldhar-h-vyas/raku/ch-2.p6 b/challenge-044/jaldhar-h-vyas/raku/ch-2.p6 new file mode 100755 index 0000000000..501ffe20f1 --- /dev/null +++ b/challenge-044/jaldhar-h-vyas/raku/ch-2.p6 @@ -0,0 +1,40 @@ +#!/usr/bin/perl6 + +class Node { + has Node $.parent; + has Node $.left is rw; + has Node $.right is rw; + has Str $.label; + has Int $.amount; +} + +sub traverse(Node $node, @bestBranch, $maxDepth is rw, $depth) { + if $depth < $maxDepth && $node.amount < 200 { + $node.left = Node.new(parent => $node, amount => $node.amount * 2, + label => 'double'); + $node.right = Node.new(parent => $node, amount => $node.amount + 1, + label => 'add one'); + traverse($node.left(), @bestBranch, $maxDepth, $depth + 1); + traverse($node.right(), @bestBranch, $maxDepth, $depth + 1); + + } elsif $node.amount == 200 && $depth < $maxDepth { + $maxDepth = $depth; + my @branch; + my $current = $node; + + while ($current.parent()) { + @branch.unshift($current.label()); + $current = $current.parent(); + } + @bestBranch = @branch; + } +} + +multi sub MAIN { + my @results; + my $root = Node.new(parent => Nil, label => q{}, amount => 1); + my $maxDepth = ∞; + traverse($root, @results, $maxDepth, 0); + + @results.join(', ').say; +}
\ No newline at end of file diff --git a/challenge-044/jaldhar-h-vyas/raku/ch-2a.p6 b/challenge-044/jaldhar-h-vyas/raku/ch-2a.p6 index 501ffe20f1..cd7d319cc5 100755 --- a/challenge-044/jaldhar-h-vyas/raku/ch-2a.p6 +++ b/challenge-044/jaldhar-h-vyas/raku/ch-2a.p6 @@ -1,40 +1,18 @@ #!/usr/bin/perl6 -class Node { - has Node $.parent; - has Node $.left is rw; - has Node $.right is rw; - has Str $.label; - has Int $.amount; -} - -sub traverse(Node $node, @bestBranch, $maxDepth is rw, $depth) { - if $depth < $maxDepth && $node.amount < 200 { - $node.left = Node.new(parent => $node, amount => $node.amount * 2, - label => 'double'); - $node.right = Node.new(parent => $node, amount => $node.amount + 1, - label => 'add one'); - traverse($node.left(), @bestBranch, $maxDepth, $depth + 1); - traverse($node.right(), @bestBranch, $maxDepth, $depth + 1); - - } elsif $node.amount == 200 && $depth < $maxDepth { - $maxDepth = $depth; - my @branch; - my $current = $node; +multi sub MAIN { + my @result; + my $n = 200; - while ($current.parent()) { - @branch.unshift($current.label()); - $current = $current.parent(); + while ($n != 1) { + if ($n %% 2) { + @result.unshift('double'); + $n /= 2; + } else { + @result.unshift('add one'); + $n--; } - @bestBranch = @branch; } -} - -multi sub MAIN { - my @results; - my $root = Node.new(parent => Nil, label => q{}, amount => 1); - my $maxDepth = ∞; - traverse($root, @results, $maxDepth, 0); - @results.join(', ').say; + @result.join(q{, }).say; }
\ No newline at end of file diff --git a/challenge-044/jaldhar-h-vyas/raku/ch-2b.p6 b/challenge-044/jaldhar-h-vyas/raku/ch-2b.p6 deleted file mode 100755 index cd7d319cc5..0000000000 --- a/challenge-044/jaldhar-h-vyas/raku/ch-2b.p6 +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl6 - -multi sub MAIN { - my @result; - my $n = 200; - - while ($n != 1) { - if ($n %% 2) { - @result.unshift('double'); - $n /= 2; - } else { - @result.unshift('add one'); - $n--; - } - } - - @result.join(q{, }).say; -}
\ No newline at end of file diff --git a/stats/pwc-challenge-044.json b/stats/pwc-challenge-044.json index aabada0817..17051b595c 100644 --- a/stats/pwc-challenge-044.json +++ b/stats/pwc-challenge-044.json @@ -1,176 +1,32 @@ { - "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 + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2020-02-16 17:11:54 GMT" }, - "series" : [ - { - "name" : "Perl Weekly Challenge - 044", - "data" : [ - { - "y" : 4, - "name" : "Adam Russell", - "drilldown" : "Adam Russell" - }, - { - "drilldown" : "Alicia Bielsa", - "name" : "Alicia Bielsa", - "y" : 2 - }, - { - "drilldown" : "Andrezgz", - "name" : "Andrezgz", - "y" : 2 - }, - { - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer", - "y" : 3 - }, - { - "y" : 2, - "name" : "Cheok-Yin Fung", - "drilldown" : "Cheok-Yin Fung" - }, - { - "drilldown" : "Colin Crain", - "y" : 4, - "name" : "Colin Crain" - }, - { - "y" : 1, - "name" : "Cristina Heredia", - "drilldown" : "Cristina Heredia" - }, - { - "y" : 2, - "name" : "Daniel Mantovani", - "drilldown" : "Daniel Mantovani" - }, - { - "drilldown" : "Darren Bottin", - "y" : 1, - "name" : "Darren Bottin" - }, - { - "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby", - "y" : 2 - }, - { - "y" : 2, - "name" : "Duane Powell", - "drilldown" : "Duane Powell" - }, - { - "drilldown" : "Duncan C. White", - "y" : 2, - "name" : "Duncan C. White" - }, - { - "drilldown" : "E. Choroba", - "y" : 3, - "name" : "E. Choroba" - }, - { - "y" : 2, - "name" : "Fabrizio Poggi", - "drilldown" : "Fabrizio Poggi" - }, - { - "name" : "Jan Ole Kraft", - "y" : 2, - "drilldown" : "Jan Ole Kraft" - }, - { - "drilldown" : "Javier Luque", - "y" : 5, - "name" : "Javier Luque" - }, - { - "y" : 2, - "name" : "Kevin Colyer", - "drilldown" : "Kevin Colyer" - }, - { - "name" : "Laurent Rosenfeld", - "y" : 5, - "drilldown" : "Laurent Rosenfeld" - }, - { - "name" : "Luca Ferrari", - "y" : 2, - "drilldown" : "Luca Ferrari" - }, - { - "drilldown" : "Markus Holzer", - "name" : "Markus Holzer", - "y" : 2 - }, - { - "y" : 2, - "name" : "Noud Aldenhoven", - "drilldown" : "Noud Aldenhoven" - }, - { - "drilldown" : "Peter Scott", - "name" : "Peter Scott", - "y" : 1 - }, - { - "drilldown" : "Roger Bell West", - "y" : 5, - "name" : "Roger Bell West" - }, - { - "drilldown" : "Ruben Westerberg", - "y" : 4, - "name" : "Ruben Westerberg" - }, - { - "drilldown" : "Ryan Thompson", - "y" : 6, - "name" : "Ryan Thompson" - }, - { - "y" : 2, - "name" : "Saif Ahmed", - "drilldown" : "Saif Ahmed" - }, - { - "drilldown" : "Simon Proctor", - "y" : 2, - "name" : "Simon Proctor" - }, - { - "drilldown" : "Ulrich Rieke", - "y" : 2, - "name" : "Ulrich Rieke" - }, - { - "drilldown" : "Wanderdoc", - "name" : "Wanderdoc", - "y" : 2 - } - ], - "colorByPoint" : 1 - } - ], - "legend" : { - "enabled" : 0 + "chart" : { + "type" : "column" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } }, - "chart" : { - "type" : "column" + "tooltip" : { + "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>", + "followPointer" : 1, + "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>" + }, + "title" : { + "text" : "Perl Weekly Challenge - 044" }, "drilldown" : { "series" : [ { + "name" : "Adam Russell", + "id" : "Adam Russell", "data" : [ [ "Perl", @@ -180,9 +36,7 @@ "Blog", 2 ] - ], - "name" : "Adam Russell", - "id" : "Adam Russell" + ] }, { "id" : "Alicia Bielsa", @@ -195,18 +49,18 @@ ] }, { - "id" : "Andrezgz", - "name" : "Andrezgz", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Andrezgz", + "name" : "Andrezgz" }, { - "id" : "Arne Sommer", "name" : "Arne Sommer", + "id" : "Arne Sommer", "data" : [ [ "Raku", @@ -220,15 +74,17 @@ }, { "id" : "Cheok-Yin Fung", + "name" : "Cheok-Yin Fung", "data" : [ [ "Perl", 2 ] - ], - "name" : "Cheok-Yin Fung" + ] }, { + "id" : "Colin Crain", + "name" : "Colin Crain", "data" : [ [ "Perl", @@ -238,39 +94,37 @@ "Raku", 2 ] - ], - "name" : "Colin Crain", - "id" : "Colin Crain" + ] }, { - "id" : "Cristina Heredia", - "name" : "Cristina Heredia", "data" : [ [ "Perl", 1 ] - ] + ], + "name" : "Cristina Heredia", + "id" : "Cristina Heredia" }, { - "id" : "Daniel Mantovani", - "name" : "Daniel Mantovani", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani" }, { + "name" : "Darren Bottin", "id" : "Darren Bottin", "data" : [ [ "Perl", 1 ] - ], - "name" : "Darren Bottin" + ] }, { "data" : [ @@ -283,28 +137,26 @@ "id" : "Dave Jacoby" }, { - "id" : "Duane Powell", - "name" : "Duane Powell", "data" : [ [ "Perl", 2 ] - ] + ], + "name" : "Duane Powell", + "id" : "Duane Powell" }, { "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ [ "Perl", 2 ] - ], - "name" : "Duncan C. White" + ] }, { - "id" : "E. Choroba", - "name" : "E. Choroba", "data" : [ [ "Perl", @@ -314,30 +166,49 @@ "Blog", 1 ] - ] + ], + "id" : "E. Choroba", + "name" : "E. Choroba" }, { "name" : "Fabrizio Poggi", + "id" : "Fabrizio Poggi", "data" : [ [ "Perl", 2 ] - ], - "id" : "Fabrizio Poggi" + ] + }, + { + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ] }, { - "name" : "Jan Ole Kraft", "data" : [ [ "Raku", 2 ] ], - "id" : "Jan Ole Kraft" + "id" : "Jan Ole Kraft", + "name" : "Jan Ole Kraft" }, { - "name" : "Javier Luque", "data" : [ [ "Perl", @@ -352,19 +223,21 @@ 1 ] ], + "name" : "Javier Luque", "id" : "Javier Luque" }, { + "id" : "Kevin Colyer", "name" : "Kevin Colyer", "data" : [ [ "Raku", 2 ] - ], - "id" : "Kevin Colyer" + ] }, { + "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld", "data" : [ [ @@ -379,12 +252,11 @@ "Blog", 1 ] - ], - "name" : "Laurent Rosenfeld" + ] }, { - "id" : "Luca Ferrari", "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -393,24 +265,24 @@ ] }, { - "name" : "Markus Holzer", "data" : [ [ "Raku", 2 ] ], + "name" : "Markus Holzer", "id" : "Markus Holzer" }, { - "id" : "Noud Aldenhoven", - "name" : "Noud Aldenhoven", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Noud Aldenhoven", + "id" : "Noud Aldenhoven" }, { "data" : [ @@ -423,7 +295,6 @@ "id" : "Peter Scott" }, { - "id" : "Roger Bell West", "data" : [ [ "Perl", @@ -438,7 +309,8 @@ 1 ] ], - "name" : "Roger Bell West" + "name" : "Roger Bell West", + "id" : "Roger Bell West" }, { "data" : [ @@ -456,6 +328,7 @@ }, { "id" : "Ryan Thompson", + "name" : "Ryan Thompson", "data" : [ [ "Perl", @@ -469,8 +342,7 @@ "Blog", 2 ] - ], - "name" : "Ryan Thompson" + ] }, { "data" : [ @@ -479,57 +351,208 @@ 2 ] ], - "name" : "Saif Ahmed", - "id" : "Saif Ahmed" + "id" : "Saif Ahmed", + "name" : "Saif Ahmed" }, { + "id" : "Simon Proctor", "name" : "Simon Proctor", "data" : [ [ "Raku", 2 ] - ], - "id" : "Simon Proctor" + ] }, { + "id" : "Ulrich Rieke", "name" : "Ulrich Rieke", "data" : [ [ "Raku", 2 ] - ], - "id" : "Ulrich Rieke" + ] }, { - "id" : "Wanderdoc", - "name" : "Wanderdoc", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Wanderdoc", + "name" : "Wanderdoc" } ] }, - "xAxis" : { - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge - 044" + "legend" : { + "enabled" : 0 }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "yAxis" : { + "title" : { + "text" : "Total Solutions" } }, - "subtitle" : { - "text" : "[Champions: 29] Last updated at 2020-02-13 14:06:08 GMT" + "series" : [ + { + "data" : [ + { + "name" : "Adam Russell", + "drilldown" : "Adam Russell", + "y" : 4 + }, + { + "name" : "Alicia Bielsa", + "drilldown" : "Alicia Bielsa", + "y" : 2 + }, + { + "drilldown" : "Andrezgz", + "name" : "Andrezgz", + "y" : 2 + }, + { + "y" : 3, + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer" + }, + { + "y" : 2, + "drilldown" : "Cheok-Yin Fung", + "name" : "Cheok-Yin Fung" + }, + { + "drilldown" : "Colin Crain", + "name" : "Colin Crain", + "y" : 4 + }, + { + "y" : 1, + "drilldown" : "Cristina Heredia", + "name" : "Cristina Heredia" + }, + { + "y" : 2, + "drilldown" : "Daniel Mantovani", + "name" : "Daniel Mantovani" + }, + { + "name" : "Darren Bottin", + "drilldown" : "Darren Bottin", + "y" : 1 + }, + { + "y" : 2, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "name" : "Duane Powell", + "drilldown" : "Duane Powell", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Duncan C. White", + "name" : "Duncan C. White" + }, + { + "name" : "E. Choroba", + "drilldown" : "E. Choroba", + "y" : 3 + }, + { + "y" : 2, + "drilldown" : "Fabrizio Poggi", + "name" : "Fabrizio Poggi" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", + "y" : 5 + }, + { + "drilldown" : "Jan Ole Kraft", + "name" : "Jan Ole Kraft", + "y" : 2 + }, + { + "name" : "Javier Luque", + "drilldown" : "Javier Luque", + "y" : 5 + }, + { + "y" : 2, + "drilldown" : "Kevin Colyer", + "name" : "Kevin Colyer" + }, + { + "y" : 5, + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" + }, + { + "y" : 2, + "name" : "Luca Ferrari", + "drilldown" : "Luca Ferrari" + }, + { + "name" : "Markus Holzer", + "drilldown" : "Markus Holzer", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Noud Aldenhoven", + "name" : "Noud Aldenhoven" + }, + { + "y" : 1, + "name" : "Peter Scott", + "drilldown" : "Peter Scott" + }, + { + "y" : 5, + "drilldown" : "Roger Bell West", + "name" : "Roger Bell West" + }, + { + "drilldown" : "Ruben Westerberg", + "name" : "Ruben Westerberg", + "y" : 4 + }, + { + "name" : "Ryan Thompson", + "drilldown" : "Ryan Thompson", + "y" : 6 + }, + { + "y" : 2, + "drilldown" : "Saif Ahmed", + "name" : "Saif Ahmed" + }, + { + "y" : 2, + "name" : "Simon Proctor", + "drilldown" : "Simon Proctor" + }, + { + "y" : 2, + "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke" + }, + { + "y" : 2, + "drilldown" : "Wanderdoc", + "name" : "Wanderdoc" + } + ], + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 044" + } + ], + "xAxis" : { + "type" : "category" } } diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 888f6a4e99..a25ab22abc 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,18 +1,144 @@ { - "chart" : { - "type" : "column" + "xAxis" : { + "type" : "category" + }, + "series" : [ + { + "data" : [ + { + "drilldown" : "Andrezgz", + "name" : "Andrezgz", + "y" : 2 + }, + { + "y" : 3, + "drilldown" : "Arne Sommer", + "name" : "Arne Sommer" + }, + { + "drilldown" : "Dave Cross", + "name" : "Dave Cross", + "y" : 2 + }, + { + "name" : "Dave Jacoby", + "drilldown" : "Dave Jacoby", + "y" : 3 + }, + { + "y" : 2, + "name" : "Duane Powell", + "drilldown" : "Duane Powell" + }, + { + "y" : 2, + "drilldown" : "Duncan C. White", + "name" : "Duncan C. White" + }, + { + "name" : "E. Choroba", + "drilldown" : "E. Choroba", + "y" : 2 + }, + { + "name" : "Javier Luque", + "drilldown" : "Javier Luque", + "y" : 5 + }, + { + "y" : 2, + "drilldown" : "Kevin Colyer", + "name" : "Kevin Colyer" + }, + { + "name" : "Lubos Kolouch", + "drilldown" : "Lubos Kolouch", + "y" : 2 + }, + { + "drilldown" : "Luca Ferrari", + "name" : "Luca Ferrari", + "y" : 4 + }, + { + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Markus Holzer", + "name" : "Markus Holzer" + }, + { + "y" : 1, + "drilldown" : "Mohammad S Anwar", + "name" : "Mohammad S Anwar" + }, + { + "name" : "Noud Aldenhoven", + "drilldown" : "Noud Aldenhoven", + "y" : 2 + }, + { + "name" : "Phillip Harris", + "drilldown" : "Phillip Harris", + "y" : 2 + }, + { + "y" : 4, + "name" : "Ruben Westerberg", + "drilldown" : "Ruben Westerberg" + }, + { + "drilldown" : "Saif Ahmed", + "name" : "Saif Ahmed", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + }, + { + "name" : "Steven Wilson", + "drilldown" : "Steven Wilson", + "y" : 1 + }, + { + "y" : 2, + "drilldown" : "User Person", + "name" : "User Person" + }, + { + "y" : 2, + "drilldown" : "Wanderdoc", + "name" : "Wanderdoc" + } + ], + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 047" + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "legend" : { + "enabled" : 0 }, "drilldown" : { "series" : [ { + "name" : "Andrezgz", + "id" : "Andrezgz", "data" : [ [ "Perl", 2 ] - ], - "id" : "Andrezgz", - "name" : "Andrezgz" + ] }, { "data" : [ @@ -25,18 +151,18 @@ 1 ] ], - "name" : "Arne Sommer", - "id" : "Arne Sommer" + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { + "id" : "Dave Cross", + "name" : "Dave Cross", "data" : [ [ "Perl", 2 ] - ], - "id" : "Dave Cross", - "name" : "Dave Cross" + ] }, { "data" : [ @@ -63,26 +189,28 @@ "id" : "Duane Powell" }, { + "name" : "Duncan C. White", + "id" : "Duncan C. White", "data" : [ [ "Perl", 2 ] - ], - "name" : "Duncan C. White", - "id" : "Duncan C. White" + ] }, { "name" : "E. Choroba", + "id |
