aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-106/pete-houston/awk/ch-1.awk41
-rw-r--r--challenge-106/pete-houston/perl/ch-1.pl27
-rw-r--r--challenge-106/pete-houston/perl/ch-2.pl62
-rw-r--r--stats/pwc-current.json315
-rw-r--r--stats/pwc-language-breakdown-summary.json68
-rw-r--r--stats/pwc-language-breakdown.json716
-rw-r--r--stats/pwc-leaders.json352
-rw-r--r--stats/pwc-summary-1-30.json122
-rw-r--r--stats/pwc-summary-121-150.json112
-rw-r--r--stats/pwc-summary-151-180.json54
-rw-r--r--stats/pwc-summary-181-210.json38
-rw-r--r--stats/pwc-summary-211-240.json44
-rw-r--r--stats/pwc-summary-31-60.json100
-rw-r--r--stats/pwc-summary-61-90.json100
-rw-r--r--stats/pwc-summary-91-120.json30
-rw-r--r--stats/pwc-summary.json476
16 files changed, 1401 insertions, 1256 deletions
diff --git a/challenge-106/pete-houston/awk/ch-1.awk b/challenge-106/pete-houston/awk/ch-1.awk
new file mode 100644
index 0000000000..2c2972bdd5
--- /dev/null
+++ b/challenge-106/pete-houston/awk/ch-1.awk
@@ -0,0 +1,41 @@
+#!/usr/bin/gawk -f
+#===============================================================================
+#
+# FILE: 10601.awk
+#
+# USAGE: ./10601.awk < infile
+#
+# DESCRIPTION: Output maximum difference between adjacent integers.
+# Input should be a set of integers separated by
+# whitespace (incl. newlines)
+#
+# REQUIREMENTS: Inputs must all be integers otherwise they will be
+# skipped
+# NOTES: Tested on gawk 4.1.1
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 30/03/21
+#===============================================================================
+
+{
+ for (i = 1; i <= NF; i++) {
+ k = NR "." i
+ if (1 == match ($i, /-?[0-9]+/)) {
+ ints[k] = $i
+ }
+ }
+}
+END {
+ asort (ints, s, "@val_num_asc")
+ max = 0
+ last = "z"
+ for (n in s) {
+ if (last != "z") {
+ diff = s[n] - last
+ if (diff > max) { max = diff }
+ }
+ last = s[n]
+ }
+ print "\n" max
+}
diff --git a/challenge-106/pete-houston/perl/ch-1.pl b/challenge-106/pete-houston/perl/ch-1.pl
new file mode 100644
index 0000000000..caa6be7348
--- /dev/null
+++ b/challenge-106/pete-houston/perl/ch-1.pl
@@ -0,0 +1,27 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 10601.pl
+#
+# USAGE: ./10601.pl N [ N ... ]
+#
+# DESCRIPTION: Output maximum difference between adjacent integers.
+#
+# REQUIREMENTS: Arguments must all be integers otherwise they will be
+# skipped
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 29/03/21
+#===============================================================================
+
+use strict;
+use warnings;
+
+my @ints = sort { $a <=> $b } grep { /^-?\d+$/ } @ARGV;
+my $max = 0;
+for my $i (1 .. $#ints) {
+ my $diff = $ints[$i] - $ints[$i - 1];
+ $max = $diff if $diff > $max;
+}
+print "$max\n";
diff --git a/challenge-106/pete-houston/perl/ch-2.pl b/challenge-106/pete-houston/perl/ch-2.pl
new file mode 100644
index 0000000000..00387ab138
--- /dev/null
+++ b/challenge-106/pete-houston/perl/ch-2.pl
@@ -0,0 +1,62 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 10602.pl
+#
+# USAGE: ./10602.pl NUMERATOR DENOMINATOR
+#
+# DESCRIPTION: Print decimal quotient with bracketed recurrences
+#
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 29/03/21
+#===============================================================================
+
+use strict;
+use warnings;
+
+my ($n, $d) = @ARGV;
+die "Infinity\n" unless $d;
+my $q = '' . ($n / $d);
+
+# Look for recurrences in the fractional part
+my ($int, $dec) = split /\./, $q;
+my $maxlen = length ($dec);
+my @recur;
+
+OUTER: for my $charno (1 .. int ($maxlen / 2)) {
+ for my $init (0 .. $charno - 1) {
+ my $pos = $init;
+ my $reps = 0;
+ my $start = $pos;
+ my $pat = substr ($dec, $pos, $charno);
+ while ($pos < $maxlen - 2 * $charno) {
+ $pos += $charno;
+ my $next = substr ($dec, $pos, $charno);
+ if ($next eq $pat) {
+ $reps++;
+ } else {
+ $pat = $next;
+ $start = $pos;
+ $reps = 0;
+ }
+ }
+ if ($reps) {
+ push @recur, { start => $start, reps => $reps, pat => $pat };
+ }
+ }
+}
+
+if (1 < @recur) {
+ @recur = sort {
+ $a->{start} <=> $b->{start}
+ ||
+ $b->{reps} <=> $a->{reps}
+ } @recur;
+}
+if (@recur) {
+ $dec = substr ($dec, 0, $recur[0]->{start}) . "($recur[0]->{pat})";
+
+}
+print "$int.$dec\n";
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index e24c4a7d60..b5fbe65957 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,128 +1,23 @@
{
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
- "legend" : {
- "enabled" : 0
+ "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/>"
},
"title" : {
"text" : "Perl Weekly Challenge - 106"
},
- "xAxis" : {
- "type" : "category"
- },
- "series" : [
- {
- "colorByPoint" : 1,
- "data" : [
- {
- "name" : "Aaron Smith",
- "y" : 3,
- "drilldown" : "Aaron Smith"
- },
- {
- "name" : "Ben Davies",
- "y" : 2,
- "drilldown" : "Ben Davies"
- },
- {
- "name" : "E. Choroba",
- "y" : 2,
- "drilldown" : "E. Choroba"
- },
- {
- "drilldown" : "Flavio Poletti",
- "name" : "Flavio Poletti",
- "y" : 4
- },
- {
- "drilldown" : "James Smith",
- "name" : "James Smith",
- "y" : 2
- },
- {
- "y" : 2,
- "name" : "Jan Krnavek",
- "drilldown" : "Jan Krnavek"
- },
- {
- "y" : 1,
- "name" : "Lance Wicks",
- "drilldown" : "Lance Wicks"
- },
- {
- "y" : 4,
- "name" : "Luca Ferrari",
- "drilldown" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "y" : 2,
- "drilldown" : "Mark Anderson"
- },
- {
- "y" : 1,
- "name" : "Mohammad S Anwar",
- "drilldown" : "Mohammad S Anwar"
- },
- {
- "y" : 2,
- "name" : "Niels van Dijke",
- "drilldown" : "Niels van Dijke"
- },
- {
- "drilldown" : "Peter Mayr",
- "name" : "Peter Mayr",
- "y" : 1
- },
- {
- "drilldown" : "Roger Bell_West",
- "y" : 5,
- "name" : "Roger Bell_West"
- },
- {
- "name" : "Simon Proctor",
- "y" : 1,
- "drilldown" : "Simon Proctor"
- },
- {
- "drilldown" : "Stuart Little",
- "y" : 4,
- "name" : "Stuart Little"
- },
- {
- "drilldown" : "Ulrich Rieke",
- "name" : "Ulrich Rieke",
- "y" : 4
- },
- {
- "drilldown" : "W. Luis Mochan",
- "y" : 3,
- "name" : "W. Luis Mochan"
- }
- ],
- "name" : "Perl Weekly Challenge - 106"
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
}
- ],
- "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/>"
},
- "subtitle" : {
- "text" : "[Champions: 17] Last updated at 2021-04-01 18:39:22 GMT"
+ "xAxis" : {
+ "type" : "category"
},
"drilldown" : {
"series" : [
{
- "name" : "Aaron Smith",
- "id" : "Aaron Smith",
"data" : [
[
"Raku",
@@ -132,7 +27,9 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Aaron Smith",
+ "name" : "Aaron Smith"
},
{
"data" : [
@@ -141,12 +38,12 @@
2
]
],
- "id" : "Ben Davies",
- "name" : "Ben Davies"
+ "name" : "Ben Davies",
+ "id" : "Ben Davies"
},
{
- "name" : "E. Choroba",
"id" : "E. Choroba",
+ "name" : "E. Choroba",
"data" : [
[
"Perl",
@@ -155,8 +52,6 @@
]
},
{
- "id" : "Flavio Poletti",
- "name" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -166,7 +61,9 @@
"Blog",
2
]
- ]
+ ],
+ "name" : "Flavio Poletti",
+ "id" : "Flavio Poletti"
},
{
"data" : [
@@ -175,30 +72,32 @@
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" : "Jan Krnavek"
},
{
+ "id" : "Lance Wicks",
+ "name" : "Lance Wicks",
"data" : [
[
"Perl",
1
]
- ],
- "id" : "Lance Wicks",
- "name" : "Lance Wicks"
+ ]
},
{
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -208,29 +107,27 @@
"Blog",
2
]
- ],
- "name" : "Luca Ferrari",
- "id" : "Luca Ferrari"
+ ]
},
{
+ "id" : "Mark Anderson",
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Mark Anderson",
- "id" : "Mark Anderson"
+ ]
},
{
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar",
"data" : [
[
"Perl",
1
]
- ]
+ ],
+ "id" : "Mohammad S Anwar",
+ "name" : "Mohammad S Anwar"
},
{
"id" : "Niels van Dijke",
@@ -246,15 +143,25 @@
"data" : [
[
"Perl",
- 1
+ 2
]
],
+ "id" : "Pete Houston",
+ "name" : "Pete Houston"
+ },
+ {
+ "name" : "Peter Mayr",
"id" : "Peter Mayr",
- "name" : "Peter Mayr"
+ "data" : [
+ [
+ "Perl",
+ 1
+ ]
+ ]
},
{
- "name" : "Roger Bell_West",
"id" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -277,8 +184,8 @@
1
]
],
- "id" : "Simon Proctor",
- "name" : "Simon Proctor"
+ "name" : "Simon Proctor",
+ "id" : "Simon Proctor"
},
{
"data" : [
@@ -295,8 +202,8 @@
"name" : "Stuart Little"
},
{
- "id" : "Ulrich Rieke",
"name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -309,6 +216,8 @@
]
},
{
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -318,18 +227,124 @@
"Blog",
1
]
- ],
- "id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
+ ]
}
]
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ "subtitle" : {
+ "text" : "[Champions: 18] Last updated at 2021-04-01 18:52:39 GMT"
+ },
+ "series" : [
+ {
+ "data" : [
+ {
+ "y" : 3,
+ "name" : "Aaron Smith",
+ "drilldown" : "Aaron Smith"
+ },
+ {
+ "name" : "Ben Davies",
+ "y" : 2,
+ "drilldown" : "Ben Davies"
+ },
+ {
+ "y" : 2,
+ "name" : "E. Choroba",
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "y" : 4,
+ "name" : "Flavio Poletti",
+ "drilldown" : "Flavio Poletti"
+ },
+ {
+ "name" : "James Smith",
+ "y" : 2,
+ "drilldown" : "James Smith"
+ },
+ {
+ "drilldown" : "Jan Krnavek",
+ "y" : 2,
+ "name" : "Jan Krnavek"
+ },
+ {
+ "drilldown" : "Lance Wicks",
+ "y" : 1,
+ "name" : "Lance Wicks"
+ },
+ {
+ "y" : 4,
+ "name" : "Luca Ferrari",
+ "drilldown" : "Luca Ferrari"
+ },
+ {
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson",
+ "y" : 2
+ },
+ {
+ "name" : "Mohammad S Anwar",
+ "y" : 1,
+ "drilldown" : "Mohammad S Anwar"
+ },
+ {
+ "y" : 2,
+ "name" : "Niels van Dijke",
+ "drilldown" : "Niels van Dijke"
+ },
+ {
+ "name" : "Pete Houston",
+ "y" : 2,
+ "drilldown" : "Pete Houston"
+ },
+ {
+ "name" : "Peter Mayr",
+ "y" : 1,
+ "drilldown" : "Peter Mayr"
+ },
+ {
+ "drilldown" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
+ "y" : 5
+ },
+ {
+ "drilldown" : "Simon Proctor",
+ "y" : 1,
+ "name" : "Simon Proctor"
+ },
+ {
+ "drilldown" : "Stuart Little",
+ "name" : "Stuart Little",
+ "y" : 4
+ },
+ {
+ "y" : 4,
+ "name" : "Ulrich Rieke",
+ "drilldown" : "Ulrich Rieke"
+ },
+ {
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan",
+ "y" : 3
+ }
+ ],
+ "colorByPoint" : 1,
+ "name" : "Perl Weekly Challenge - 106"
+ }
+ ],
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
}
},
"chart" : {
"type" : "column"
+ },
+ "legend" : {
+ "enabled" : 0
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 6d16d19392..45e157d416 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,12 +1,42 @@
{
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
+ },
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
+ }
+ },
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ }
+ },
"subtitle" : {
- "text" : "Last updated at 2021-04-01 18:39:22 GMT"
+ "text" : "Last updated at 2021-04-01 18:52:39 GMT"
},
"series" : [
{
+ "dataLabels" : {
+ "align" : "right",
+ "rotation" : -90,
+ "color" : "#FFFFFF",
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "enabled" : "true",
+ "y" : 10,
+ "format" : "{point.y:.0f}"
+ },
"data" : [
[
"Blog",
@@ -14,50 +44,20 @@
],
[
"Perl",
- 4972
+ 4974
],
[
"Raku",
3178
]
],
- "dataLabels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- },
- "enabled" : "true",
- "color" : "#FFFFFF",
- "rotation" : -90,
- "align" : "right",
- "format" : "{point.y:.0f}",
- "y" : 10
- },
"name" : "Contributions"
}
],
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- }
- },
- "title" : {
- "text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
- },
- "legend" : {
- "enabled" : "false"
- },
"chart" : {
"type" : "column"
},
- "yAxis" : {
- "title" : {
- "text" : null
- },
- "min" : 0
+ "legend" : {
+ "enabled" : "false"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index ec69186e6c..780ac91d5a 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,4 +1,15 @@
{
+ "title" : {
+ "text" : "Perl Weekly Challenge Language"
+ },
+ "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"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
"drilldown" : {
"series" : [
{
@@ -38,6 +49,8 @@
"id" : "002"
},
{
+ "name" : "003",
+ "id" : "003",
"data" : [
[
"Perl",
@@ -51,9 +64,7 @@
"Blog",
9
]
- ],
- "name" : "003",
- "id" : "003"
+ ]
},
{
"data" : [
@@ -70,12 +81,10 @@
10
]
],
- "name" : "004",
- "id" : "004"
+ "id" : "004",
+ "name" : "004"
},
{
- "id" : "005",
- "name" : "005",
"data" : [
[
"Perl",
@@ -89,11 +98,13 @@
"Blog",
12
]
- ]
+ ],
+ "name" : "005",
+ "id" : "005"
},
{
- "name" : "006",
"id" : "006",
+ "name" : "006",
"data" : [
[
"Perl",
@@ -110,6 +121,8 @@
]
},
{
+ "id" : "007",
+ "name" : "007",
"data" : [
[
"Perl",
@@ -123,13 +136,9 @@
"Blog",
10
]
- ],
- "name" : "007",
- "id" : "007"
+ ]
},
{
- "name" : "008",
- "id" : "008",
"data" : [
[
"Perl",
@@ -143,11 +152,13 @@
"Blog",
12
]
- ]
+ ],
+ "name" : "008",
+ "id" : "008"
},
{
- "id" : "009",
"name" : "009",
+ "id" : "009",
"data" : [
[
"Perl",
@@ -178,10 +189,12 @@
11
]
],
- "id" : "010",
- "name" : "010"
+ "name" : "010",
+ "id" : "010"
},
{
+ "name" : "011",
+ "id" : "011",
"data" : [
[
"Perl",
@@ -195,9 +208,7 @@
"Blog",
10
]
- ],
- "id" : "011",
- "name" : "011"
+ ]
},
{
"data" : [
@@ -218,6 +229,8 @@
"id" : "012"
},
{
+ "name" : "013",
+ "id" : "013",
"data" : [
[
"Perl",
@@ -231,9 +244,7 @@
"Blog",
13
]
- ],
- "id" : "013",
- "name" : "013"
+ ]
},
{
"data" : [
@@ -250,8 +261,8 @@
15
]
],
- "name" : "014",
- "id" : "014"
+ "id" : "014",
+ "name" : "014"
},
{
"data" : [
@@ -272,8 +283,8 @@
"name" : "015"
},
{
- "name" : "016",
"id" : "016",
+ "name" : "016",
"data" : [
[
"Perl",
@@ -308,6 +319,8 @@
"id" : "017"
},
{
+ "id" : "018",
+ "name" : "018",
"data" : [
[
"Perl",
@@ -321,13 +334,9 @@
"Blog",
14
]
- ],
- "id" : "018",
- "name" : "018"
+ ]
},
{
- "name" : "019",
- "id" : "019",
"data" : [
[
"Perl",
@@ -341,9 +350,13 @@
"Blog",
13
]
- ]
+ ],
+ "id" : "019",
+ "name" : "019"
},
{
+ "name" : "020",
+ "id" : "020",
"data" : [
[
"Perl",
@@ -357,9 +370,7 @@
"Blog",
13
]
- ],
- "name" : "020",
- "id" : "020"
+ ]
},
{
"data" : [
@@ -380,8 +391,6 @@
"name" : "021"
},
{
- "id" : "022",
- "name" : "022",
"data" : [
[
"Perl",
@@ -395,11 +404,13 @@
"Blog",
10
]
- ]
+ ],
+ "name" : "022",
+ "id" : "022"
},
{
- "name" : "023",
"id" : "023",
+ "name" : "023",
"data" : [
[
"Perl",
@@ -416,8 +427,6 @@
]
},
{
- "id" : "024",
- "name" : "024",
"data" : [
[
"Perl",
@@ -431,7 +440,9 @@
"Blog",
11
]
- ]
+ ],
+ "id" : "024",
+ "name" : "024"
},
{
"name" : "025",
@@ -452,8 +463,6 @@
]
},
{
- "name" : "026",
- "id" : "026",
"data" : [
[
"Perl",
@@ -467,9 +476,13 @@
"Blog",
10
]
- ]
+ ],
+ "name" : "026",
+ "id" : "026"
},
{
+ "id" : "027",
+ "name" : "027",
"data" : [
[
"Perl",
@@ -483,13 +496,9 @@
"Blog",
9
]
- ],
- "id" : "027",
- "name" : "027"
+ ]
},
{
- "name" : "028",
- "id" : "028",
"data" : [
[
"Perl",
@@ -503,7 +512,9 @@
"Blog",
9
]
- ]
+ ],
+ "id" : "028",
+ "name" : "028"
},
{
"id" : "029",
@@ -524,8 +535,8 @@
]
},
{
- "id" : "030",
"name" : "030",
+ "id" : "030",
"data" : [
[
"Perl",
@@ -560,6 +571,8 @@
]
},
{
+ "id" : "032",
+ "name" : "032",
"data" : [
[
"Perl",
@@ -573,13 +586,9 @@
"Blog",
10
]
- ],
- "name" : "032",
- "id" : "032"
+ ]
},
{
- "id" : "033",
- "name" : "033",
"data" : [
[
"Perl",
@@ -593,11 +602,13 @@
"Blog",
10
]
- ]
+ ],
+ "id" : "033",
+ "name" : "033"
},
{
- "name" : "034",
"id" : "034",
+ "name" : "034",
"data" : [
[
"Perl",
@@ -614,6 +625,8 @@
]
},
{
+ "name" : "035",
+ "id" : "035",
"data" : [
[
"Perl",
@@ -627,11 +640,11 @@
"Blog",
9
]
- ],
- "id" : "035",
- "name" : "035"
+ ]
},
{
+ "id" : "036",
+ "name" : "036",
"data" : [
[
"Perl",
@@ -645,9 +658,7 @@
"Blog",
11
]
- ],
- "name" : "036",
- "id" : "036"
+ ]
},
{
"data" : [
@@ -668,6 +679,8 @@
"id" : "037"
},
{
+ "id" : "038",
+ "name" : "038",
"data" : [
[
"Perl",
@@ -681,11 +694,11 @@
"Blog",
12
]
- ],
- "name" : "038",
- "id" : "038"
+ ]
},
{
+ "name" : "039",
+ "id" : "039",
"data" : [
[
"Perl",
@@ -699,13 +712,9 @@