aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2020-01-29 05:22:19 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2020-01-29 05:22:19 +0000
commit892530adb48755b8692e0c8cdd93735a7a5ce8af (patch)
tree1a4eaa12bbd3fa7cd0e20ac164b488709475c8d8
parent08974aecfac88c60f326d9947d75cbd87c18fc5c (diff)
downloadperlweeklychallenge-club-892530adb48755b8692e0c8cdd93735a7a5ce8af.tar.gz
perlweeklychallenge-club-892530adb48755b8692e0c8cdd93735a7a5ce8af.tar.bz2
perlweeklychallenge-club-892530adb48755b8692e0c8cdd93735a7a5ce8af.zip
- Added solutions by Cheok-Yin Fung.
-rw-r--r--challenge-044/cheok-yin-fung/README1
-rw-r--r--challenge-044/cheok-yin-fung/perl/ch-1.pl50
-rw-r--r--challenge-044/cheok-yin-fung/perl/ch-2.pl22
-rw-r--r--members.json1
-rw-r--r--stats/pwc-current.json225
-rw-r--r--stats/pwc-language-breakdown-summary.json66
-rw-r--r--stats/pwc-language-breakdown.json656
-rw-r--r--stats/pwc-leaders.json416
-rw-r--r--stats/pwc-summary-1-30.json44
-rw-r--r--stats/pwc-summary-121-150.json104
-rw-r--r--stats/pwc-summary-31-60.json126
-rw-r--r--stats/pwc-summary-61-90.json48
-rw-r--r--stats/pwc-summary-91-120.json108
-rw-r--r--stats/pwc-summary.json36
14 files changed, 1000 insertions, 903 deletions
diff --git a/challenge-044/cheok-yin-fung/README b/challenge-044/cheok-yin-fung/README
new file mode 100644
index 0000000000..4413b13ada
--- /dev/null
+++ b/challenge-044/cheok-yin-fung/README
@@ -0,0 +1 @@
+Solutions by Cheok-Yin Fung.
diff --git a/challenge-044/cheok-yin-fung/perl/ch-1.pl b/challenge-044/cheok-yin-fung/perl/ch-1.pl
new file mode 100644
index 0000000000..e98aab4e68
--- /dev/null
+++ b/challenge-044/cheok-yin-fung/perl/ch-1.pl
@@ -0,0 +1,50 @@
+#!/usr/bin/perl -w
+use strict;
+use integer;
+
+my @digits = 1..9;
+
+sub expression {
+}
+
+
+my @poweroft = (6561,2187, 729, 243, 81, 27, 9, 3, 1);
+for my $i (1..6560) {
+
+ my @ooo = (0,0,0,0,0,0,0,0); # 0 -> conjuction , 1 -> plus , 2 -> minus
+ for my $j (0..7) {
+ $ooo[$j] = int($i % $poweroft[$j]) / int($poweroft[$j+1]) ;
+ }
+
+
+ my @objects = (1,0,0,0,0,0,0,0,0);
+ my $objectindex = 0;
+ for my $j (0..7) {
+ if ($ooo[$j] == 0) {
+ $objects[$objectindex] = $objects[$objectindex]*10 + $digits[$j+1];
+ } else {$objectindex++; $objects[$objectindex] = $digits[$j+1];}
+ }
+
+ my $result = $objects[0];
+ $objectindex = 0;
+
+ for my $j (0..7) {
+ if ($ooo[$j] == 1) {$objectindex++; $result += $objects[$objectindex]; }
+ if ($ooo[$j] == 2) {$objectindex++; $result -= $objects[$objectindex]; }
+ }
+
+
+
+ if ($result == 100) {
+
+
+ print $digits[0];
+ for my $j (0..7) {
+ if ($ooo[$j]==1 ) {print "+"; }
+ if ($ooo[$j]==2 ) {print "-"; }
+ print $digits[$j+1];
+ }
+ print "\n";
+ }
+}
+
diff --git a/challenge-044/cheok-yin-fung/perl/ch-2.pl b/challenge-044/cheok-yin-fung/perl/ch-2.pl
new file mode 100644
index 0000000000..1658cee64b
--- /dev/null
+++ b/challenge-044/cheok-yin-fung/perl/ch-2.pl
@@ -0,0 +1,22 @@
+#/usr/bin/perl -w
+use integer;
+use strict;
+
+sub min {
+ if ($_[0] < $_[1]) {
+ $_[0];
+ } else {
+ $_[1];
+ }
+
+}
+
+my @t = (0, 0, 1);
+
+for my $k (3..200) {
+ if ($k % 2 == 0) {$t[$k] = 1+ &min( $t[$k/2] , $t[$k-1])}
+ else {$t[$k] = $t[$k-1]+1;}
+}
+
+print $t[200], "\n";
+
diff --git a/members.json b/members.json
index 4b32ccfe78..3a2b4d5881 100644
--- a/members.json
+++ b/members.json
@@ -20,6 +20,7 @@
"bwva" : "Bruce Van Allen",
"bruno-ramos" : "Bruno Ramos",
"burkhard-nickels" : "Burkhard Nickels",
+ "cheok-yin-fung" : "Cheok-Yin Fung",
"cliveholloway" : "Clive Holloway",
"colin-crain" : "Colin Crain",
"creewick" : "Creewick",
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 5a51fa7a4d..5923af7724 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,7 +1,11 @@
{
+ "title" : {
+ "text" : "Perl Weekly Challenge - 044"
+ },
"drilldown" : {
"series" : [
{
+ "name" : "Adam Russell",
"data" : [
[
"Perl",
@@ -12,7 +16,6 @@
2
]
],
- "name" : "Adam Russell",
"id" : "Adam Russell"
},
{
@@ -27,16 +30,15 @@
},
{
"id" : "Andrezgz",
- "name" : "Andrezgz",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Andrezgz"
},
{
- "id" : "Arne Sommer",
"name" : "Arne Sommer",
"data" : [
[
@@ -47,36 +49,47 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Arne Sommer"
},
{
"data" : [
[
"Perl",
+ 2
+ ]
+ ],
+ "id" : "Cheok-Yin Fung",
+ "name" : "Cheok-Yin Fung"
+ },
+ {
+ "name" : "Cristina Heredia",
+ "data" : [
+ [
+ "Perl",
1
]
],
- "id" : "Cristina Heredia",
- "name" : "Cristina Heredia"
+ "id" : "Cristina Heredia"
},
{
- "name" : "Daniel Mantovani",
"id" : "Daniel Mantovani",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Daniel Mantovani"
},
{
+ "name" : "Darren Bottin",
"data" : [
[
"Perl",
1
]
],
- "name" : "Darren Bottin",
"id" : "Darren Bottin"
},
{
@@ -90,26 +103,27 @@
"name" : "Dave Jacoby"
},
{
+ "id" : "Duane Powell",
"data" : [
[
"Perl",
2
]
],
- "id" : "Duane Powell",
"name" : "Duane Powell"
},
{
- "id" : "Duncan C. White",
- "name" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Duncan C. White",
+ "name" : "Duncan C. White"
},
{
+ "name" : "E. Choroba",
"data" : [
[
"Perl",
@@ -120,12 +134,11 @@
1
]
],
- "name" : "E. Choroba",
"id" : "E. Choroba"
},
{
- "id" : "Fabrizio Poggi",
"name" : "Fabrizio Poggi",
+ "id" : "Fabrizio Poggi",
"data" : [
[
"Perl",
@@ -140,10 +153,11 @@
2
]
],
- "name" : "Jan Ole Kraft",
- "id" : "Jan Ole Kraft"
+ "id" : "Jan Ole Kraft",
+ "name" : "Jan Ole Kraft"
},
{
+ "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -158,12 +172,11 @@
1
]
],
- "id" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld"
},
{
- "id" : "Luca Ferrari",
"name" : "Luca Ferrari",
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -173,27 +186,27 @@
},
{
"id" : "Markus Holzer",
- "name" : "Markus Holzer",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Markus Holzer"
},
{
- "name" : "Noud Aldenhoven",
- "id" : "Noud Aldenhoven",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Noud Aldenhoven",
+ "name" : "Noud Aldenhoven"
},
{
- "id" : "Peter Scott",
"name" : "Peter Scott",
+ "id" : "Peter Scott",
"data" : [
[
"Perl",
@@ -231,7 +244,6 @@
},
{
"id" : "Ryan Thompson",
- "name" : "Ryan Thompson",
"data" : [
[
"Perl",
@@ -245,17 +257,18 @@
"Blog",
2
]
- ]
+ ],
+ "name" : "Ryan Thompson"
},
{
- "id" : "Saif Ahmed",
"name" : "Saif Ahmed",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Saif Ahmed"
},
{
"data" : [
@@ -268,152 +281,136 @@
"name" : "Simon Proctor"
},
{
+ "name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Ulrich Rieke",
- "id" : "Ulrich Rieke"
+ ]
},
{
+ "id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
],
- "name" : "Wanderdoc",
- "id" : "Wanderdoc"
+ "name" : "Wanderdoc"
}
]
},
- "xAxis" : {
- "type" : "category"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "title" : {
- "text" : "Perl Weekly Challenge - 044"
- },
- "subtitle" : {
- "text" : "[Champions: 25] Last updated at 2020-01-29 05:00:06 GMT"
- },
- "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/>"
- },
- "chart" : {
- "type" : "column"
- },
"series" : [
{
+ "name" : "Perl Weekly Challenge - 044",
"colorByPoint" : 1,
"data" : [
{
- "name" : "Adam Russell",
"y" : 4,
- "drilldown" : "Adam Russell"
+ "drilldown" : "Adam Russell",
+ "name" : "Adam Russell"
},
{
- "drilldown" : "Alicia Bielsa",
+ "name" : "Alicia Bielsa",
"y" : 2,
- "name" : "Alicia Bielsa"
+ "drilldown" : "Alicia Bielsa"
},
{
"drilldown" : "Andrezgz",
- "name" : "Andrezgz",
- "y" : 2
+ "y" : 2,
+ "name" : "Andrezgz"
},
{
+ "name" : "Arne Sommer",
"drilldown" : "Arne Sommer",
- "y" : 3,
- "name" : "Arne Sommer"
+ "y" : 3
+ },
+ {
+ "drilldown" : "Cheok-Yin Fung",
+ "y" : 2,
+ "name" : "Cheok-Yin Fung"
},
{
- "y" : 1,
"name" : "Cristina Heredia",
+ "y" : 1,
"drilldown" : "Cristina Heredia"
},
{
- "name" : "Daniel Mantovani",
"y" : 2,
- "drilldown" : "Daniel Mantovani"
+ "drilldown" : "Daniel Mantovani",
+ "name" : "Daniel Mantovani"
},
{
- "drilldown" : "Darren Bottin",
"name" : "Darren Bottin",
- "y" : 1
+ "y" : 1,
+ "drilldown" : "Darren Bottin"
},
{
- "y" : 2,
"name" : "Dave Jacoby",
+ "y" : 2,
"drilldown" : "Dave Jacoby"
},
{
- "drilldown" : "Duane Powell",
"name" : "Duane Powell",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Duane Powell"
},
{
"drilldown" : "Duncan C. White",
- "name" : "Duncan C. White",
- "y" : 2
+ "y" : 2,
+ "name" : "Duncan C. White"
},
{
+ "drilldown" : "E. Choroba",
"y" : 3,
- "name" : "E. Choroba",
- "drilldown" : "E. Choroba"
+ "name" : "E. Choroba"
},
{
- "y" : 2,
"name" : "Fabrizio Poggi",
+ "y" : 2,
"drilldown" : "Fabrizio Poggi"
},
{
- "drilldown" : "Jan Ole Kraft",
"name" : "Jan Ole Kraft",
+ "drilldown" : "Jan Ole Kraft",
"y" : 2
},
{
- "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld",
"y" : 5,
- "drilldown" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld"
},
{
+ "drilldown" : "Luca Ferrari",
"y" : 2,
- "name" : "Luca Ferrari",
- "drilldown" : "Luca Ferrari"
+ "name" : "Luca Ferrari"
},
{
"drilldown" : "Markus Holzer",
- "name" : "Markus Holzer",
- "y" : 2
+ "y" : 2,
+ "name" : "Markus Holzer"
},
{
+ "name" : "Noud Aldenhoven",
"drilldown" : "Noud Aldenhoven",
- "y" : 2,
- "name" : "Noud Aldenhoven"
+ "y" : 2
},
{
- "drilldown" : "Peter Scott",
+ "name" : "Peter Scott",
"y" : 1,
- "name" : "Peter Scott"
+ "drilldown" : "Peter Scott"
},
{
- "name" : "Roger Bell West",
"y" : 4,
- "drilldown" : "Roger Bell West"
+ "drilldown" : "Roger Bell West",
+ "name" : "Roger Bell West"
},
{
+ "name" : "Ruben Westerberg",
"drilldown" : "Ruben Westerberg",
- "y" : 4,
- "name" : "Ruben Westerberg"
+ "y" : 4
},
{
"drilldown" : "Ryan Thompson",
@@ -421,39 +418,57 @@
"name" : "Ryan Thompson"
},
{
- "drilldown" : "Saif Ahmed",
"y" : 2,
+ "drilldown" : "Saif Ahmed",
"name" : "Saif Ahmed"
},
{
- "drilldown" : "Simon Proctor",
"name" : "Simon Proctor",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Simon Proctor"
},
{
- "drilldown" : "Ulrich Rieke",
"y" : 2,
+ "drilldown" : "Ulrich Rieke",
"name" : "Ulrich Rieke"
},
{
- "name" : "Wanderdoc",
"y" : 2,
- "drilldown" : "Wanderdoc"
+ "drilldown" : "Wanderdoc",
+ "name" : "Wanderdoc"
}
- ],
- "name" : "Perl Weekly Challenge - 044"
+ ]
}
],
- "legend" : {
- "enabled" : 0
+ "chart" : {
+ "type" : "column"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
},
"plotOptions" : {
"series" : {
+ "borderWidth" : 0,
"dataLabels" : {
"enabled" : 1,
"format" : "{point.y}"
- },
- "borderWidth" : 0
+ }
}
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 26] Last updated at 2020-01-29 05:22:01 GMT"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "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/>"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 0af856d33b..98ebbb7756 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,40 +1,21 @@
{
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- }
- },
- "subtitle" : {
- "text" : "Last updated at 2020-01-29 05:00:06 GMT"
- },
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
- },
- "title" : {
- "text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
+ "chart" : {
+ "type" : "column"
},
"series" : [
{
"dataLabels" : {
- "format" : "{point.y:.0f}",
- "rotation" : -90,
- "enabled" : "true",
- "y" : 10,
"color" : "#FFFFFF",
"style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
},
- "align" : "right"
+ "align" : "right",
+ "enabled" : "true",
+ "y" : 10,
+ "rotation" : -90,
+ "format" : "{point.y:.0f}"
},
- "name" : "Contributions",
"data" : [
[
"Blog",
@@ -42,22 +23,41 @@
],
[
"Perl",
- 1801
+ 1803
],
[
"Raku",
1092
]
- ]
+ ],
+ "name" : "Contributions"
}
],
+ "subtitle" : {
+ "text" : "Last updated at 2020-01-29 05:22:01 GMT"
+ },
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ }
+ }
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : null
+ },
+ "min" : 0
+ },
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
- "chart" : {
- "type" : "column"
- },
"legend" : {
"enabled" : "false"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 81e1d47278..9742177ca9 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,17 +1,234 @@
{
- "title" : {
- "text" : "Perl Weekly Challenge Language"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ "series" : [
+ {
+ "name" : "Perl Weekly Challenge Languages",
+ "colorByPoint" : "true",
+ "data" : [
+ {
+ "name" : "#001",
+ "y" : 140,
+ "drilldown" : "001"
+ },
+ {
+ "name" : "#002",
+ "y" : 109,
+ "drilldown" : "002"
+ },
+ {
+ "drilldown" : "003",
+ "y" : 71,
+ "name" : "#003"
+ },
+ {
+ "name" : "#004",
+ "y" : 91,
+ "drilldown" : "004"
+ },
+ {
+ "drilldown" : "005",
+ "y" : 71,
+ "name" : "#005"
+ },
+ {
+ "name" : "#006",
+ "y" : 48,
+ "drilldown" : "006"
+ },
+ {
+ "name" : "#007",
+ "drilldown" : "007",
+ "y" : 56
+ },
+ {
+ "y" : 70,
+ "drilldown" : "008",
+ "name" : "#008"
+ },
+ {
+ "y" : 68,
+ "drilldown" : "009",
+ "name" : "#009"
+ },
+ {
+ "y" : 60,
+ "drilldown" : "010",
+ "name" : "#010"
+ },
+ {
+ "name" : "#011",
+ "y" : 79,
+ "drilldown" : "011"
+ },
+ {
+ "drilldown" : "012",
+ "y" : 83,
+ "name" : "#012"
+ },
+ {
+ "y" : 76,
+ "drilldown" : "013",
+ "name" : "#013"
+ },
+ {
+ "y" : 96,
+ "drilldown" : "014",
+ "name" : "#014"
+ },
+ {
+ "drilldown" : "015",
+ "y" : 93,
+ "name" : "#015"
+ },
+ {
+ "y" : 66,
+ "drilldown" : "016",
+ "name" : "#016"
+ },
+ {
+ "name" : "#017",
+ "drilldown" : "017",
+ "y" : 79
+ },
+ {
+ "drilldown" : "018",
+ "y" : 76,
+ "name" : "#018"
+ },
+ {
+ "name" : "#019",
+ "drilldown" : "019",
+ "y" : 95
+ },
+ {
+ "drilldown" : "020",
+ "y" : 95,
+ "name" : "#020"
+ },
+ {
+ "name" : "#021",
+ "drilldown" : "021",
+ "y" : 67
+ },
+ {
+ "name" : "#022",
+ "drilldown" : "022",
+ "y" : 63
+ },
+ {
+ "name" : "#023",
+ "drilldown" : "023",
+ "y" : 91
+ },
+ {
+ "y" : 70,
+ "drilldown" : "024",
+ "name" : "#024"
+ },
+ {
+ "y" : 55,
+ "drilldown" : "025",
+ "name" : "#025"
+ },
+ {
+ "name" : "#026",
+ "drilldown" : "026",
+ "y" : 70
+ },
+ {
+ "y" : 58,
+ "drilldown" : "027",
+ "name" : "#027"
+ },
+ {
+ "drilldown" : "028",
+ "y" : 78,
+ "name" : "#028"
+ },
+ {
+ "name" : "#029",
+ "drilldown" : "029",
+ "y" : 77
+ },
+ {
+ "name" : "#030",
+ "drilldown" : "030",
+ "y" : 115
+ },
+ {
+ "name" : "#031",
+ "drilldown" : "031",
+ "y" : 87
+ },
+ {
+ "name" : "#032",
+ "drilldown" : "032",
+ "y" : 92
+ },
+ {
+ "name" : "#033",
+ "y" : 108,
+ "drilldown" : "033"
+ },
+ {
+ "name" : "#034",
+ "drilldown" : "034",
+ "y" : 60
+ },
+ {
+ "name" : "#035",
+ "drilldown" : "035",
+ "y" : 60
+ },
+ {
+ "name" : "#036",
+ "y" : 61,
+ "drilldown" : "036"
+ },
+ {
+ "drilldown" : "037",
+ "y" : 63,
+ "name" : "#037"
+ },
+ {
+ "name" : "#038",
+ "drilldown" : "038",
+ "y" : 60
+ },
+ {
+ "name" : "#039",
+ "y" : 60,
+ "drilldown" : "039"
+ },
+ {
+ "drilldown" : "040",
+ "y" : 66,
+ "name" : "#040"
+ },
+ {
+ "y" : 68,
+ "drilldown" : "041",
+ "name" : "#041"
+ },
+ {
+ "name" : "#042",
+ "y" : 87,
+ "drilldown" : "042"
+ },
+ {
+ "y" : 64,
+ "drilldown" : "043",
+ "name" : "#043"
+ },
+ {
+ "y" : 64,
+ "drilldown" : "044",
+ "name" : "#044"
+ }
+ ]
}
- },
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-29 05:00:06 GMT"
- },
- "xAxis" : {
- "type" : "category"
+ ],
+ "chart" : {
+ "type" : "column"
},
"drilldown" : {
"series" : [
@@ -30,8 +247,8 @@
11
]
],
- "name" : "001",
- "id" : "001"
+ "id" : "001",
+ "name" : "001"
},
{
"data" : [
@@ -66,10 +283,11 @@
9
]
],
- "name" : "003",
- "id" : "003"
+ "id" : "003",
+ "name" : "003"
},
{
+ "id" : "004",
"data" : [
[
"Perl",
@@ -84,7 +302,6 @@
10
]
],
- "id" : "004",
"name" : "004"
},
{
@@ -106,6 +323,7 @@
"name" : "005"
},
{
+ "id" : "006",
"data" : [
[
"Perl",
@@ -120,8 +338,7 @@
7
]
],
- "name" : "006",
- "id" : "006"
+ "name" : "006"
},
{
"data" : [
@@ -138,10 +355,12 @@
10
]
],
- "name" : "007",
- "id" : "007"
+ "id" : "007",
+ "name" : "007"
},
{
+ "name" : "008",
+ "id" : "008",
"data" : [
[
"Perl",
@@ -155,13 +374,9 @@
"Blog",
12
]
- ],
- "name" : "008",
- "id" : "008"
+ ]
},
{
- "id" : "009",
- "name" : "009",
"data" : [
[
"Perl",
@@ -175,11 +390,13 @@
"Blog",
13
]
- ]
+ ],
+ "id" : "009",
+ "name" : "009"
},
{
- "id" : "010",
"name" : "010",
+ "id" : "010",
"data" : [
[
"Perl",
@@ -196,8 +413,6 @@
]
},
{
- "id" : "011",
- "name" : "011",
"data" : [
[
"Perl",
@@ -211,11 +426,12 @@
"Blog",
10
]
- ]
+ ],
+ "id" : "011",
+ "name" : "011"
},
{
"id" : "012",
- "name" : "012",
"data" : [
[
"Perl",
@@ -229,10 +445,10 @@
"Blog",
11
]
- ]
+ ],
+ "name" : "012"
},
{
- "id" : "013",
"name" : "013",
"data" : [
[
@@ -247,10 +463,10 @@
"Blog",
13
]
- ]
+