aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-226/laurent-rosenfeld/blog1.txt1
-rw-r--r--challenge-226/laurent-rosenfeld/perl/ch-2.pl13
-rw-r--r--challenge-226/laurent-rosenfeld/raku/ch-2.raku8
-rw-r--r--challenge-226/robert-dicicco/julia/ch-1.jl57
-rw-r--r--challenge-226/robert-dicicco/python/ch-1.py48
-rw-r--r--stats/pwc-current.json359
-rw-r--r--stats/pwc-language-breakdown-summary.json62
-rw-r--r--stats/pwc-language-breakdown.json1542
-rw-r--r--stats/pwc-leaders.json402
-rw-r--r--stats/pwc-summary-1-30.json40
-rw-r--r--stats/pwc-summary-121-150.json100
-rw-r--r--stats/pwc-summary-151-180.json42
-rw-r--r--stats/pwc-summary-181-210.json54
-rw-r--r--stats/pwc-summary-211-240.json46
-rw-r--r--stats/pwc-summary-241-270.json32
-rw-r--r--stats/pwc-summary-271-300.json94
-rw-r--r--stats/pwc-summary-31-60.json48
-rw-r--r--stats/pwc-summary-61-90.json118
-rw-r--r--stats/pwc-summary-91-120.json96
-rw-r--r--stats/pwc-summary.json638
20 files changed, 1971 insertions, 1829 deletions
diff --git a/challenge-226/laurent-rosenfeld/blog1.txt b/challenge-226/laurent-rosenfeld/blog1.txt
new file mode 100644
index 0000000000..e30d972808
--- /dev/null
+++ b/challenge-226/laurent-rosenfeld/blog1.txt
@@ -0,0 +1 @@
+https://blogs.perl.org/users/laurent_r/2023/07/perl-weekly-challenge-226-zero-array.html
diff --git a/challenge-226/laurent-rosenfeld/perl/ch-2.pl b/challenge-226/laurent-rosenfeld/perl/ch-2.pl
new file mode 100644
index 0000000000..f7a31393b1
--- /dev/null
+++ b/challenge-226/laurent-rosenfeld/perl/ch-2.pl
@@ -0,0 +1,13 @@
+use strict;
+use warnings;
+use feature 'say';
+
+sub number_operations {
+ my %ints = map { $_ => 1} grep $_ > 0, @_;
+ return scalar %ints;
+}
+
+for my $test ([<1 5 0 3 5>], [(0,)], [<2 1 4 0 3>]) {
+ printf "%-10s => ", "@$test";
+ say number_operations @$test;
+}
diff --git a/challenge-226/laurent-rosenfeld/raku/ch-2.raku b/challenge-226/laurent-rosenfeld/raku/ch-2.raku
new file mode 100644
index 0000000000..db975fcec4
--- /dev/null
+++ b/challenge-226/laurent-rosenfeld/raku/ch-2.raku
@@ -0,0 +1,8 @@
+sub number-operations (@ints) {
+ return @ints.grep({$_ > 0}).unique.elems;
+}
+
+for <1 5 0 3 5>, (0,), <2 1 4 0 3> -> @test {
+ printf "%-10s => ", "@test[]";
+ say number-operations @test;
+}
diff --git a/challenge-226/robert-dicicco/julia/ch-1.jl b/challenge-226/robert-dicicco/julia/ch-1.jl
new file mode 100644
index 0000000000..aacee06eaa
--- /dev/null
+++ b/challenge-226/robert-dicicco/julia/ch-1.jl
@@ -0,0 +1,57 @@
+#!/usr/bin/env julia
+#=
+--------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-07-19
+Challenge 226 Task 1 Shuffle String ( Julia )
+--------------------------------------
+=#
+using Printf
+
+strings = ["lacelengh", "rulepark"]
+indices = [[3,2,0,5,4,8,6,7,1],[4,7,3,1,0,5,2,6]]
+offset = 1
+cnt = 1
+
+
+for string in strings
+ global offset, cnt
+
+ letters = Dict()
+ ln = length(string)
+ ndx = indices[offset]
+ offset += 1
+ @printf("Input: \$string = %s, @indices = %s\n",string, ndx)
+
+ while cnt <= ln
+ letter = SubString(string, cnt, cnt)
+ x = ndx[cnt]
+ letters[x] = letter
+ cnt += 1
+ end
+
+ cnt = 0
+ @printf("Output: ");
+ while cnt < ln
+ @printf("%s",letters[cnt])
+ cnt += 1
+ end
+ println("\n\n")
+ #offset = 1
+ cnt = 1
+end
+
+#=
+--------------------------------------
+SAMPLE OUTPUT
+julia .\ShuffleString.jl
+
+Input: $string = lacelengh, @indices = [3, 2, 0, 5, 4, 8, 6, 7, 1]
+Output: challenge
+
+Input: $string = rulepark, @indices = [4, 7, 3, 1, 0, 5, 2, 6]
+Output: perlraku
+--------------------------------------
+=#
+
+
diff --git a/challenge-226/robert-dicicco/python/ch-1.py b/challenge-226/robert-dicicco/python/ch-1.py
new file mode 100644
index 0000000000..3165ac0efb
--- /dev/null
+++ b/challenge-226/robert-dicicco/python/ch-1.py
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+'''
+--------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-07-19
+Challenge 226 Task 1 Shuffle String ( Python )
+--------------------------------------
+'''
+strings = ["lacelengh", "rulepark"]
+indices = [[3,2,0,5,4,8,6,7,1],[4,7,3,1,0,5,2,6]]
+
+offset = 0
+cnt = 0
+
+
+for str in strings:
+ ndx = indices[offset]
+ print(f"Input: $string = {str}, @indices = {indices[offset]}")
+ cnt = 0
+ ln = len(str)
+ letters = dict()
+ while cnt < ln:
+ letter = str[cnt:cnt+1]
+ x = ndx[cnt]
+ letters[x] = letter
+ cnt += 1
+ cnt = 0
+ print("Output: ", end="");
+ while cnt < ln:
+ print(letters[cnt], end="")
+ cnt += 1
+ print("\n")
+ offset += 1
+
+'''
+--------------------------------------
+SAMPLE OUTPUT
+python .\ShuffleString.py
+
+Input: $string = lacelengh, @indices = [3, 2, 0, 5, 4, 8, 6, 7, 1]
+Output: challenge
+
+Input: $string = rulepark, @indices = [4, 7, 3, 1, 0, 5, 2, 6]
+Output: perlraku
+--------------------------------------
+'''
+
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index b67be615e2..876ae160ab 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,127 +1,4 @@
{
- "chart" : {
- "type" : "column"
- },
- "title" : {
- "text" : "The Weekly Challenge - 226"
- },
- "subtitle" : {
- "text" : "[Champions: 20] Last updated at 2023-07-18 20:06:19 GMT"
- },
- "legend" : {
- "enabled" : 0
- },
- "xAxis" : {
- "type" : "category"
- },
- "series" : [
- {
- "name" : "The Weekly Challenge - 226",
- "data" : [
- {
- "name" : "Adriaan Dens",
- "y" : 2,
- "drilldown" : "Adriaan Dens"
- },
- {
- "name" : "Andreas Voegele",
- "y" : 2,
- "drilldown" : "Andreas Voegele"
- },
- {
- "name" : "Arne Sommer",
- "y" : 3,
- "drilldown" : "Arne Sommer"
- },
- {
- "name" : "Dave Jacoby",
- "drilldown" : "Dave Jacoby",
- "y" : 3
- },
- {
- "y" : 2,
- "drilldown" : "David Ferrone",
- "name" : "David Ferrone"
- },
- {
- "y" : 5,
- "drilldown" : "Jaldhar H. Vyas",
- "name" : "Jaldhar H. Vyas"
- },
- {
- "drilldown" : "Laurent Rosenfeld",
- "y" : 3,
- "name" : "Laurent Rosenfeld"
- },
- {
- "y" : 2,
- "drilldown" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
- },
- {
- "drilldown" : "Luca Ferrari",
- "y" : 8,
- "name" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson",
- "y" : 2
- },
- {
- "name" : "Niels van Dijke",
- "y" : 2,
- "drilldown" : "Niels van Dijke"
- },
- {
- "drilldown" : "Packy Anderson",
- "y" : 4,
- "name" : "Packy Anderson"
- },
- {
- "y" : 3,
- "drilldown" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith"
- },
- {
- "drilldown" : "PokGoPun",
- "y" : 2,
- "name" : "PokGoPun"
- },
- {
- "drilldown" : "Robbie Hatley",
- "y" : 3,
- "name" : "Robbie Hatley"
- },
- {
- "drilldown" : "Robert DiCicco",
- "y" : 2,
- "name" : "Robert DiCicco"
- },
- {
- "drilldown" : "Roger Bell_West",
- "y" : 4,
- "name" : "Roger Bell_West"
- },
- {
- "name" : "Steven Wilson",
- "y" : 1,
- "drilldown" : "Steven Wilson"
- },
- {
- "name" : "Ulrich Rieke",
- "y" : 4,
- "drilldown" : "Ulrich Rieke"
- },
- {
- "drilldown" : "W. Luis Mochan",
- "y" : 3,
- "name" : "W. Luis Mochan"
- }
- ],
- "colorByPoint" : 1
- }
- ],
"drilldown" : {
"series" : [
{
@@ -135,17 +12,18 @@
"id" : "Adriaan Dens"
},
{
+ "name" : "Andreas Voegele",
"id" : "Andreas Voegele",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Andreas Voegele"
+ ]
},
{
"name" : "Arne Sommer",
+ "id" : "Arne Sommer",
"data" : [
[
"Raku",
@@ -155,11 +33,21 @@
"Blog",
1
]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
],
- "id" : "Arne Sommer"
+ "name" : "Bob Lied",
+ "id" : "Bob Lied"
},
{
"name" : "Dave Jacoby",
+ "id" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -169,20 +57,20 @@
"Blog",
1
]
- ],
- "id" : "Dave Jacoby"
+ ]
},
{
- "id" : "David Ferrone",
"data" : [
[
"Perl",
2
]
],
- "name" : "David Ferrone"
+ "name" : "David Ferrone",
+ "id" : "David Ferrone"
},
{
+ "id" : "Jaldhar H. Vyas",
"name" : "Jaldhar H. Vyas",
"data" : [
[
@@ -197,39 +85,37 @@
"Blog",
1
]
- ],
- "id" : "Jaldhar H. Vyas"
+ ]
},
{
+ "name" : "Laurent Rosenfeld",
"id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
- 1
+ 2
],
[
"Raku",
- 1
+ 2
],
[
"Blog",
- 1
+ 2
]
- ],
- "name" : "Laurent Rosenfeld"
+ ]
},
{
- "name" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
],
+ "name" : "Lubos Kolouch",
"id" : "Lubos Kolouch"
},
{
- "name" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -240,17 +126,18 @@
6
]
],
- "id" : "Luca Ferrari"
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari"
},
{
+ "name" : "Mark Anderson",
"id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Mark Anderson"
+ ]
},
{
"data" : [
@@ -259,11 +146,10 @@
2
]
],
- "name" : "Niels van Dijke",
- "id" : "Niels van Dijke"
+ "id" : "Niels van Dijke",
+ "name" : "Niels van Dijke"
},
{
- "name" : "Packy Anderson",
"data" : [
[
"Perl",
@@ -274,11 +160,10 @@
2
]
],
+ "name" : "Packy Anderson",
"id" : "Packy Anderson"
},
{
- "id" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -288,17 +173,19 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Peter Campbell Smith",
+ "id" : "Peter Campbell Smith"
},
{
+ "id" : "PokGoPun",
"name" : "PokGoPun",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "PokGoPun"
+ ]
},
{
"id" : "Robbie Hatley",
@@ -315,7 +202,6 @@
]
},
{
- "name" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -326,10 +212,10 @@
1
]
],
- "id" : "Robert DiCicco"
+ "id" : "Robert DiCicco",
+ "name" : "Robert DiCicco"
},
{
- "id" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -340,21 +226,20 @@
2
]
],
+ "id" : "Roger Bell_West",
"name" : "Roger Bell_West"
},
{
+ "name" : "Steven Wilson",
+ "id" : "Steven Wilson",
"data" : [
[
"Perl",
1
]
- ],
- "name" : "Steven Wilson",
- "id" : "Steven Wilson"
+ ]
},
{
- "id" : "Ulrich Rieke",
- "name" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -364,9 +249,13 @@
"Raku",
2
]
- ]
+ ],
+ "name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke"
},
{
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -376,29 +265,155 @@
"Blog",
1
]
- ],
- "name" : "W. Luis Mochan",
- "id" : "W. Luis Mochan"
+ ]
}
]
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
+ "title" : {
+ "text" : "The Weekly Challenge - 226"
+ },
+ "xAxis" : {
+ "type" : "category"
},
"plotOptions" : {
"series" : {
+ "borderWidth" : 0,
"dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
}
},
+ "subtitle" : {
+ "text" : "[Champions: 21] Last updated at 2023-07-20 09:29:43 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/>"
+ "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/>"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "series" : [
+ {
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 226",
+ "data" : [
+ {
+ "y" : 2,
+ "drilldown" : "Adriaan Dens",
+ "name" : "Adriaan Dens"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Andreas Voegele",
+ "name" : "Andreas Voegele"
+ },
+ {
+ "y" : 3,
+ "drilldown" : "Arne Sommer",
+ "name" : "Arne Sommer"
+ },
+ {
+ "drilldown" : "Bob Lied",
+ "y" : 2,
+ "name" : "Bob Lied"
+ },
+ {
+ "name" : "Dave Jacoby",
+ "drilldown" : "Dave Jacoby",
+ "y" : 3
+ },
+ {
+ "name" : "David Ferrone",
+ "drilldown" : "David Ferrone",
+ "y" : 2
+ },
+ {
+ "name" : "Jaldhar H. Vyas",
+ "y" : 5,
+ "drilldown" : "Jaldhar H. Vyas"
+ },
+ {
+ "y" : 6,
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch",
+ "y" : 2
+ },
+ {
+ "name" : "Luca Ferrari",
+ "y" : 8,
+ "drilldown" : "Luca Ferrari"
+ },
+ {
+ "name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Niels van Dijke",
+ "y" : 2,
+ "name" : "Niels van Dijke"
+ },
+ {
+ "name" : "Packy Anderson",
+ "y" : 4,
+ "drilldown" : "Packy Anderson"
+ },
+ {
+ "name" : "Peter Campbell Smith",
+ "drilldown" : "Peter Campbell Smith",
+ "y" : 3
+ },
+ {
+ "name" : "PokGoPun",
+ "y" : 2,
+ "drilldown" : "PokGoPun"
+ },
+ {
+ "name" : "Robbie Hatley",
+ "drilldown" : "Robbie Hatley",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Robert DiCicco",
+ "y" : 2,
+ "name" : "Robert DiCicco"
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
+ },
+ {
+ "name" : "Steven Wilson",
+ "drilldown" : "Steven Wilson",
+ "y" : 1
+ },
+ {
+ "drilldown" : "Ulrich Rieke",
+ "y" : 4,
+ "name" : "Ulrich Rieke"
+ },
+ {
+ "y" : 3,
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
+ }
+ ]
+ }
+ ],
+ "chart" : {
+ "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 643bd18014..2cf7ae38b5 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,63 +1,63 @@
{
- "yAxis" : {
- "title" : {
- "text" : null
- },
- "min" : 0
- },
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
- "chart" : {
- "type" : "column"
+ "subtitle" : {
+ "text" : "Last updated at 2023-07-20 09:29:43 GMT"
},
"xAxis" : {
+ "type" : "category",
"labels" : {
"style" : {
"fontFamily" : "Verdana, sans-serif",
"fontSize" : "13px"
}
- },
- "type" : "category"
+ }
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2023]"
},
"series" : [
{
- "dataLabels" : {
- "y" : 10,
- "rotation" : -90,
- "align" : "right",
- "color" : "#FFFFFF",
- "format" : "{point.y:.0f}",
- "enabled" : "true",
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- },
+ "name" : "Contributions",
"data" : [
[
"Blog",
- 3755
+ 3756
],
[
"Perl",
- 11551
+ 11554
],
[
"Raku",
- 6646
+ 6647
]
],
- "name" : "Contributions"
+ "dataLabels" : {
+ "enabled" : "true",
+ "rotation" : -90,
+ "align" : "right",
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "y" : 10,
+ "format" : "{point.y:.0f}",
+ "color" : "#FFFFFF"
+ }
}
],
+ "chart" : {
+ "type" : "column"
+ },
"legend" : {
"enabled" : "false"
},
- "subtitle" : {
- "text" : "Last updated at 2023-07-18 20:06:19 GMT"
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2023]"
+ "yAxis" : {
+ "title" : {
+ "text" : null
+ },
+ "min" : 0
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 9f4abea264..d7f68afc62 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,22 +1,9 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
"drilldown" : {
"series" : [
{
"name" : "001",
+ "id" : "001",
"data" : [
[
"Perl",
@@ -30,8 +17,7 @@
"Blog",
11
]
- ],
- "id" : "001"
+ ]
},
{
"data" : [
@@ -48,12 +34,10 @@
10
]
],
- "name" : "002",
- "id" : "002"
+ "id" : "002",
+ "name" : "002"
},
{
- "id" : "003",
- "name" : "003",
"data" : [
[
"Perl",
@@ -67,9 +51,13 @@
"Blog",
9
]
- ]
+ ],
+ "name" : "003",
+ "id" : "003"
},
{
+ "name" : "004",
+ "id" : "004",
"data" : [
[
"Perl",
@@ -83,11 +71,11 @@
"Blog",
10
]
- ],
- "name" : "004",
- "id" : "004"
+ ]
},
{
+ "name" : "005",
+ "id" : "005",
"data" : [
[
"Perl",
@@ -101,12 +89,9 @@
"Blog",
12
]
- ],
- "name" : "005",
- "id" : "005"
+ ]
},
{
- "name" : "006",
"data" : [
[
"Perl",
@@ -121,10 +106,12 @@
7
]
],
- "id" : "006"
+ "id" : "006",
+ "name" : "006"
},
{
"name" : "007",
+ "id" : "007",
"data" : [
[
"Perl",
@@ -138,10 +125,10 @@
"Blog",
10
]
- ],
- "id" : "007"
+ ]
},
{
+ "id" : "008",
"name" : "008",
"data" : [
[
@@ -156,8 +143,7 @@
"Blog",
12
]
- ],
- "id" : "008"
+ ]
},
{
"data" : [
@@ -174,11 +160,10 @@
13
]
],
- "name" : "009",
- "id" : "009"
+ "id" : "009",
+ "name" : "009"
},
{
- "id" : "010",
"data" : [
[
"Perl",
@@ -193,10 +178,10 @@
11
]
],
+ "id" : "010",
"name" : "010"
},
{
- "name" : "011",
"data" : [
[
"Perl",
@@ -211,10 +196,12 @@
10
]
],
+ "name" : "011",
"id" : "011"
},
{
"id" : "012",
+ "name" : "012",
"data" : [
[
"Perl",
@@ -228,11 +215,9 @@
"Blog",
11
]
- ],
- "name" : "012"
+ ]
},
{
- "name" : "013",
"data" : [
[
"Perl",
@@ -247,10 +232,12 @@
13
]
],
- "id" : "013"
+ "id" : "013",
+ "name" : "013"
},
{
"id" : "014",
+ "name" : "014",
"data" : [
[
"Perl",
@@ -264,10 +251,11 @@
"Blog",
15
]
- ],
- "name" : "014"
+ ]
},
{
+ "name" : "015",
+ "id" : "015",
"data" : [
[
"Perl",
@@ -281,12 +269,11 @@
"Blog",
15
]
- ],
- "name" : "015",
- "id" : "015"
+ ]
},
{
"name" : "016",
+ "id" : "016",
"data" : [
[
"Perl",
@@ -300,10 +287,10 @@
"Blog",
13
]
- ],
- "id" : "016"
+ ]
},
{
+ "name" : "017",
"id" : "017",
"data" : [
[
@@ -318,11 +305,11 @@
"Blog",
12
]
- ],
- "name" : "017"
+ ]
},
{
"name" : "018",
+ "id" : "018",
"data" : [
[
"Perl",
@@ -336,11 +323,9 @@
"Blog",
14
]
- ],
- "id" : "018"
+ ]
},
{
- "name" : "019",
"data" : [
[
"Perl",
@@ -355,10 +340,10 @@
13
]
],
- "id" : "019"
+ "id" : "019",
+ "name" : "019"
},
{
- "id" : "020",
"data" : [
[
"Perl",
@@ -373,11 +358,10 @@
13
]
],
+ "id" : "020",
"name" : "020"
},
{