diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2019-06-24 23:42:07 +0100 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2019-06-24 23:42:07 +0100 |
| commit | 01e8bb278733db509dcf2a5f9619a2494691928e (patch) | |
| tree | 9825b324b0496d62ca035e29cc00d6814b396e6a | |
| parent | 67723564f84c280224be2f3fb9831beece5c9d73 (diff) | |
| download | perlweeklychallenge-club-01e8bb278733db509dcf2a5f9619a2494691928e.tar.gz perlweeklychallenge-club-01e8bb278733db509dcf2a5f9619a2494691928e.tar.bz2 perlweeklychallenge-club-01e8bb278733db509dcf2a5f9619a2494691928e.zip | |
- Added solutions by Kevin Colyer.
| -rw-r--r-- | challenge-014/kevin-colyer/perl6/ch-1.p6 | 33 | ||||
| -rw-r--r-- | challenge-014/kevin-colyer/perl6/ch-2.p6 | 28 | ||||
| -rw-r--r-- | stats/pwc-current.json | 177 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 40 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 118 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 870 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 102 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 112 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 90 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 56 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 238 |
11 files changed, 970 insertions, 894 deletions
diff --git a/challenge-014/kevin-colyer/perl6/ch-1.p6 b/challenge-014/kevin-colyer/perl6/ch-1.p6 new file mode 100644 index 0000000000..5c5ffba758 --- /dev/null +++ b/challenge-014/kevin-colyer/perl6/ch-1.p6 @@ -0,0 +1,33 @@ +#!/usr/bin/perl6 +use v6; + +use Test; + +# challenge 14.1 +# Write a script to generate Van Eck’s sequence. +my @testEck=0, 0, 1, 0, 2, 0, 2, 2, 1, 6, 0, 5, 0, 2, 6, 5, 4, 0, 5; +is vanEck(17),@testEck,"First 18 items Van Eck's sequence correct"; + +sub vanEck(int $n where $n>=0 ) { + # Let a0 = 0. Then, for n ≥ 0, if there exists an m < n such that am = an, take the largest such m and set an+1 = n − m; otherwise an+1 = 0. + + my int $max_m=-1; # set to a value lower than 0 to raise max_m + state int @a=0; + + return 0 if $n==0; # base case + + vanEck($n-1) if @a[$n]:!exists; + + for 0..^$n -> int $m { + if @a[$m]==@a[$n] { + $max_m=max($max_m,$m); + } + } + if $max_m>=0 { + @a[$n+1]=$n-$max_m; + return @a; + } + @a[$n+1]=0; + return @a; +} + diff --git a/challenge-014/kevin-colyer/perl6/ch-2.p6 b/challenge-014/kevin-colyer/perl6/ch-2.p6 new file mode 100644 index 0000000000..943bea48e9 --- /dev/null +++ b/challenge-014/kevin-colyer/perl6/ch-2.p6 @@ -0,0 +1,28 @@ +#!/usr/bin/perl6 +use v6; + +use Test; + +my @words="/usr/share/dict/words".IO.lines.map(*.lc.trans('\'' => '', :delete, 'éåö' => 'eao').uc).grep(*.chars > 3) ; +say "Longest word is: " ~ wordsearch(@words); +# CAMPINAS + +sub wordsearch(@words) { + my @codes=<AL AK AZ AR CA CO CT DE DC FL GA HI ID IL IN IA KS KY LA AL ME MD MA MI MN MS MO MT NE NV NH NJ NM NY NC ND OH OK OR PA RI SC SD TN TX UT VT VA WA WV WI WY AS GU MP PR VI FM MH PW AA AE AP CM CZ NB PI TT>.sort; + my $best=""; + + for @words -> $word { + my $found=True; + for $word.comb(2) -> $xx { + if not ( $xx (elem) @codes ) { + $found=False; + last; + }; + } + if $found { + #say "> Found $word"; + $best=$word if $word.chars>$best.chars ; + } + } + return $best; +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 4c81421ee8..38a22fe4bf 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,86 +1,19 @@ { - "subtitle" : { - "text" : "[Champions: 7] Last updated at 2019-06-24 22:32:06 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - 014" - }, - "series" : [ - { - "data" : [ - { - "y" : 2, - "drilldown" : "Aaron Sherman", - "name" : "Aaron Sherman" - }, - { - "drilldown" : "Dave Jacoby", - "y" : 3, - "name" : "Dave Jacoby" - }, - { - "name" : "E. Choroba", - "drilldown" : "E. Choroba", - "y" : 2 - }, - { - "name" : "Lubos Kolouch", - "y" : 3, - "drilldown" : "Lubos Kolouch" - }, - { - "drilldown" : "Robert Van Dam", - "y" : 3, - "name" : "Robert Van Dam" - }, - { - "y" : 1, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "drilldown" : "Steven Wilson", - "y" : 1, - "name" : "Steven Wilson" - } - ], - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 014" - } - ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "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" - }, - "xAxis" : { - "type" : "category" - }, "drilldown" : { "series" : [ { + "name" : "Aaron Sherman", "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Aaron Sherman" + ] }, { "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl 5", @@ -90,18 +23,27 @@ "Blog", 1 ] - ], - "id" : "Dave Jacoby" + ] }, { + "name" : "E. Choroba", "data" : [ [ "Perl 5", 2 ] ], - "id" : "E. Choroba", - "name" : "E. Choroba" + "id" : "E. Choroba" + }, + { + "data" : [ + [ + "Perl 6", + 2 + ] + ], + "id" : "Kevin Colyer", + "name" : "Kevin Colyer" }, { "id" : "Lubos Kolouch", @@ -134,24 +76,97 @@ ] }, { - "name" : "Steven Wilson", - "id" : "Steven Wilson", "data" : [ [ "Perl 5", 1 ] - ] + ], + "id" : "Steven Wilson", + "name" : "Steven Wilson" } ] }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "legend" : { + "enabled" : 0 + }, + "xAxis" : { + "type" : "category" + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : 1, + "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/>" + }, + "title" : { + "text" : "Perl Weekly Challenge - 014" + }, + "subtitle" : { + "text" : "[Champions: 8] Last updated at 2019-06-24 22:41:24 GMT" + }, + "series" : [ + { + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 014", + "data" : [ + { + "name" : "Aaron Sherman", + "y" : 2, + "drilldown" : "Aaron Sherman" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 3, + "name" : "Dave Jacoby" + }, + { + "y" : 2, + "drilldown" : "E. Choroba", + "name" : "E. Choroba" + }, + { + "y" : 2, + "drilldown" : "Kevin Colyer", + "name" : "Kevin Colyer" + }, + { + "name" : "Lubos Kolouch", + "drilldown" : "Lubos Kolouch", + "y" : 3 + }, + { + "name" : "Robert Van Dam", + "y" : 3, + "drilldown" : "Robert Van Dam" + }, + { + "drilldown" : "Simon Proctor", + "y" : 1, + "name" : "Simon Proctor" + }, + { + "name" : "Steven Wilson", + "y" : 1, + "drilldown" : "Steven Wilson" + } + ] + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 4ce57d7efd..cbddd85052 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,24 +1,33 @@ { - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 }, "chart" : { "type" : "column" }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + }, + "subtitle" : { + "text" : "Last updated at 2019-06-24 22:41:34 GMT" + }, "series" : [ { "name" : "Contributions", "dataLabels" : { - "align" : "right", + "color" : "#FFFFFF", "rotation" : -90, - "format" : "{point.y:.0f}", "style" : { "fontFamily" : "Verdana, sans-serif", "fontSize" : "13px" }, - "enabled" : "true", "y" : 10, - "color" : "#FFFFFF" + "format" : "{point.y:.0f}", + "align" : "right", + "enabled" : "true" }, "data" : [ [ @@ -31,16 +40,13 @@ ], [ "Perl 6", - 313 + 315 ] ] } ], - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 + "legend" : { + "enabled" : "false" }, "tooltip" : { "pointFormat" : "<b>{point.y:.0f}</b>" @@ -48,16 +54,10 @@ "xAxis" : { "labels" : { "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" } }, "type" : "category" - }, - "legend" : { - "enabled" : "false" - }, - "subtitle" : { - "text" : "Last updated at 2019-06-24 22:32:14 GMT" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index d97a9a9bf2..b3dd92bdcb 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,18 +1,29 @@ { - "legend" : { - "enabled" : "false" + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-24 22:41:34 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" }, "plotOptions" : { "series" : { "borderWidth" : 0, "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" + "format" : "{point.y}", + "enabled" : 1 } } }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-24 22:32:14 GMT" + "legend" : { + "enabled" : "false" }, "tooltip" : { "followPointer" : "true", @@ -22,65 +33,57 @@ "xAxis" : { "type" : "category" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, "series" : [ { "data" : [ { - "drilldown" : "001", "y" : 123, - "name" : "#001" + "name" : "#001", + "drilldown" : "001" }, { - "drilldown" : "002", "name" : "#002", + "drilldown" : "002", "y" : 104 }, { - "drilldown" : "003", "y" : 66, - "name" : "#003" + "name" : "#003", + "drilldown" : "003" }, { "name" : "#004", - "y" : 84, - "drilldown" : "004" + "drilldown" : "004", + "y" : 84 }, { - "name" : "#005", "y" : 66, + "name" : "#005", "drilldown" : "005" }, { + "name" : "#006", "drilldown" : "006", - "y" : 47, - "name" : "#006" + "y" : 47 }, { - "drilldown" : "007", "y" : 54, - "name" : "#007" + "name" : "#007", + "drilldown" : "007" }, { - "drilldown" : "008", "name" : "#008", + "drilldown" : "008", "y" : 67 }, { - "drilldown" : "009", "y" : 62, - "name" : "#009" + "name" : "#009", + "drilldown" : "009" }, { - "drilldown" : "010", "y" : 58, + "drilldown" : "010", "name" : "#010" }, { @@ -90,29 +93,28 @@ }, { "drilldown" : "012", - "y" : 80, - "name" : "#012" + "name" : "#012", + "y" : 80 }, { - "drilldown" : "013", + "y" : 71, "name" : "#013", - "y" : 71 + "drilldown" : "013" }, { "drilldown" : "014", "name" : "#014", - "y" : 15 + "y" : 17 } ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Languages" } ], "drilldown" : { "series" : [ { "id" : "001", - "name" : "001", "data" : [ [ "Perl 5", @@ -126,10 +128,10 @@ "Blog", 10 ] - ] + ], + "name" : "001" }, { - "id" : "002", "name" : "002", "data" : [ [ @@ -144,10 +146,11 @@ "Blog", 9 ] - ] + ], + "id" : "002" }, { - "id" : "003", + "name" : "003", "data" : [ [ "Perl 5", @@ -162,7 +165,7 @@ 8 ] ], - "name" : "003" + "id" : "003" }, { "id" : "004", @@ -201,6 +204,7 @@ "name" : "005" }, { + "name" : "006", "id" : "006", "data" : [ [ @@ -215,10 +219,10 @@ "Blog", 6 ] - ], - "name" : "006" + ] }, { + "name" : "007", "data" : [ [ "Perl 5", @@ -233,10 +237,10 @@ 8 ] ], - "name" : "007", "id" : "007" }, { + "name" : "008", "data" : [ [ "Perl 5", @@ -251,11 +255,9 @@ 9 ] ], - "name" : "008", "id" : "008" }, { - "id" : "009", "data" : [ [ "Perl 5", @@ -270,6 +272,7 @@ 11 ] ], + "id" : "009", "name" : "009" }, { @@ -291,8 +294,8 @@ "name" : "010" }, { - "id" : "011", "name" : "011", + "id" : "011", "data" : [ [ "Perl 5", @@ -309,7 +312,7 @@ ] }, { - "name" : "012", + "id" : "012", "data" : [ [ "Perl 5", @@ -324,7 +327,7 @@ 9 ] ], - "id" : "012" + "name" : "012" }, { "data" : [ @@ -341,11 +344,12 @@ 11 ] ], - "name" : "013", - "id" : "013" + "id" : "013", + "name" : "013" }, { "name" : "014", + "id" : "014", "data" : [ [ "Perl 5", @@ -353,18 +357,14 @@ ], [ "Perl 6", - 3 + 5 ], [ "Blog", 1 ] - ], - "id" : "014" + ] } ] - }, - "title" : { - "text" : "Perl Weekly Challenge Language" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index bacc8fa4be..da8f3aee4e 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,350 +1,71 @@ { - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, "chart" : { "type" : "column" }, "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", - "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-24 22:32:10 GMT" - }, - "xAxis" : { - "type" : "category" - }, - "series" : [ - { - "data" : [ - { - "y" : 136, - "name" : "#1: Joelle Maslak", - "drilldown" : "Joelle Maslak" - }, - { - "y" : 132, - "name" : "#2: Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld" - }, - { - "name" : "#3: Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas", - "y" : 106 - }, - { - "y" : 92, - "name" : "#4: Ruben Westerberg", - "drilldown" : "Ruben Westerberg" - }, - { - "y" : 78, - "drilldown" : "Adam Russell", - "name" : "#5: Adam Russell" - }, - { - "name" : "#6: Arne Sommer", - "drilldown" : "Arne Sommer", - "y" : 70 - }, - { - "name" : "#7: Kian-Meng Ang", - "drilldown" : "Kian-Meng Ang", - "y" : 68 - }, - { - "name" : "#8: Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 68 - }, - { - "y" : 66, - "drilldown" : "Athanasius", - "name" : "#9: Athanasius" - }, - { - "y" : 58, - "name" : "#10: E. Choroba", - "drilldown" : "E. Choroba" - }, - { - "y" : 56, - "name" : "#11: Dave Jacoby", - "drilldown" : "Dave Jacoby" - }, - { - "y" : 54, - "name" : "#12: Francis Whittle", - "drilldown" : "Francis Whittle" - }, - { - "name" : "#13: Gustavo Chaves", - "drilldown" : "Gustavo Chaves", - "y" : 54 - }, - { - "drilldown" : "Andrezgz", - "name" : "#14: Andrezgz", - "y" : 50 - }, - { - "y" : 48, - "name" : "#15: Jo Christian Oterhals", - "drilldown" : "Jo Christian Oterhals" - }, - { - "y" : 44, - "name" : "#16: Dr James A. Smith", - "drilldown" : "Dr James A. Smith" - }, - { - "y" : 40, - "name" : "#17: Daniel Mantovani", - "drilldown" : "Daniel Mantovani" - }, - { - "name" : "#18: Duncan C. White", - "drilldown" : "Duncan C. White", - "y" : 40 - }, - { - "drilldown" : "Steven Wilson", - "name" : "#19: Steven Wilson", - "y" : 34 - }, - { - "y" : 34, - "name" : "#20: Yozen Hernandez", - "drilldown" : "Yozen Hernandez" - }, - { - "y" : 32, - "name" : "#21: Mark Senn", - "drilldown" : "Mark Senn" - }, - { - "y" : 32, - "name" : "#22: Nick Logan", - "drilldown" : "Nick Logan" - }, - { - "y" : 28, - "name" : "#23: Lars Balker", - "drilldown" : "Lars Balker" - }, - { - "y" : 26, - "drilldown" : "Ozzy", - "name" : "#24: Ozzy" - }, - { - "y" : 24, - "drilldown" : "Guillermo Ramos", - "name" : "#25: Guillermo Ramos" - }, - { - "name" : "#26: Maxim Nechaev", - "drilldown" : "Maxim Nechaev", - "y" : 24 - }, - { - "y" : 22, - "drilldown" : "Alicia Bielsa", - "name" : "#27: Alicia Bielsa" - }, - { - "y" : 22, - "drilldown" : "Feng Chang", - "name" : "#28: Feng Chang" - }, - { - "drilldown" : "Doug Schrag", - "name" : "#29: Doug Schrag", - "y" : 20 - }, - { - "name" : "#30: Robert Gratza", - "drilldown" : "Robert Gratza", - "y" : 16 - }, - { - "y" : 14, - "drilldown" : "John Barrett", - "name" : "#31: John Barrett" - }, - { - "drilldown" : "Khalid", - "name" : "#32: Khalid", - "y" : 14 - }, - { - "y" : 12, - "drilldown" : "Aaron Sherman", - "name" : "#33: Aaron Sherman" - }, - { - "drilldown" : "Jaime Corchado", - "name" : "#34: Jaime Corchado", - "y" : 12 - }, - { - "y" : 12, - "name" : "#35: Kevin Colyer", - "drilldown" : "Kevin Colyer" - }, - { - "drilldown" : "Kivanc Yazan", - "name" : "#36: Kivanc Yazan", - "y" : 12 - }, - { - "drilldown" : "Maxim Kolodyazhny", - "name" : "#37: Maxim Kolodyazhny", - "y" : 12 - }, - { - "y" : 12, - "name" : "#38: Philippe Bruhat", - "drilldown" : "Philippe Bruhat" - }, - { - "name" : "#39: Sergio Iglesias", - "drilldown" : "Sergio Iglesias", - "y" : 12 - }, - { - "y" : 10, - "drilldown" : "Arpad Toth", - "name" : "#40: Arpad Toth" - }, - { - "name" : "#41: Lubos Kolouch", - "drilldown" : "Lubos Kolouch", - "y" : 10 - }, - { - "y" : 10, - "drilldown" : "Neil Bowers", - "name" : "#42: Neil Bowers" - }, - { - "drilldown" : "Pete Houston", - "name" : "#43: Pete Houston", - "y" : 10 - }, - { - "y" : 10, - "drilldown" : "Steve Rogerson", - "name" : "#44: Steve Rogerson" - }, - { - "y" : 10, - "drilldown" : "Veesh Goldman", - "name" : "#45: Veesh Goldman" - }, - { - "y" : 8, - "name" : "#46: Alex Daniel", - "drilldown" : "Alex Daniel" - }, - { - "drilldown" : "Bob Kleemann", - "name" : "#47: Bob Kleemann", - "y" : 8 - }, - { - "y" : 8, - "drilldown" : "Chenyf", - "name" : "#48: Chenyf" - }, - { - "y" : 8, - "drilldown" : "David Kayal", - "name" : "#49: David Kayal" - }, - { - "y" : 8, - "name" : "#50: Finley", - "drilldown" : "Finley" - } - ], - "name" : "Perl Weekly Challenge Leaders", - "colorByPoint" : "true" - } - ], - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, - "yAxis" : { - "title" : { - "text" : "Total Score" - } + "followPointer" : "true" }, "drilldown" : { "series" : [ { - "id" : "Joelle Maslak", "data" : [ [ - "Blog", - 4 - ], - [ "Perl 6", 32 ], [ + "Blog", + 4 + ], + [ "Perl 5", 32 ] ], - "name" : "Joelle Maslak" + "name" : "Joelle Maslak", + "id" : "Joelle Maslak" }, { + "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld", "data" : [ [ + "Perl 6", + 25 + ], + [ "Perl 5", 26 ], [ "Blog", 15 - ], - [ - "Perl 6", - 25 ] - ], - "id" : "Laurent Rosenfeld" + ] }, { "name" : "Jaldhar H. Vyas", "id" : "Jaldhar H. Vyas", "data" : [ [ - "Perl 6", - 26 - ], - [ "Blog", 1 ], [ "Perl 5", 26 + ], + [ + "Perl 6", + 26 ] ] }, { + "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -354,26 +75,23 @@ "Perl 6", 23 ] - ], - "id" : "Ruben Westerberg", - "name" : "Ruben Westerberg" + ] }, { + "id" : "Adam Russell", "name" : "Adam Russell", "data" : [ [ - "Perl 5", - 26 - ], - [ "Blog", 13 + ], + [ + "Perl 5", + 26 ] - ], - "id" : "Adam Russell" + ] }, { - "id" : "Arne Sommer", "data" : [ [ "Blog", @@ -384,9 +102,12 @@ 23 |
