diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2022-11-14 01:27:21 +0000 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2022-11-14 01:27:21 +0000 |
| commit | 06395aba4c73d5760a578d0ae6d158939fa81f0e (patch) | |
| tree | 0891605406c524848d9883454e5bf269375a79cb | |
| parent | f33320ee32afd3c059a493650fd753c05113a857 (diff) | |
| download | perlweeklychallenge-club-06395aba4c73d5760a578d0ae6d158939fa81f0e.tar.gz perlweeklychallenge-club-06395aba4c73d5760a578d0ae6d158939fa81f0e.tar.bz2 perlweeklychallenge-club-06395aba4c73d5760a578d0ae6d158939fa81f0e.zip | |
- Added solutions by Colin Crain.
| -rw-r--r-- | challenge-190/colin-crain/blog.txt | 1 | ||||
| -rwxr-xr-x | challenge-190/colin-crain/perl/ch-1.pl | 69 | ||||
| -rwxr-xr-x | challenge-190/colin-crain/perl/ch-2.pl | 139 | ||||
| -rw-r--r-- | stats/pwc-current.json | 249 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 56 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 1234 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 724 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 102 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 122 | ||||
| -rw-r--r-- | stats/pwc-summary-151-180.json | 104 | ||||
| -rw-r--r-- | stats/pwc-summary-181-210.json | 122 | ||||
| -rw-r--r-- | stats/pwc-summary-211-240.json | 100 | ||||
| -rw-r--r-- | stats/pwc-summary-241-270.json | 104 | ||||
| -rw-r--r-- | stats/pwc-summary-271-300.json | 50 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 98 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 32 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 106 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 46 |
18 files changed, 1843 insertions, 1615 deletions
diff --git a/challenge-190/colin-crain/blog.txt b/challenge-190/colin-crain/blog.txt new file mode 100644 index 0000000000..d8782d9be9 --- /dev/null +++ b/challenge-190/colin-crain/blog.txt @@ -0,0 +1 @@ +https://colincrain.com/2022/11/14/where-do-we-put-the-walls diff --git a/challenge-190/colin-crain/perl/ch-1.pl b/challenge-190/colin-crain/perl/ch-1.pl new file mode 100755 index 0000000000..5e8cc2a135 --- /dev/null +++ b/challenge-190/colin-crain/perl/ch-1.pl @@ -0,0 +1,69 @@ +#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# capital-idea.pl
+#
+# Capital Detection
+# Submitted by: Mohammad S Anwar
+# You are given a string with alphabetic characters only:
+# A..Z and a..z.
+#
+# Write a script to find out if the usage of Capital is appropriate
+# if it satisfies at least one of the following rules:
+#
+# 1) Only first letter is capital and all others are small.
+# 2) Every letter is small.
+# 3) Every letter is capital.
+#
+# Example 1
+# Input: $s = 'Perl'
+# Output: 1
+#
+# Example 2
+# Input: $s = 'TPF'
+# Output: 1
+#
+# Example 3
+# Input: $s = 'PyThon'
+# Output: 0
+#
+# Example 4
+# Input: $s = 'raku'
+# Output: 1
+#
+#
+# method;
+# the rules, streamlined:
+# - if first letter is capital:
+# - all others must be
+# - or no others must be
+# - else (first letter is not capital and)
+# no other is capital
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+
+sub valdate_capitalization ( $str ) {
+ $str =~ /^[A-Z]([A-Z]*$|[a-z]*$)|^[a-z]+$/
+ ? 1
+ : 0 ;
+}
+
+
+use Test::More;
+
+is valdate_capitalization( 'Perl' ), 1, 'ex-1';
+is valdate_capitalization( 'TPF' ), 1, 'ex-2';
+is valdate_capitalization( 'PyTHon' ), 0, 'ex-3';
+is valdate_capitalization( 'raku' ), 1, 'ex-4';
+
+done_testing();
diff --git a/challenge-190/colin-crain/perl/ch-2.pl b/challenge-190/colin-crain/perl/ch-2.pl new file mode 100755 index 0000000000..cf58224313 --- /dev/null +++ b/challenge-190/colin-crain/perl/ch-2.pl @@ -0,0 +1,139 @@ +#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# partition-code.pl
+#
+# Decoded List
+# Submitted by: Mohammad S Anwar
+#
+# You are given an encoded string consisting of a sequence of
+# numeric characters: 0..9, $s.
+#
+# Write a script to find the all valid different decodings in
+# sorted order.
+#
+# Encoding is simply done by mapping A,B,C,D,… to 1,2,3,4,… etc.
+#
+# Example 1
+#
+# Input: $s = 11
+# Output: AA, K
+#
+# 11 can be decoded as (1 1) or (11) i.e. AA or K
+#
+# Example 2
+#
+# Input: $s = 1115
+# Output: AAAE, AAO, AKE, KAE, KO
+#
+# Possible decoded data are:
+# (1 1 1 5) => (AAAE)
+# (1 1 15) => (AAO)
+# (1 11 5) => (AKE)
+# (11 1 5) => (KAE)
+# (11 15) => (KO)
+#
+# Example 3
+#
+# Input: $s = 127
+# Output: ABG, LG
+#
+# Possible decoded data are:
+# (1 2 7) => (ABG)
+# (12 7) => (LG)
+
+# method:
+#
+# Combinatorically speaking, I'm not sure what the correct term
+# is for the ordered partioning a string like this, but the
+# mathematics behind it are actually pretty simple. Each new
+# character considered has only two choices available to it:
+# either to be included in the previous partition, if any, or
+# become the start of a new partition. Both outcomes, resulting
+# in two differing partition patterns, is also an option. This
+# constant bifurcation produces n^2 possibilities. The first
+# character, though, only has one option, an must initiate a
+# new partition. Thus the final count of all possible
+# partitionings is
+#
+# (n-1)^2
+#
+# However we will not need ot consider all of these, as we are
+# restrained by the fact that valid patitions can only produce
+# the integer values in the range 1 to 26, mapping the complete
+# alphabet.
+#
+# Thus each partition can only be of length 1 or 2 digits, and
+# should it have two, the first digit can only be 1 or 2. If we
+# put in a condition to check this before constructing these
+# options we can dramatically reduce the number of partition
+# patterns, making even very large code blocks to be sorted.
+
+# A special case must be made for 0, as no letter will map to
+# it in itself but it will required to compose the code numbers
+# 10 and 20. This number can only be concatenated on recursion,
+# resulting in a single case. If it can only form numbers
+# greater than 20 it will neither trigger a new decoded letter
+# as itself or as a compound and will ultimately be ignored.
+
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+## example: 24,000 partitionings possible
+my $out = decode_partitions( "1563152118195912152252515211923552095");
+
+
+
+sub decode_partitions ( $num ) {
+ ## 1 => A, 2 => b, 3 => C, ...
+ my %decode;
+ @decode{ 1..26 } = ("A".."Z");
+
+ for my $part ( extract_partitions( $num )->@* ) {
+ say map {$decode{$_}} $part->@*;
+ }
+}
+
+sub extract_partitions ( $num ) {
+ my $groupings = [];
+
+ ## the first partition is always the first character. It may grow later.
+ my @parts = substr $num, 0, 1, '';
+ _recurse( $num, $groupings, @parts );
+
+ sub _recurse ( $digits, $groupings, @parts ) {
+ if ( length $digits == 0 ) {
+ push $groupings->@*, \@parts;
+ return;
+ }
+
+ my $prev = $parts[-1];
+ my $new = substr($digits, 0, 1);
+
+ ## case make new partition
+ if ( $new != 0 ) {
+ _recurse( substr($digits, 1),
+ $groupings,
+ (@parts, $new) );
+ }
+
+ ## case character added to previous partition
+ if ( $prev . $new <= 26 ) {
+ $parts[-1] .= $new;
+ _recurse( substr($digits, 1),
+ $groupings,
+ @parts )
+ }
+ }
+
+ return $groupings;
+}
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 7e707e3468..a781afcbdc 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,88 +1,107 @@ { + "subtitle" : { + "text" : "[Champions: 29] Last updated at 2022-11-14 01:22:30 GMT" + }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "xAxis" : { - "type" : "category" + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "legend" : { + "enabled" : 0 }, "series" : [ { + "name" : "The Weekly Challenge - 190", + "colorByPoint" : 1, "data" : [ { - "name" : "Alexander Pankoff", + "drilldown" : "Alexander Pankoff", "y" : 4, - "drilldown" : "Alexander Pankoff" + "name" : "Alexander Pankoff" }, { "drilldown" : "Arne Sommer", - "name" : "Arne Sommer", - "y" : 3 + "y" : 3, + "name" : "Arne Sommer" }, { - "drilldown" : "Athanasius", + "y" : 4, "name" : "Athanasius", - "y" : 4 + "drilldown" : "Athanasius" }, { - "y" : 2, + "drilldown" : "Cheok-Yin Fung", "name" : "Cheok-Yin Fung", - "drilldown" : "Cheok-Yin Fung" + "y" : 2 + }, + { + "drilldown" : "Colin Crain", + "y" : 3, + "name" : "Colin Crain" }, { "drilldown" : "Dario Mazzeo", - "y" : 1, - "name" : "Dario Mazzeo" + "name" : "Dario Mazzeo", + "y" : 1 }, { - "drilldown" : "E. Choroba", "name" : "E. Choroba", - "y" : 2 + "y" : 2, + "drilldown" : "E. Choroba" }, { "drilldown" : "Feng Chang", - "y" : 2, - "name" : "Feng Chang" + "name" : "Feng Chang", + "y" : 2 }, { - "y" : 6, + "drilldown" : "Flavio Poletti", "name" : "Flavio Poletti", - "drilldown" : "Flavio Poletti" + "y" : 6 }, { - "drilldown" : "Humberto Massa", + "y" : 2, "name" : "Humberto Massa", - "y" : 2 + "drilldown" : "Humberto Massa" }, { - "name" : "James Smith", + "drilldown" : "James Smith", "y" : 3, - "drilldown" : "James Smith" + "name" : "James Smith" }, { - "y" : 2, "name" : "Jan Krnavek", + "y" : 2, "drilldown" : "Jan Krnavek" }, { "drilldown" : "Jorg Sommrey", - "y" : 2, - "name" : "Jorg Sommrey" + "name" : "Jorg Sommrey", + "y" : 2 }, { + "drilldown" : "Kueppo Wesley", "y" : 2, - "name" : "Kueppo Wesley", - "drilldown" : "Kueppo Wesley" + "name" : "Kueppo Wesley" }, { "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld", - "y" : 5 + "y" : 5, + "name" : "Laurent Rosenfeld" }, { - "y" : 8, "name" : "Luca Ferrari", + "y" : 8, "drilldown" : "Luca Ferrari" }, { @@ -91,9 +110,9 @@ "y" : 1 }, { - "drilldown" : "Marton Polgar", "y" : 2, - "name" : "Marton Polgar" + "name" : "Marton Polgar", + "drilldown" : "Marton Polgar" }, { "y" : 1, @@ -101,19 +120,19 @@ "drilldown" : "Matthew Neleigh" }, { - "y" : 2, + "drilldown" : "Mohammad S Anwar", "name" : "Mohammad S Anwar", - "drilldown" : "Mohammad S Anwar" + "y" : 2 }, { - "y" : 3, "name" : "Peter Campbell Smith", + "y" : 3, "drilldown" : "Peter Campbell Smith" }, { + "drilldown" : "Robert DiCicco", "name" : "Robert DiCicco", - "y" : 2, - "drilldown" : "Robert DiCicco" + "y" : 2 }, { "name" : "Robert Ransbottom", @@ -121,8 +140,8 @@ "drilldown" : "Robert Ransbottom" }, { - "name" : "Roger Bell_West", "y" : 5, + "name" : "Roger Bell_West", "drilldown" : "Roger Bell_West" }, { @@ -131,45 +150,41 @@ "drilldown" : "Simon Green" }, { - "drilldown" : "Stephen G. Lynn", + "name" : "Stephen G. Lynn", "y" : 5, - "name" : "Stephen G. Lynn" + "drilldown" : "Stephen G. Lynn" }, { - "y" : 2, + "drilldown" : "Tim Potapov", "name" : "Tim Potapov", - "drilldown" : "Tim Potapov" + "y" : 2 }, { + "drilldown" : "Ulrich Rieke", "y" : 3, - "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke" + "name" : "Ulrich Rieke" }, { - "drilldown" : "W. Luis Mochan", "y" : 3, - "name" : "W. Luis Mochan" + "name" : "W. Luis Mochan", + "drilldown" : "W. Luis Mochan" } - ], - "name" : "The Weekly Challenge - 190", - "colorByPoint" : 1 + ] } ], - "subtitle" : { - "text" : "[Champions: 28] Last updated at 2022-11-13 22:22:56 GMT" + "xAxis" : { + "type" : "category" }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } + "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 }, "drilldown" : { "series" : [ { + "id" : "Alexander Pankoff", + "name" : "Alexander Pankoff", "data" : [ [ "Perl", @@ -179,13 +194,11 @@ "Blog", 2 ] - ], - "id" : "Alexander Pankoff", - "name" : "Alexander Pankoff" + ] }, { - "id" : "Arne Sommer", "name" : "Arne Sommer", + "id" : "Arne Sommer", "data" : [ [ "Raku", @@ -208,8 +221,8 @@ 2 ] ], - "name" : "Athanasius", - "id" : "Athanasius" + "id" : "Athanasius", + "name" : "Athanasius" }, { "data" : [ @@ -222,18 +235,32 @@ "name" : "Cheok-Yin Fung" }, { - "name" : "Dario Mazzeo", - "id" : "Dario Mazzeo", + "id" : "Colin Crain", + "name" : "Colin Crain", "data" : [ [ "Perl", + 2 + ], + [ + "Blog", 1 ] ] }, { - "id" : "E. Choroba", + "data" : [ + [ + "Perl", + 1 + ] + ], + "id" : "Dario Mazzeo", + "name" : "Dario Mazzeo" + }, + { "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ [ "Perl", @@ -242,14 +269,14 @@ ] }, { - "id" : "Feng Chang", - "name" : "Feng Chang", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Feng Chang", + "id" : "Feng Chang" }, { "id" : "Flavio Poletti", @@ -270,14 +297,14 @@ ] }, { + "id" : "Humberto Massa", + "name" : "Humberto Massa", "data" : [ [ "Raku", 2 ] - ], - "name" : "Humberto Massa", - "id" : "Humberto Massa" + ] }, { "data" : [ @@ -300,8 +327,8 @@ 2 ] ], - "name" : "Jan Krnavek", - "id" : "Jan Krnavek" + "id" : "Jan Krnavek", + "name" : "Jan Krnavek" }, { "id" : "Jorg Sommrey", @@ -324,8 +351,6 @@ "id" : "Kueppo Wesley" }, { - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -339,9 +364,13 @@ "Blog", 1 ] - ] + ], + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" }, { + "id" : "Luca Ferrari", + "name" : "Luca Ferrari", "data" : [ [ "Raku", @@ -351,19 +380,17 @@ "Blog", 6 ] - ], - "id" : "Luca Ferrari", - "name" : "Luca Ferrari" + ] }, { + "name" : "Mark Anderson", + "id" : "Mark Anderson", "data" : [ [ "Raku", 1 ] - ], - "id" : "Mark Anderson", - "name" : "Mark Anderson" + ] }, { "data" : [ @@ -372,22 +399,20 @@ 2 ] ], - "id" : "Marton Polgar", - "name" : "Marton Polgar" + "name" : "Marton Polgar", + "id" : "Marton Polgar" }, { - "id" : "Matthew Neleigh", - "name" : "Matthew Neleigh", "data" : [ [ "Perl", 1 ] - ] + ], + "id" : "Matthew Neleigh", + "name" : "Matthew Neleigh" }, { - "id" : "Mohammad S Anwar", - "name" : "Mohammad S Anwar", "data" : [ [ "Perl", @@ -397,7 +422,9 @@ "Raku", 1 ] - ] + ], + "name" : "Mohammad S Anwar", + "id" : "Mohammad S Anwar" }, { "data" : [ @@ -414,8 +441,6 @@ "id" : "Peter Campbell Smith" }, { - "name" : "Robert DiCicco", - "id" : "Robert DiCicco", "data" : [ [ "Perl", @@ -425,21 +450,21 @@ "Raku", 1 ] - ] + ], + "id" : "Robert DiCicco", + "name" : "Robert DiCicco" }, { + "id" : "Robert Ransbottom", + "name" : "Robert Ransbottom", "data" : [ [ "Raku", 2 ] - ], - "name" : "Robert Ransbottom", - "id" : "Robert Ransbottom" + ] }, { - "id" : "Roger Bell_West", - "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -453,7 +478,9 @@ "Blog", 1 ] - ] + ], + "id" : "Roger Bell_West", + "name" : "Roger Bell_West" }, { "data" : [ @@ -466,12 +493,10 @@ 1 ] ], - "name" : "Simon Green", - "id" : "Simon Green" + "id" : "Simon Green", + "name" : "Simon Green" }, { - "id" : "Stephen G. Lynn", - "name" : "Stephen G. Lynn", "data" : [ [ "Perl", @@ -485,7 +510,9 @@ "Blog", 1 ] - ] + ], + "id" : "Stephen G. Lynn", + "name" : "Stephen G. Lynn" }, { "name" : "Tim Potapov", @@ -530,15 +557,7 @@ "chart" : { "type" : "column" }, - "legend" : { - "enabled" : 0 - }, "title" : { "text" : "The Weekly Challenge - 190" - }, - "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 e2205c7da0..93d6c2efe5 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,30 +1,32 @@ { + "tooltip" : { + "pointFormat" : "<b>{point.y:.0f}</b>" + }, + "chart" : { + "type" : "column" + }, "yAxis" : { "min" : 0, "title" : { "text" : null } }, - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } - } + "subtitle" : { + "text" : "Last updated at 2022-11-14 01:22:30 GMT" + }, + "legend" : { + "enabled" : "false" }, "series" : [ { - "name" : "Contributions", "data" : [ [ "Blog", - 3010 + 3011 ], [ "Perl", - 9296 + 9298 ], [ "Raku", @@ -33,31 +35,29 @@ ], "dataLabels" : { "align" : "right", - "rotation" : -90, - "format" : "{point.y:.0f}", + "enabled" : "true", + "color" : "#FFFFFF", "style" : { "fontSize" : "13px", "fontFamily" : "Verdana, sans-serif" }, - "enabled" : "true", - "color" : "#FFFFFF", - "y" : 10 - } + "format" : "{point.y:.0f}", + "y" : 10, + "rotation" : -90 + }, + "name" : "Contributions" } ], - "subtitle" : { - "text" : "Last updated at 2022-11-13 22:22:56 GMT" - }, - "legend" : { - "enabled" : "false" - }, - "chart" : { - "type" : "column" + "xAxis" : { + "labels" : { + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + } + }, + "type" : "category" }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2022]" - }, - "tooltip" : { - "pointFormat" : "<b>{point.y:.0f}</b>" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 8a0d2795d9..2b07e30fb3 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,15 +1,14 @@ { "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/>", - "followPointer" : "true" - }, - "legend" : { - "enabled" : "false" + "headerFormat" : "<span style=\"font-size:11px\"></span>" }, "drilldown" : { "series" : [ { + "name" : "001", + "id" : "001", "data" : [ [ "Perl", @@ -23,13 +22,9 @@ "Blog", 11 ] - ], - "name" : "001", - "id" : "001" + ] }, { - "name" : "002", - "id" : "002", "data" : [ [ "Perl", @@ -43,7 +38,9 @@ "Blog", 10 ] - ] + ], + "id" : "002", + "name" : "002" }, { "name" : "003", @@ -64,8 +61,6 @@ ] }, { - "name" : "004", - "id" : "004", "data" : [ [ "Perl", @@ -79,11 +74,13 @@ "Blog", 10 ] - ] + ], + "name" : "004", + "id" : "004" }, { - "id" : "005", "name" : "005", + "id" : "005", "data" : [ [ "Perl", @@ -100,8 +97,8 @@ ] }, { - "name" : "006", "id" : "006", + "name" : "006", "data" : [ [ "Perl", @@ -118,8 +115,6 @@ ] }, { - "id" : "007", - "name" : "007", "data" : [ [ "Perl", @@ -133,7 +128,9 @@ "Blog", 10 ] - ] + ], + "name" : "007", + "id" : "007" }, { "data" : [ @@ -154,8 +151,6 @@ "name" : "008" }, { - "name" : "009", - "id" : "009", "data" : [ [ "Perl", @@ -169,11 +164,11 @@ "Blog", 13 ] - ] + ], + "name" : "009", + "id" : "009" }, { - "id" : "010", - "name" : "010", "data" : [ [ "Perl", @@ -187,11 +182,13 @@ "Blog", 11 ] - ] + ], + "name" : "010", + "id" : "010" }, { - "id" : "011", "name" : "011", + "id" : "011", "data" : [ [ "Perl", @@ -208,8 +205,8 @@ ] }, { - "id" : "012", "name" : "012", + "id" : "012", "data" : [ [ "Perl", @@ -262,8 +259,6 @@ |
