aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-081/mohammad-anwar/raku/ch-1.raku48
-rw-r--r--stats/pwc-current.json322
-rw-r--r--stats/pwc-language-breakdown-summary.json50
-rw-r--r--stats/pwc-language-breakdown.json594
-rw-r--r--stats/pwc-leaders.json400
-rw-r--r--stats/pwc-summary-1-30.json36
-rw-r--r--stats/pwc-summary-121-150.json108
-rw-r--r--stats/pwc-summary-151-180.json124
-rw-r--r--stats/pwc-summary-181-210.json68
-rw-r--r--stats/pwc-summary-31-60.json106
-rw-r--r--stats/pwc-summary-61-90.json108
-rw-r--r--stats/pwc-summary-91-120.json102
-rw-r--r--stats/pwc-summary.json36
13 files changed, 1075 insertions, 1027 deletions
diff --git a/challenge-081/mohammad-anwar/raku/ch-1.raku b/challenge-081/mohammad-anwar/raku/ch-1.raku
new file mode 100644
index 0000000000..b276af9cd1
--- /dev/null
+++ b/challenge-081/mohammad-anwar/raku/ch-1.raku
@@ -0,0 +1,48 @@
+#!/usr/bin/env raku
+
+#
+# Perl Weekly Challenge - 081
+#
+# Task #1: Common Base String
+#
+# https://perlweeklychallenge.org/blog/perl-weekly-challenge-081
+#
+
+use v6.d;
+
+sub MAIN(Str :$string1 = "abcdabcd",
+ Str :$string2 = "abcdabcdabcdabcd") {
+
+ common-base-strings($string1, $string2).say;
+}
+
+#
+#
+# SUBROUTINE
+
+sub common-base-strings(Str $string1, Str $string2 --> Str) {
+
+ my $len_string1 = $string1.chars;
+ my $len_string2 = $string2.chars;
+
+ my ($min_size, $min_string);
+ if ($len_string1 > $len_string2) {
+ $min_string = $string2;
+ $min_size = $len_string2;
+ }
+ else {
+ $min_string = $string1;
+ $min_size = $len_string1;
+ }
+
+ my @common_base_strings = ();
+ for 1 .. $min_size -> $i {
+ my $base_str = substr($min_string, 0, $i);
+ @common_base_strings.push: $base_str
+ if ($string1 eq $base_str x 2)
+ ||
+ ($string2 eq $base_str x 2);
+ }
+
+ return @common_base_strings.join(", ");
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 7f377bd75e..fb906cb34f 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,48 +1,38 @@
{
- "xAxis" : {
- "type" : "category"
- },
"subtitle" : {
- "text" : "[Champions: 38] Last updated at 2020-10-11 22:26:06 GMT"
+ "text" : "[Champions: 38] Last updated at 2020-10-12 00:23:01 GMT"
},
- "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
+ "legend" : {
+ "enabled" : 0
},
"plotOptions" : {
"series" : {
"borderWidth" : 0,
"dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
+ "format" : "{point.y}",
+ "enabled" : 1
}
}
},
- "title" : {
- "text" : "Perl Weekly Challenge - 081"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "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/>"
},
"drilldown" : {
"series" : [
{
- "name" : "Abigail",
"data" : [
[
"Perl",
2
]
],
- "id" : "Abigail"
+ "id" : "Abigail",
+ "name" : "Abigail"
},
{
+ "name" : "Adam Russell",
"id" : "Adam Russell",
"data" : [
[
@@ -53,8 +43,7 @@
"Blog",
1
]
- ],
- "name" : "Adam Russell"
+ ]
},
{
"name" : "Alexander Pankoff",
@@ -67,8 +56,8 @@
]
},
{
- "name" : "Andinus",
"id" : "Andinus",
+ "name" : "Andinus",
"data" : [
[
"Perl",
@@ -82,17 +71,15 @@
},
{
"id" : "Andrew Shitov",
+ "name" : "Andrew Shitov",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Andrew Shitov"
+ ]
},
{
- "name" : "Arne Sommer",
- "id" : "Arne Sommer",
"data" : [
[
"Raku",
@@ -102,9 +89,12 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Arne Sommer",
+ "id" : "Arne Sommer"
},
{
+ "id" : "Athanasius",
"name" : "Athanasius",
"data" : [
[
@@ -115,18 +105,17 @@
"Raku",
2
]
- ],
- "id" : "Athanasius"
+ ]
},
{
- "name" : "Bob Lied",
"data" : [
[
"Perl",
2
]
],
- "id" : "Bob Lied"
+ "id" : "Bob Lied",
+ "name" : "Bob Lied"
},
{
"name" : "Cheok-Yin Fung",
@@ -140,6 +129,7 @@
},
{
"name" : "Colin Crain",
+ "id" : "Colin Crain",
"data" : [
[
"Perl",
@@ -153,28 +143,27 @@
"Blog",
1
]
- ],
- "id" : "Colin Crain"
+ ]
},
{
+ "name" : "Dave Jacoby",
"id" : "Dave Jacoby",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Dave Jacoby"
+ ]
},
{
- "name" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
],
- "id" : "Duncan C. White"
+ "id" : "Duncan C. White",
+ "name" : "Duncan C. White"
},
{
"name" : "E. Choroba",
@@ -187,8 +176,6 @@
]
},
{
- "name" : "Flavio Poletti",
- "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -198,7 +185,9 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
},
{
"data" : [
@@ -207,22 +196,22 @@
2
]
],
- "id" : "James Smith",
- "name" : "James Smith"
+ "name" : "James Smith",
+ "id" : "James Smith"
},
{
"name" : "Jan Krnavek",
+ "id" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Jan Krnavek"
+ ]
},
{
- "name" : "Jorg Sommrey",
"id" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey",
"data" : [
[
"Perl",
@@ -232,16 +221,15 @@
},
{
"id" : "Jose Luis",
+ "name" : "Jose Luis",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Jose Luis"
+ ]
},
{
- "id" : "Julio de Castro",
"data" : [
[
"Perl",
@@ -252,30 +240,30 @@
2
]
],
+ "id" : "Julio de Castro",
"name" : "Julio de Castro"
},
{
- "id" : "Kang-min Liu",
"data" : [
[
"Raku",
2
]
],
- "name" : "Kang-min Liu"
+ "name" : "Kang-min Liu",
+ "id" : "Kang-min Liu"
},
{
- "name" : "Lars Thegler",
- "id" : "Lars Thegler",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Lars Thegler",
+ "name" : "Lars Thegler"
},
{
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -290,40 +278,40 @@
1
]
],
+ "name" : "Laurent Rosenfeld",
"id" : "Laurent Rosenfeld"
},
{
+ "name" : "Lubos Kolouch",
"id" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Lubos Kolouch"
+ ]
},
{
- "id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
- "name" : "Mark Anderson"
+ "name" : "Mark Anderson",
+ "id" : "Mark Anderson"
},
{
+ "id" : "Markus Holzer",
"name" : "Markus Holzer",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Markus Holzer"
+ ]
},
{
- "name" : "Mohammad S Anwar",
"data" : [
[
"Perl",
@@ -331,10 +319,11 @@
],
[
"Raku",
- 1
+ 2
]
],
- "id" : "Mohammad S Anwar"
+ "id" : "Mohammad S Anwar",
+ "name" : "Mohammad S Anwar"
},
{
"data" : [
@@ -355,37 +344,36 @@
"name" : "Myoungjin Jeon"
},
{
- "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
],
+ "id" : "Niels van Dijke",
"name" : "Niels van Dijke"
},
{
+ "id" : "Nuno Vieira",
+ "name" : "Nuno Vieira",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Nuno Vieira",
- "name" : "Nuno Vieira"
+ ]
},
{
+ "name" : "Pete Houston",
"id" : "Pete Houston",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Pete Houston"
+ ]
},
{
- "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -400,7 +388,8 @@
1
]
],
- "id" : "Roger Bell_West"
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
},
{
"data" : [
@@ -409,11 +398,12 @@
2
]
],
- "id" : "Shawn Wagner",
- "name" : "Shawn Wagner"
+ "name" : "Shawn Wagner",
+ "id" : "Shawn Wagner"
},
{
"name" : "Simon Green",
+ "id" : "Simon Green",
"data" : [
[
"Perl",
@@ -423,20 +413,21 @@
"Blog",
1
]
- ],
- "id" : "Simon Green"
+ ]
},
{
- "name" : "Simon Proctor",
- "id" : "Simon Proctor",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Simon Proctor",
+ "id" : "Simon Proctor"
},
{
+ "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -446,23 +437,19 @@
"Raku",
1
]
- ],
- "id" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
+ ]
},
{
- "name" : "Vinod Kumar K",
- "id" : "Vinod Kumar K",
"data" : [
[
"Perl",
1
]
- ]
+ ],
+ "id" : "Vinod Kumar K",
+ "name" : "Vinod Kumar K"
},
{
- "name" : "Walt Mankowski",
- "id" : "Walt Mankowski",
"data" : [
[
"Perl",
@@ -472,47 +459,44 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Walt Mankowski",
+ "name" : "Walt Mankowski"
},
{
+ "name" : "Wanderdoc",
+ "id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Wanderdoc",
- "name" : "Wanderdoc"
+ ]
}
]
},
- "legend" : {
- "enabled" : 0
- },
"series" : [
{
- "name" : "Perl Weekly Challenge - 081",
- "colorByPoint" : 1,
"data" : [
{
- "y" : 2,
"drilldown" : "Abigail",
- "name" : "Abigail"
+ "name" : "Abigail",
+ "y" : 2
},
{
+ "drilldown" : "Adam Russell",
"name" : "Adam Russell",
- "y" : 3,
- "drilldown" : "Adam Russell"
+ "y" : 3
},
{
+ "y" : 2,
"name" : "Alexander Pankoff",
- "drilldown" : "Alexander Pankoff",
- "y" : 2
+ "drilldown" : "Alexander Pankoff"
},
{
- "drilldown" : "Andinus",
"y" : 4,
- "name" : "Andinus"
+ "name" : "Andinus",
+ "drilldown" : "Andinus"
},
{
"y" : 2,
@@ -520,49 +504,49 @@
"name" : "Andrew Shitov"
},
{
- "drilldown" : "Arne Sommer",
"y" : 3,
+ "drilldown" : "Arne Sommer",
"name" : "Arne Sommer"
},
{
+ "drilldown" : "Athanasius",
"name" : "Athanasius",
- "y" : 4,
- "drilldown" : "Athanasius"
+ "y" : 4
},
{
+ "drilldown" : "Bob Lied",
"name" : "Bob Lied",
- "y" : 2,
- "drilldown" : "Bob Lied"
+ "y" : 2
},
{
- "drilldown" : "Cheok-Yin Fung",
"y" : 2,
+ "drilldown" : "Cheok-Yin Fung",
"name" : "Cheok-Yin Fung"
},
{
- "name" : "Colin Crain",
+ "y" : 5,
"drilldown" : "Colin Crain",
- "y" : 5
+ "name" : "Colin Crain"
},
{
+ "y" : 2,
"name" : "Dave Jacoby",
- "drilldown" : "Dave Jacoby",
- "y" : 2
+ "drilldown" : "Dave Jacoby"
},
{
- "y" : 2,
"drilldown" : "Duncan C. White",
- "name" : "Duncan C. White"
+ "name" : "Duncan C. White",
+ "y" : 2
},
{
"drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
+ "name" : "E. Choroba",
+ "y" : 2
},
{
+ "name" : "Flavio Poletti",
"drilldown" : "Flavio Poletti",
- "y" : 4,
- "name" : "Flavio Poletti"
+ "y" : 4
},
{
"name" : "James Smith",
@@ -575,84 +559,84 @@
"name" : "Jan Krnavek"
},
{
- "drilldown" : "Jorg Sommrey",
"y" : 2,
- "name" : "Jorg Sommrey"
+ "name" : "Jorg Sommrey",
+ "drilldown" : "Jorg Sommrey"
},
{
+ "name" : "Jose Luis",
"drilldown" : "Jose Luis",
- "y" : 2,
- "name" : "Jose Luis"
+ "y" : 2
},
{
- "name" : "Julio de Castro",
"y" : 4,
- "drilldown" : "Julio de Castro"
+ "drilldown" : "Julio de Castro",
+ "name" : "Julio de Castro"
},
{
- "drilldown" : "Kang-min Liu",
"y" : 2,
- "name" : "Kang-min Liu"
+ "name" : "Kang-min Liu",
+ "drilldown" : "Kang-min Liu"
},
{
+ "name" : "Lars Thegler",
"drilldown" : "Lars Thegler",
- "y" : 2,
- "name" : "Lars Thegler"
+ "y" : 2
},
{
"drilldown" : "Laurent Rosenfeld",
- "y" : 3,
- "name" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld",
+ "y" : 3
},
{
- "drilldown" : "Lubos Kolouch",
"y" : 2,
- "name" : "Lubos Kolouch"
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch"
},
{
- "drilldown" : "Mark Anderson",
"y" : 2,
- "name" : "Mark Anderson"
+ "name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson"
},
{
- "drilldown" : "Markus Holzer",
"y" : 2,
+ "drilldown" : "Markus Holzer",
"name" : "Markus Holzer"
},
{
"name" : "Mohammad S Anwar",
"drilldown" : "Mohammad S Anwar",
- "y" : 3
+ "y" : 4
},
{
- "name" : "Myoungjin Jeon",
"y" : 6,
- "drilldown" : "Myoungjin Jeon"
+ "drilldown" : "Myoungjin Jeon",
+ "name" : "Myoungjin Jeon"
},
{
- "drilldown" : "Niels van Dijke",
"y" : 2,
+ "drilldown" : "Niels van Dijke",
"name" : "Niels van Dijke"
},
{
- "y" : 2,
+ "name" : "Nuno Vieira",
"drilldown" : "Nuno Vieira",
- "name" : "Nuno Vieira"
+ "y" : 2
},
{
- "name" : "Pete Houston",
"drilldown" : "Pete Houston",
+ "name" : "Pete Houston",
"y" : 2
},
{
+ "drilldown" : "Roger Bell_West",
"name" : "Roger Bell_West",
- "y" : 5,
- "drilldown" : "Roger Bell_West"
+ "y" : 5
},
{
+ "y" : 2,
"name" : "Shawn Wagner",
- "drilldown" : "Shawn Wagner",
- "y" : 2
+ "drilldown" : "Shawn Wagner"
},
{
"name" : "Simon Green",
@@ -660,31 +644,47 @@
"y" : 3
},
{
- "drilldown" : "Simon Proctor",
"y" : 2,
- "name" : "Simon Proctor"
+ "name" : "Simon Proctor",
+ "drilldown" : "Simon Proctor"
},
{
+ "y" : 2,
"name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke",
- "y" : 2
+ "drilldown" : "Ulrich Rieke"
},
{
- "name" : "Vinod Kumar K",
"drilldown" : "Vinod Kumar K",
+ "name" : "Vinod Kumar K",
"y" : 1
},
{
+ "y" : 3,
"name" : "Walt Mankowski",
- "drilldown" : "Walt Mankowski",
- "y" : 3
+ "drilldown" : "Walt Mankowski"
},
{
"name" : "Wanderdoc",
- "y" : 2,
- "drilldown" : "Wanderdoc"
+ "drilldown" : "Wanderdoc",
+ "y" : 2
}
- ]
+ ],
+ "colorByPoint" : 1,
+ "name" : "Perl Weekly Challenge - 081"
}
- ]
+ ],
+ "chart" : {
+ "type" : "column"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge - 081"
+ },
+ "xAxis" : {
+ "type" : "category"
+ }
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 10dc0c4784..5432f6c72c 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,6 +1,22 @@
{
+ "subtitle" : {
+ "text" : "Last updated at 2020-10-12 00:23:01 GMT"
+ },
"series" : [
{
+ "dataLabels" : {
+ "enabled" : "true",
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ },
+ "format" : "{point.y:.0f}",
+ "rotation" : -90,
+ "color" : "#FFFFFF",
+ "align" : "right",
+ "y" : 10
+ },
+ "name" : "Contributions",
"data" : [
[
"Blog",
@@ -12,42 +28,29 @@
],
[
"Raku",
- 2249
+ 2250
]
- ],
- "name" : "Contributions",
- "dataLabels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "color" : "#FFFFFF",
- "rotation" : -90,
- "enabled" : "true",
- "y" : 10,
- "align" : "right",
- "format" : "{point.y:.0f}"
- }
+ ]
}
],
+ "chart" : {
+ "type" : "column"
+ },
"legend" : {
"enabled" : "false"
},
- "chart" : {
- "type" : "column"
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
},
"yAxis" : {
+ "min" : 0,
"title" : {
"text" : null
- },
- "min" : 0
+ }
},
"title" : {
"text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
},
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
"xAxis" : {
"labels" : {
"style" : {
@@ -56,8 +59,5 @@
}
},
"type" : "category"
- },
- "subtitle" : {
- "text" : "Last updated at 2020-10-11 22:26:06 GMT"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 14152cf74d..0a99cebd5b 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,33 +1,28 @@
{
- "tooltip" : {
- "followPointer" : "true",
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style=\"font-size:11px\"></span>"
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
},
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-10-11 22:26:06 GMT"
+ "title" : {
+ "text" : "Perl Weekly Challenge Language"
},
"xAxis" : {
"type" : "category"
},
- "title" : {
- "text" : "Perl Weekly Challenge Language"
- },
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-10-12 00:23:01 GMT"
},
- "chart" : {
- "type" : "column"
+ "tooltip" : {
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "followPointer" : "true"
},
"drilldown" : {
"series" : [
{
+ "id" : "001",
+ "name" : "001",
"data" : [
[
"Perl",
@@ -41,9 +36,7 @@
"Blog",
11
]
- ],
- "id" : "001",
- "name" : "001"
+ ]
},
{
"data" : [
@@ -60,11 +53,10 @@
10
]
],
- "id" : "002",
- "name" : "002"
+ "name" : "002",
+ "id" : "002"
},
{
- "id" : "003",
"data" : [
[
"Perl",
@@ -79,11 +71,10 @@
9
]
],
- "name" : "003"
+ "name" : "003",
+ "id" : "003"
},
{
- "name" : "004",
- "id" : "004",
"data" : [
[
"Perl",
@@ -97,10 +88,11 @@
"Blog",
10
]
- ]
+ ],
+ "name" : "004",
+ "id" : "004"
},
{
- "name" : "005",
"data" : [
[
"Perl",
@@ -115,10 +107,10 @@
12
]
],
- "id" : "005"
+ "id" : "005",
+ "name" : "005"
},
{
- "name" : "006",
"data" : [
[
"Perl",
@@ -133,7 +125,8 @@
7
]
],
- "id" : "006"
+ "id" : "006",
+ "name" : "006"
},
{
"name" : "007",
@@ -172,7 +165,6 @@
]
},
{
- "id" : "009",
"data" : [
[
"Perl",
@@ -187,9 +179,11 @@
13
]
],
- "name" : "009"
+ "name" : "009",
+ "id" : "009"
},
{
+ "id" : "010",
"name" : "010",
"data" : [
[
@@ -204,8 +198,7 @@
"Blog",
11
]
- ],
- "id" : "010"
+ ]
},
{
"data" : [
@@ -222,11 +215,12 @@
10
]
],
- "id" : "011",
- "name" : "011"
+ "name" : "011",
+ "id" : "011"
},
{
"name" : "012",
+ "id" : "012",
"data" : [
[
"Perl",
@@ -240,11 +234,9 @@
"Blog",
11
]
- ],
- "id" : "012"
+ ]
},
{
- "id" : "013",
"data" : [
[
"Perl",
@@ -259,9 +251,11 @@
13
]
],
+ "id" : "013",
"name" : "013"
},
{
+ "id" : "014",
"name" : "014",
"data" : [
[
@@ -276,11 +270,11 @@
"Blog",
15
]
- ],
- "id" : "014"
+ ]
},
{
"name" : "015",
+ "id" : "015",
"data" : [
[
"Perl",
@@ -294,11 +288,9 @@
"Blog",
15
]
- ],
- "id" : "015"
+ ]
},
{
- "name" : "016",
"data" : [
[
"Perl",
@@ -313,11 +305,10 @@
12
]
],
- "id" : "016"
+ "id" : "016",
+ "name" : "016"
},
{
- "name" : "017",
- "id" : "017",
"data" : [