aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2020-01-24 21:45:14 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2020-01-24 21:45:14 +0000
commitc926febeed866713d723c1d1aeeab62ccb0fce1f (patch)
treef8875920c1ab3492db3d0440950bc4afbb5690bb
parentbac75dac372ec9302702a9afaa6608fc02b35207 (diff)
downloadperlweeklychallenge-club-c926febeed866713d723c1d1aeeab62ccb0fce1f.tar.gz
perlweeklychallenge-club-c926febeed866713d723c1d1aeeab62ccb0fce1f.tar.bz2
perlweeklychallenge-club-c926febeed866713d723c1d1aeeab62ccb0fce1f.zip
- Added solutions by Arne Sommer.
-rw-r--r--challenge-044/arne-sommer/blog.txt0
-rwxr-xr-xchallenge-044/arne-sommer/raku/10033
-rwxr-xr-xchallenge-044/arne-sommer/raku/20052
-rwxr-xr-xchallenge-044/arne-sommer/raku/25613
-rwxr-xr-xchallenge-044/arne-sommer/raku/ch-1.p633
-rwxr-xr-xchallenge-044/arne-sommer/raku/ch-2.p652
-rwxr-xr-xchallenge-044/arne-sommer/raku/ternary810
-rw-r--r--stats/pwc-current.json153
-rw-r--r--stats/pwc-language-breakdown-summary.json60
-rw-r--r--stats/pwc-language-breakdown.json634
-rw-r--r--stats/pwc-leaders.json718
-rw-r--r--stats/pwc-summary-1-30.json40
-rw-r--r--stats/pwc-summary-121-150.json98
-rw-r--r--stats/pwc-summary-31-60.json24
-rw-r--r--stats/pwc-summary-61-90.json42
-rw-r--r--stats/pwc-summary-91-120.json104
-rw-r--r--stats/pwc-summary.json332
17 files changed, 1305 insertions, 1093 deletions
diff --git a/challenge-044/arne-sommer/blog.txt b/challenge-044/arne-sommer/blog.txt
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/challenge-044/arne-sommer/blog.txt
diff --git a/challenge-044/arne-sommer/raku/100 b/challenge-044/arne-sommer/raku/100
new file mode 100755
index 0000000000..d05553ffa7
--- /dev/null
+++ b/challenge-044/arne-sommer/raku/100
@@ -0,0 +1,33 @@
+#! /usr/bin/env raku
+
+use MONKEY-SEE-NO-EVAL;
+
+unit sub MAIN (:$verbose, :$all);
+
+my $input = "123456789";
+
+for ^Inf
+{
+ my $ternary = .base(3).fmt('%08d');
+
+ last if $ternary.chars > 8;
+
+ print ": $input ~ $ternary" if $verbose;
+
+ my $string = (roundrobin $input.comb, $ternary.comb.map({ conv($_) })).flat.join;
+
+ say " -> $string" if $verbose;
+
+ if (EVAL $string) == 100
+ {
+ say "100 == $string";
+ exit unless $all;
+ }
+}
+
+sub conv ($char)
+{
+ return "" if $char eq "0";
+ return "+" if $char eq "1";
+ return "-" if $char eq "2";
+}
diff --git a/challenge-044/arne-sommer/raku/200 b/challenge-044/arne-sommer/raku/200
new file mode 100755
index 0000000000..7c2ebecbd9
--- /dev/null
+++ b/challenge-044/arne-sommer/raku/200
@@ -0,0 +1,52 @@
+#! /usr/bin/env raku
+
+unit sub MAIN (:$verbose, :$infinite);
+
+my $lowest-match = Inf;
+
+my %found;
+
+for ^Inf
+{
+ my $binary = .base(2);
+
+ print ": $_ -> $binary " if $verbose;
+
+ my $val = 1;
+ my $path = "";
+
+ for $binary.comb -> $digit
+ {
+ $digit == 1
+ ?? ( $val += $val; $path ~= "*" )
+ !! ( $val += 1; $path ~= "+" );
+
+ last if %found{$path};
+
+ say " | $path -> $val" if $val >= 200 && $verbose;
+
+ if $val == 200
+ {
+ %found{$path} = True;
+ say "Match: $val at { $path.chars } steps (path: $path).";
+ $lowest-match = $path.chars;
+ if $verbose
+ {
+ my $curr = 1;
+ my $step = 1;
+ say ": Initial value: 1";
+ for $path.comb -> $operator
+ {
+ $operator eq "+" ?? ( $curr += 1 ) !! ( $curr += $curr );
+ say ": Step { $step++ }: $operator -> $curr";
+ }
+ }
+ }
+
+ last if $val >= 200;
+
+ exit if !$infinite && $path.chars > $lowest-match;
+ }
+
+ say " | $path -> $val" if $val < 200 && $verbose;
+}
diff --git a/challenge-044/arne-sommer/raku/256 b/challenge-044/arne-sommer/raku/256
new file mode 100755
index 0000000000..cfe80063fe
--- /dev/null
+++ b/challenge-044/arne-sommer/raku/256
@@ -0,0 +1,13 @@
+#! /usr/bin/env raku
+
+my $money = 1;
+
+for 1 .. Inf -> $move
+{
+ $money *= 2;
+ if $money >= 200
+ {
+ say "Amount $money after $move moves.";
+ last;
+ }
+}
diff --git a/challenge-044/arne-sommer/raku/ch-1.p6 b/challenge-044/arne-sommer/raku/ch-1.p6
new file mode 100755
index 0000000000..d05553ffa7
--- /dev/null
+++ b/challenge-044/arne-sommer/raku/ch-1.p6
@@ -0,0 +1,33 @@
+#! /usr/bin/env raku
+
+use MONKEY-SEE-NO-EVAL;
+
+unit sub MAIN (:$verbose, :$all);
+
+my $input = "123456789";
+
+for ^Inf
+{
+ my $ternary = .base(3).fmt('%08d');
+
+ last if $ternary.chars > 8;
+
+ print ": $input ~ $ternary" if $verbose;
+
+ my $string = (roundrobin $input.comb, $ternary.comb.map({ conv($_) })).flat.join;
+
+ say " -> $string" if $verbose;
+
+ if (EVAL $string) == 100
+ {
+ say "100 == $string";
+ exit unless $all;
+ }
+}
+
+sub conv ($char)
+{
+ return "" if $char eq "0";
+ return "+" if $char eq "1";
+ return "-" if $char eq "2";
+}
diff --git a/challenge-044/arne-sommer/raku/ch-2.p6 b/challenge-044/arne-sommer/raku/ch-2.p6
new file mode 100755
index 0000000000..7c2ebecbd9
--- /dev/null
+++ b/challenge-044/arne-sommer/raku/ch-2.p6
@@ -0,0 +1,52 @@
+#! /usr/bin/env raku
+
+unit sub MAIN (:$verbose, :$infinite);
+
+my $lowest-match = Inf;
+
+my %found;
+
+for ^Inf
+{
+ my $binary = .base(2);
+
+ print ": $_ -> $binary " if $verbose;
+
+ my $val = 1;
+ my $path = "";
+
+ for $binary.comb -> $digit
+ {
+ $digit == 1
+ ?? ( $val += $val; $path ~= "*" )
+ !! ( $val += 1; $path ~= "+" );
+
+ last if %found{$path};
+
+ say " | $path -> $val" if $val >= 200 && $verbose;
+
+ if $val == 200
+ {
+ %found{$path} = True;
+ say "Match: $val at { $path.chars } steps (path: $path).";
+ $lowest-match = $path.chars;
+ if $verbose
+ {
+ my $curr = 1;
+ my $step = 1;
+ say ": Initial value: 1";
+ for $path.comb -> $operator
+ {
+ $operator eq "+" ?? ( $curr += 1 ) !! ( $curr += $curr );
+ say ": Step { $step++ }: $operator -> $curr";
+ }
+ }
+ }
+
+ last if $val >= 200;
+
+ exit if !$infinite && $path.chars > $lowest-match;
+ }
+
+ say " | $path -> $val" if $val < 200 && $verbose;
+}
diff --git a/challenge-044/arne-sommer/raku/ternary8 b/challenge-044/arne-sommer/raku/ternary8
new file mode 100755
index 0000000000..c1e04c3fb4
--- /dev/null
+++ b/challenge-044/arne-sommer/raku/ternary8
@@ -0,0 +1,10 @@
+#! /usr/bin/env raku
+
+for ^Inf
+{
+ my $value = .base(3).fmt('%08d');
+
+ last if $value.chars > 8;
+
+ say $value;
+} \ No newline at end of file
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index d491d7c46c..210f929ee1 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,21 +1,14 @@
{
- "xAxis" : {
- "type" : "category"
- },
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
}
},
- "chart" : {
- "type" : "column"
+ "subtitle" : {
+ "text" : "[Champions: 14] Last updated at 2020-01-24 21:43:31 GMT"
},
- "title" : {
- "text" : "Perl Weekly Challenge - 044"
+ "legend" : {
+ "enabled" : 0
},
"drilldown" : {
"series" : [
@@ -30,54 +23,68 @@
"id" : "Andrezgz"
},
{
+ "id" : "Arne Sommer",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "Arne Sommer"
+ },
+ {
"name" : "Daniel Mantovani",
- "id" : "Daniel Mantovani",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Daniel Mantovani"
},
{
+ "id" : "Dave Jacoby",
"data" : [
[
"Perl",
2
]
],
- "id" : "Dave Jacoby",
"name" : "Dave Jacoby"
},
{
"name" : "Duane Powell",
+ "id" : "Duane Powell",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Duane Powell"
+ ]
},
{
- "name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
- "id" : "E. Choroba"
+ "id" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
"name" : "Luca Ferrari",
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Luca Ferrari"
},
{
"name" : "Markus Holzer",
@@ -100,7 +107,7 @@
"name" : "Peter Scott"
},
{
- "name" : "Roger Bell West",
+ "id" : "Roger Bell West",
"data" : [
[
"Perl",
@@ -111,100 +118,98 @@
2
]
],
- "id" : "Roger Bell West"
+ "name" : "Roger Bell West"
},
{
- "name" : "Saif Ahmed",
"id" : "Saif Ahmed",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Saif Ahmed"
},
{
+ "name" : "Simon Proctor",
"id" : "Simon Proctor",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Simon Proctor"
+ ]
},
{
- "name" : "Ulrich Rieke",
"data" : [
[
"Raku",
2
]
],
- "id" : "Ulrich Rieke"
+ "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
},
{
+ "name" : "Wanderdoc",
"id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Wanderdoc"
+ ]
}
]
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "legend" : {
- "enabled" : 0
- },
"series" : [
{
+ "colorByPoint" : 1,
"data" : [
{
- "name" : "Andrezgz",
"drilldown" : "Andrezgz",
+ "name" : "Andrezgz",
"y" : 2
},
{
- "y" : 2,
+ "name" : "Arne Sommer",
+ "drilldown" : "Arne Sommer",
+ "y" : 3
+ },
+ {
"name" : "Daniel Mantovani",
- "drilldown" : "Daniel Mantovani"
+ "drilldown" : "Daniel Mantovani",
+ "y" : 2
},
{
- "y" : 2,
+ "name" : "Dave Jacoby",
"drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ "y" : 2
},
{
- "y" : 2,
"name" : "Duane Powell",
- "drilldown" : "Duane Powell"
+ "drilldown" : "Duane Powell",
+ "y" : 2
},
{
- "y" : 2,
"name" : "E. Choroba",
- "drilldown" : "E. Choroba"
+ "drilldown" : "E. Choroba",
+ "y" : 2
},
{
- "y" : 2,
"name" : "Luca Ferrari",
- "drilldown" : "Luca Ferrari"
+ "drilldown" : "Luca Ferrari",
+ "y" : 2
},
{
- "drilldown" : "Markus Holzer",
"name" : "Markus Holzer",
+ "drilldown" : "Markus Holzer",
"y" : 2
},
{
- "y" : 1,
"name" : "Peter Scott",
- "drilldown" : "Peter Scott"
+ "drilldown" : "Peter Scott",
+ "y" : 1
},
{
"y" : 4,
@@ -212,36 +217,50 @@
"name" : "Roger Bell West"
},
{
+ "y" : 2,
"name" : "Saif Ahmed",
- "drilldown" : "Saif Ahmed",
- "y" : 2
+ "drilldown" : "Saif Ahmed"
},
{
- "y" : 2,
"drilldown" : "Simon Proctor",
- "name" : "Simon Proctor"
+ "name" : "Simon Proctor",
+ "y" : 2
},
{
- "drilldown" : "Ulrich Rieke",
+ "y" : 2,
"name" : "Ulrich Rieke",
- "y" : 2
+ "drilldown" : "Ulrich Rieke"
},
{
- "name" : "Wanderdoc",
"drilldown" : "Wanderdoc",
+ "name" : "Wanderdoc",
"y" : 2
}
],
- "colorByPoint" : 1,
"name" : "Perl Weekly Challenge - 044"
}
],
- "subtitle" : {
- "text" : "[Champions: 13] Last updated at 2020-01-24 21:12:06 GMT"
+ "title" : {
+ "text" : "Perl Weekly Challenge - 044"
+ },
+ "xAxis" : {
+ "type" : "category"
},
"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/>",
- "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/>"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index ebcedee52b..aa03d71f51 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,34 +1,22 @@
{
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- }
- },
- "chart" : {
- "type" : "column"
- },
- "title" : {
- "text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
- },
"yAxis" : {
"min" : 0,
"title" : {
"text" : null
}
},
- "legend" : {
- "enabled" : "false"
+ "subtitle" : {
+ "text" : "Last updated at 2020-01-24 21:43:31 GMT"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
},
"series" : [
{
"data" : [
[
"Blog",
- 464
+ 465
],
[
"Perl",
@@ -36,26 +24,38 @@
],
[
"Raku",
- 1080
+ 1082
]
],
- "name" : "Contributions",
"dataLabels" : {
- "align" : "right",
- "enabled" : "true",
- "color" : "#FFFFFF",
- "rotation" : -90,
- "y" : 10,
- "format" : "{point.y:.0f}",
"style" : {
"fontFamily" : "Verdana, sans-serif",
"fontSize" : "13px"
- }
- }
+ },
+ "y" : 10,
+ "rotation" : -90,
+ "color" : "#FFFFFF",
+ "format" : "{point.y:.0f}",
+ "enabled" : "true",
+ "align" : "right"
+ },
+ "name" : "Contributions"
}
],
- "subtitle" : {
- "text" : "Last updated at 2020-01-24 21:12:06 GMT"
+ "legend" : {
+ "enabled" : "false"
+ },
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ },
+ "type" : "category"
+ },
+ "chart" : {
+ "type" : "column"
},
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index d9736d44a7..5ad653f355 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,19 +1,260 @@
{
- "chart" : {
- "type" : "column"
+ "xAxis" : {
+ "type" : "category"
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "followPointer" : "true",
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>"
},
"plotOptions" : {
"series" : {
- "borderWidth" : 0,
"dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- }
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
}
},
- "xAxis" : {
- "type" : "category"
+ "chart" : {
+ "type" : "column"
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-24 21:43:31 GMT"
},
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "series" : [
+ {
+ "colorByPoint" : "true",
+ "data" : [
+ {
+ "y" : 140,
+ "drilldown" : "001",
+ "name" : "#001"
+ },
+ {
+ "y" : 109,
+ "drilldown" : "002",
+ "name" : "#002"
+ },
+ {
+ "drilldown" : "003",
+ "name" : "#003",
+ "y" : 71
+ },
+ {
+ "y" : 91,
+ "name" : "#004",
+ "drilldown" : "004"
+ },
+ {
+ "name" : "#005",
+ "drilldown" : "005",
+ "y" : 71
+ },
+ {
+ "drilldown" : "006",
+ "name" : "#006",
+ "y" : 48
+ },
+ {
+ "name" : "#007",
+ "drilldown" : "007",
+ "y" : 56
+ },
+ {
+ "y" : 70,
+ "name" : "#008",
+ "drilldown" : "008"
+ },
+ {
+ "name" : "#009",
+ "drilldown" : "009",
+ "y" : 68
+ },
+ {
+ "drilldown" : "010",
+ "name" : "#010",
+ "y" : 60
+ },
+ {
+ "name" : "#011",
+ "drilldown" : "011",
+ "y" : 79
+ },
+ {
+ "name" : "#012",
+ "drilldown" : "012",
+ "y" : 83
+ },
+ {
+ "drilldown" : "013",
+ "name" : "#013",
+ "y" : 76
+ },
+ {
+ "y" : 96,
+ "drilldown" : "014",
+ "name" : "#014"
+ },
+ {
+ "drilldown" : "015",
+ "name" : "#015",
+ "y" : 93
+ },
+ {
+ "name" : "#016",
+ "drilldown" : "016",
+ "y" : 66
+ },
+ {
+ "drilldown" : "017",
+ "name" : "#017",
+ "y" : 79
+ },
+ {
+ "y" : 76,
+ "name" : "#018",
+ "drilldown" : "018"
+ },
+ {
+ "drilldown" : "019",
+ "name" : "#019",
+ "y" : 95
+ },
+ {
+ "y" : 95,
+ "drilldown" : "020",
+ "name" : "#020"
+ },
+ {
+ "drilldown" : "021",
+ "name" : "#021",
+ "y" : 67
+ },
+ {
+ "name" : "#022",
+ "drilldown" : "022",
+ "y" : 63
+ },
+ {
+ "y" : 91,
+ "name" : "#023",
+ "drilldown" : "023"
+ },
+ {
+ "y" : 70,
+ "drilldown" : "024",
+ "name" : "#024"
+ },
+ {
+ "y" : 55,
+ "drilldown" : "025",
+ "name" : "#025"
+ },
+ {
+ "drilldown" : "026",
+ "name" : "#026",
+ "y" : 70
+ },
+ {
+ "y" : 58,
+ "name" : "#027",
+ "drilldown" : "027"
+ },
+ {
+ "y" : 78,
+ "name" : "#028",
+ "drilldown" : "028"
+ },
+ {
+ "y" : 77,
+ "name" : "#029",
+ "drilldown" : "029"
+ },
+ {
+ "name" : "#030",
+ "drilldown" : "030",
+ "y" : 115
+ },
+ {
+ "name" : "#031",
+ "drilldown" : "031",
+ "y" : 87
+ },
+ {
+ "drilldown" : "032",
+ "name" : "#032",
+ "y" : 92
+ },
+ {
+ "name" : "#033",
+ "drilldown" : "033",
+ "y" : 108
+ },
+ {
+ "y" : 60,
+ "drilldown" : "034",
+ "name" : "#034"
+ },
+ {
+ "y" : 60,
+ "drilldown" : "035",
+ "name" : "#035"
+ },
+ {
+ "drilldown" : "036",
+ "name" : "#036",
+ "y" : 61
+ },
+ {
+ "y" : 63,
+ "name" : "#037",
+ "drilldown" : "037"
+ },
+ {
+ "y" : 60,
+ "drilldown" : "038",
+ "name" : "#038"
+ },
+ {
+ "y" : 60,
+ "drilldown" : "039",
+ "name" : "#039"
+ },
+ {
+ "drilldown" : "040",
+ "name" : "#040",
+ "y" : 66
+ },
+ {
+ "y" : 68,
+ "drilldown" : "041",
+ "name" : "#041"
+ },
+ {
+ "drilldown" : "042",
+ "name" : "#042",
+ "y" : 87
+ },
+ {
+ "y" : 64,
+ "name" : "#043",
+ "drilldown" : "043"
+ },
+ {
+ "y" : 30,
+ "name" : "#044",
+ "drilldown" : "044"
+ }
+ ],
+ "name" : "Perl Weekly Challenge Languages"
+ }
+ ],
"drilldown" : {
"series" : [
{
@@ -35,6 +276,8 @@
]
},
{
+ "name" : "002",
+ "id" : "002",
"data" : [
[
"Perl",
@@ -48,12 +291,11 @@
"Blog",
10
]
- ],
- "id" : "002",
- "name" : "002"
+ ]
},
{
"name" : "003",
+ "id" : "003",
"data" : [
[
"Perl",
@@ -67,8 +309,7 @@
"Blog",
9
]
- ],
- "id" : "003"
+ ]
},
{
"data" : [
@@ -89,6 +330,7 @@
"name" : "004"
},
{
+ "name" : "005",
"id" : "005",
"data" : [
[
@@ -103,8 +345,7 @@
"Blog",
12
]
- ],
- "name" : "005"
+ ]
},
{
"name" : "006",
@@ -125,7 +366,7 @@
"id" : "006"
},
{
- "name" : "007",
+ "id" : "007",
"data" : [
[
"Perl",
@@ -140,10 +381,9 @@
10
]
],
- "id" : "007"
+ "name" : "007"
},
{
- "id" : "008",
"data" : [
[
"Perl",
@@ -158,10 +398,12 @@
12
]
],
+ "id" : "008",
"name" : "008"
},
{
"name" : "009",
+ "id" : "009",
"data" : [
[
"Perl",
@@ -175,10 +417,11 @@
"Blog",
13
]
- ],
- "id" : "009"
+ ]
},
{
+ "name" : "010",
+ "id" : "010",
"data" : [
[
"Perl",
@@ -192,11 +435,10 @@
"Blog",
11
]
- ],
- "id" : "010",
- "name" : "010"
+ ]
},
{
+ "name" : "011",
"data" : [
[
"Perl",
@@ -211,8 +453,7 @@
10
]
],
- "id" : "011",
- "name" : "011"
+ "id" : "011"
},
{
"name" : "012",
@@ -233,7 +474,7 @@
"id" : "012"
},
{
- "name" : "013",
+ "id" : "013",
"data" : [
[
"Perl",
@@ -248,10 +489,9 @@
13
]
],
- "id" : "013"
+ "name" : "013"
},
{
- "name" : "014",
"id" : "014",
"data" : [
[
@@ -266,9 +506,11 @@
"Blog",
15
]
- ]
+ ],
+ "name" : "014"
},
{
+ "name" : "015",
"id" : "015",
"data" : [
[
@@ -283,10 +525,10 @@
"Blog",
15
]
- ],
- "name" : "015"
+ ]
},
{
+ "id" : "016",
"data" : [
[
"Perl",
@@ -301,10 +543,11 @@
12
]
],
- "id" : "016",
"name" : "016"
},