aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2022-11-25 22:14:47 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2022-11-25 22:14:47 +0000
commit7160c6fd2ad52dc7c7e117c1e59ff7de4821603e (patch)
treefa508f0a615c21e18fe84c4bc999d19757476007
parentfb78e5b076d1a95a268ace12b169ad75e58cdf53 (diff)
downloadperlweeklychallenge-club-7160c6fd2ad52dc7c7e117c1e59ff7de4821603e.tar.gz
perlweeklychallenge-club-7160c6fd2ad52dc7c7e117c1e59ff7de4821603e.tar.bz2
perlweeklychallenge-club-7160c6fd2ad52dc7c7e117c1e59ff7de4821603e.zip
- Added solutions to the task 1 of week 192.
-rw-r--r--challenge-192/mohammad-anwar/java/theweeklychallenge/BinaryFlip.java48
-rw-r--r--challenge-192/mohammad-anwar/perl/ch-1.pl35
-rw-r--r--challenge-192/mohammad-anwar/python/ch-1.py32
-rw-r--r--challenge-192/mohammad-anwar/raku/ch-1.raku35
-rw-r--r--challenge-192/mohammad-anwar/swift/ch-1.swift54
-rw-r--r--stats/pwc-current.json195
-rw-r--r--stats/pwc-language-breakdown-summary.json54
-rw-r--r--stats/pwc-language-breakdown.json1108
-rw-r--r--stats/pwc-leaders.json358
-rw-r--r--stats/pwc-summary-1-30.json94
-rw-r--r--stats/pwc-summary-121-150.json102
-rw-r--r--stats/pwc-summary-151-180.json110
-rw-r--r--stats/pwc-summary-181-210.json40
-rw-r--r--stats/pwc-summary-211-240.json40
-rw-r--r--stats/pwc-summary-241-270.json106
-rw-r--r--stats/pwc-summary-271-300.json34
-rw-r--r--stats/pwc-summary-31-60.json122
-rw-r--r--stats/pwc-summary-61-90.json30
-rw-r--r--stats/pwc-summary-91-120.json112
-rw-r--r--stats/pwc-summary.json40
20 files changed, 1486 insertions, 1263 deletions
diff --git a/challenge-192/mohammad-anwar/java/theweeklychallenge/BinaryFlip.java b/challenge-192/mohammad-anwar/java/theweeklychallenge/BinaryFlip.java
new file mode 100644
index 0000000000..b282e9d096
--- /dev/null
+++ b/challenge-192/mohammad-anwar/java/theweeklychallenge/BinaryFlip.java
@@ -0,0 +1,48 @@
+package theweeklychallenge;
+
+/*
+
+Week 192:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-192
+
+Task #1: Binary Flip
+
+ You are given a positive integer, $n.
+
+ Write a script to find the binary flip.
+
+Compile and Run:
+
+ mohammad-anwar/java$ javac theweeklychallenge/BinaryFlip.java
+ mohammad-anwar/java$ java theweeklychallenge.BinaryFlip
+
+*/
+
+import junit.framework.TestCase;
+import static junit.framework.Assert.*;
+
+public class BinaryFlip extends TestCase {
+
+ public static void main(String[] args) {
+ junit.textui.TestRunner.run(
+ theweeklychallenge.BinaryFlip.class
+ );
+ }
+
+ public void testBinaryFlip() {
+ assertEquals(2, binaryFlip(5));
+ assertEquals(3, binaryFlip(4));
+ assertEquals(1, binaryFlip(6));
+ }
+
+ public static int binaryFlip(int n) {
+ String[] bits = Integer.toBinaryString(n).split("");
+ String flipped = "";
+ for(String bit : bits) {
+ flipped += (bit.equals("0")) ? '1' : '0';
+ }
+
+ return Integer.parseInt(flipped, 2);
+ }
+}
diff --git a/challenge-192/mohammad-anwar/perl/ch-1.pl b/challenge-192/mohammad-anwar/perl/ch-1.pl
new file mode 100644
index 0000000000..53da11d9bc
--- /dev/null
+++ b/challenge-192/mohammad-anwar/perl/ch-1.pl
@@ -0,0 +1,35 @@
+#!/usr/bin/perl
+
+=head1
+
+Week 192:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-192
+
+Task #1: Binary Flip
+
+ You are given a positive integer, $n.
+
+ Write a script to find the binary flip.
+
+=cut
+
+use v5.36;
+use Test2::V0;
+
+is binary_flip(5), 2, 'Example 1';
+is binary_flip(4), 3, 'Example 2';
+is binary_flip(6), 1, 'Example 3';
+
+done_testing;
+
+#
+#
+# METHOD
+
+sub binary_flip($n) {
+ return oct '0b'.
+ join q{},
+ map { tr/10/01/ and $_ }
+ split //,sprintf '%b', $n;
+}
diff --git a/challenge-192/mohammad-anwar/python/ch-1.py b/challenge-192/mohammad-anwar/python/ch-1.py
new file mode 100644
index 0000000000..3ff80be425
--- /dev/null
+++ b/challenge-192/mohammad-anwar/python/ch-1.py
@@ -0,0 +1,32 @@
+#!/usr/bin/python3
+
+'''
+
+Week 192:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-192
+
+Task #1: Binary Flip
+
+ You are given a positive integer, $n.
+
+ Write a script to find the binary flip.
+
+'''
+
+import unittest
+
+def binaryFlip(n) -> int:
+ return int(''.join(['1' if i == '0' else '0' for i in "{0:b}".format(n)]),2)
+
+#
+#
+# Unit test class
+
+class TestBinaryFlip(unittest.TestCase):
+ def test_binaryFlip(self):
+ self.assertEqual(binaryFlip(5), 2, 'Example 1')
+ self.assertEqual(binaryFlip(4), 3, 'Example 2')
+ self.assertEqual(binaryFlip(6), 1, 'Example 3')
+
+unittest.main()
diff --git a/challenge-192/mohammad-anwar/raku/ch-1.raku b/challenge-192/mohammad-anwar/raku/ch-1.raku
new file mode 100644
index 0000000000..ef12503cbc
--- /dev/null
+++ b/challenge-192/mohammad-anwar/raku/ch-1.raku
@@ -0,0 +1,35 @@
+#!/usr/bin/env raku
+
+=begin pod
+
+Week 192:
+
+ https://theweeklychallenge.org/blog/perl-weekly-challenge-192
+
+Task #1: Binary Flip
+
+ You are given a positive integer, $n.
+
+ Write a script to find the binary flip.
+
+=end pod
+
+use Test;
+
+is binary-flip(5), 2, 'Example 1';
+is binary-flip(4), 3, 'Example 2';
+is binary-flip(6), 1, 'Example 3';
+
+done-testing;
+
+#
+#
+# METHOD
+
+sub binary-flip(Int $n is copy --> Int) {
+ return $n.base(2)
+ .comb()
+ .map(-> $v { ($v == 0)??(1)!!(0) })
+ .join(q{})
+ .parse-base(2);
+}
diff --git a/challenge-192/mohammad-anwar/swift/ch-1.swift b/challenge-192/mohammad-anwar/swift/ch-1.swift
new file mode 100644
index 0000000000..3677ed01a9
--- /dev/null
+++ b/challenge-192/mohammad-anwar/swift/ch-1.swift
@@ -0,0 +1,54 @@
+import Foundation
+
+/*
+
+Week 192:
+
+ https://perlweeklychallenge.org/blog/perl-weekly-challenge-192
+
+Task #1: Binary Flip
+
+ You are given a positive integer, $n.
+
+ Write a script to find the binary flip.
+
+ACTION:
+
+ $ swift ch-1.swift 5
+ $ swift ch-1.swift 4
+ $ swift ch-1.swift 6
+
+*/
+
+enum ParamError: Error {
+ case missingNumber
+ case invalidNumber
+}
+
+do {
+ let paramCount:Int = Int(CommandLine.argc)
+
+ if paramCount <= 1 {
+ throw ParamError.missingNumber
+ }
+
+ let num:Int = Int(CommandLine.arguments[1])!
+ if num > 0 {
+ let binary:String = String(num, radix: 2)
+ var flipped:String = ""
+ Array(binary).forEach{ flipped += ($0 == "0") ? "1" : "0" }
+ print(Int(flipped, radix: 2)!)
+ }
+ else {
+ throw ParamError.invalidNumber
+ }
+}
+catch ParamError.missingNumber {
+ print("Missing number.")
+}
+catch ParamError.invalidNumber {
+ print("Invalid number.")
+}
+catch let error {
+ print(error)
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index c32f506d37..83a7193dda 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,35 +1,21 @@
{
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
- },
- "legend" : {
- "enabled" : 0
- },
- "subtitle" : {
- "text" : "[Champions: 21] Last updated at 2022-11-25 21:18:12 GMT"
+ "chart" : {
+ "type" : "column"
},
"title" : {
"text" : "The Weekly Challenge - 192"
},
- "chart" : {
- "type" : "column"
- },
- "xAxis" : {
- "type" : "category"
+ "legend" : {
+ "enabled" : 0
},
"series" : [
{
+ "name" : "The Weekly Challenge - 192",
"data" : [
{
+ "drilldown" : "Alexander Pankoff",
"y" : 4,
- "name" : "Alexander Pankoff",
- "drilldown" : "Alexander Pankoff"
+ "name" : "Alexander Pankoff"
},
{
"name" : "Ali Moradi",
@@ -37,14 +23,14 @@
"drilldown" : "Ali Moradi"
},
{
- "drilldown" : "Dario Mazzeo",
+ "y" : 1,
"name" : "Dario Mazzeo",
- "y" : 1
+ "drilldown" : "Dario Mazzeo"
},
{
"drilldown" : "E. Choroba",
- "name" : "E. Choroba",
- "y" : 2
+ "y" : 2,
+ "name" : "E. Choroba"
},
{
"name" : "Humberto Massa",
@@ -53,73 +39,78 @@
},
{
"drilldown" : "James Smith",
- "name" : "James Smith",
- "y" : 3
+ "y" : 3,
+ "name" : "James Smith"
},
{
+ "drilldown" : "Jorg Sommrey",
"name" : "Jorg Sommrey",
- "y" : 3,
- "drilldown" : "Jorg Sommrey"
+ "y" : 3
},
{
- "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
"y" : 5,
- "name" : "Laurent Rosenfeld"
+ "drilldown" : "Laurent Rosenfeld"
},
{
- "drilldown" : "Luca Ferrari",
+ "name" : "Luca Ferrari",
"y" : 8,
- "name" : "Luca Ferrari"
+ "drilldown" : "Luca Ferrari"
+ },
+ {
+ "y" : 2,
+ "name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson"
},
{
- "drilldown" : "Mark Anderson",
+ "drilldown" : "Mohammad S Anwar",
"y" : 2,
- "name" : "Mark Anderson"
+ "name" : "Mohammad S Anwar"
},
{
- "drilldown" : "Niels van Dijke",
"name" : "Niels van Dijke",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Niels van Dijke"
},
{
- "y" : 1,
"name" : "Olivier Delouya",
+ "y" : 1,
"drilldown" : "Olivier Delouya"
},
{
"drilldown" : "Peter Campbell Smith",
- "y" : 3,
- "name" : "Peter Campbell Smith"
+ "name" : "Peter Campbell Smith",
+ "y" : 3
},
{
+ "drilldown" : "Robbie Hatley",
"name" : "Robbie Hatley",
- "y" : 2,
- "drilldown" : "Robbie Hatley"
+ "y" : 2
},
{
- "drilldown" : "Robert DiCicco",
"name" : "Robert DiCicco",
- "y" : 4
+ "y" : 4,
+ "drilldown" : "Robert DiCicco"
},
{
- "name" : "Roger Bell_West",
+ "drilldown" : "Roger Bell_West",
"y" : 4,
- "drilldown" : "Roger Bell_West"
+ "name" : "Roger Bell_West"
},
{
- "drilldown" : "Simon Proctor",
"name" : "Simon Proctor",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Simon Proctor"
},
{
- "name" : "Stephen G. Lynn",
+ "drilldown" : "Stephen G. Lynn",
"y" : 5,
- "drilldown" : "Stephen G. Lynn"
+ "name" : "Stephen G. Lynn"
},
{
+ "drilldown" : "Tim Potapov",
"y" : 2,
- "name" : "Tim Potapov",
- "drilldown" : "Tim Potapov"
+ "name" : "Tim Potapov"
},
{
"y" : 2,
@@ -127,15 +118,19 @@
"drilldown" : "Vamsi Meenavilli"
},
{
+ "drilldown" : "W. Luis Mochan",
"name" : "W. Luis Mochan",
- "y" : 3,
- "drilldown" : "W. Luis Mochan"
+ "y" : 3
}
],
- "name" : "The Weekly Challenge - 192",
"colorByPoint" : 1
}
],
+ "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" : [
{
@@ -177,27 +172,27 @@
"id" : "Dario Mazzeo"
},
{
+ "name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
- "name" : "E. Choroba",
"id" : "E. Choroba"
},
{
- "id" : "Humberto Massa",
"name" : "Humberto Massa",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Humberto Massa"
},
{
- "name" : "James Smith",
+ "id" : "James Smith",
"data" : [
[
"Perl",
@@ -208,9 +203,10 @@
1
]
],
- "id" : "James Smith"
+ "name" : "James Smith"
},
{
+ "id" : "Jorg Sommrey",
"name" : "Jorg Sommrey",
"data" : [
[
@@ -221,11 +217,9 @@
"Blog",
1
]
- ],
- "id" : "Jorg Sommrey"
+ ]
},
{
- "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -240,9 +234,11 @@
1
]
],
- "name" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld"
},
{
+ "id" : "Luca Ferrari",
"name" : "Luca Ferrari",
"data" : [
[
@@ -253,40 +249,54 @@
"Blog",
6
]
- ],
- "id" : "Luca Ferrari"
+ ]
},
{
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
- "name" : "Mark Anderson",
"id" : "Mark Anderson"
},
{
- "name" : "Niels van Dijke",
+ "name" : "Mohammad S Anwar",
+ "data" : [
+ [
+ "Perl",
+ 1
+ ],
+ [
+ "Raku",
+ 1
+ ]
+ ],
+ "id" : "Mohammad S Anwar"
+ },
+ {
+ "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
],
- "id" : "Niels van Dijke"
+ "name" : "Niels van Dijke"
},
{
- "name" : "Olivier Delouya",
"data" : [
[
"Perl",
1
]
],
+ "name" : "Olivier Delouya",
"id" : "Olivier Delouya"
},
{
+ "name" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -297,21 +307,20 @@
1
]
],
- "name" : "Peter Campbell Smith",
"id" : "Peter Campbell Smith"
},
{
- "name" : "Robbie Hatley",
+ "id" : "Robbie Hatley",
"data" : [
[
"Perl",
2
]
],
- "id" : "Robbie Hatley"
+ "name" : "Robbie Hatley"
},
{
- "name" : "Robert DiCicco",
+ "id" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -322,10 +331,10 @@
2
]
],
- "id" : "Robert DiCicco"
+ "name" : "Robert DiCicco"
},
{
- "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -336,7 +345,7 @@
2
]
],
- "name" : "Roger Bell_West"
+ "id" : "Roger Bell_West"
},
{
"id" : "Simon Proctor",
@@ -350,6 +359,7 @@
},
{
"id" : "Stephen G. Lynn",
+ "name" : "Stephen G. Lynn",
"data" : [
[
"Perl",
@@ -363,8 +373,7 @@
"Blog",
1
]
- ],
- "name" : "Stephen G. Lynn"
+ ]
},
{
"id" : "Tim Potapov",
@@ -377,17 +386,16 @@
]
},
{
+ "id" : "Vamsi Meenavilli",
+ "name" : "Vamsi Meenavilli",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Vamsi Meenavilli",
- "id" : "Vamsi Meenavilli"
+ ]
},
{
- "id" : "W. Luis Mochan",
"name" : "W. Luis Mochan",
"data" : [
[
@@ -398,18 +406,29 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "W. Luis Mochan"
}
]
},
+ "xAxis" : {
+ "type" : "category"
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "tooltip" : {
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : 1,
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
+ "subtitle" : {
+ "text" : "[Champions: 22] Last updated at 2022-11-25 22:08:30 GMT"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 0140582f25..2f7b49ba94 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,16 +1,4 @@
{
- "chart" : {
- "type" : "column"
- },
- "xAxis" : {
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- },
- "type" : "category"
- },
"series" : [
{
"data" : [
@@ -20,44 +8,56 @@
],
[
"Perl",
- 9399
+ 9400
],
[
"Raku",
- 5644
+ 5645
]
],
"name" : "Contributions",
"dataLabels" : {
- "color" : "#FFFFFF",
- "format" : "{point.y:.0f}",
"enabled" : "true",
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
"align" : "right",
+ "format" : "{point.y:.0f}",
"y" : 10,
+ "color" : "#FFFFFF",
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
"rotation" : -90
}
}
],
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
}
},
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
- "legend" : {
- "enabled" : "false"
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
+ }
},
"subtitle" : {
- "text" : "Last updated at 2022-11-25 21:18:12 GMT"
+ "text" : "Last updated at 2022-11-25 22:08:30 GMT"
+ },
+ "chart" : {
+ "type" : "column"
},
"title" : {
"text" : "The Weekly Challenge Contributions [2019 - 2022]"
+ },
+ "legend" : {
+ "enabled" : "false"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index b223918fe9..ecb09631cc 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,13 +1,32 @@
{
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-11-25 22:08:30 GMT"
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
+ "xAxis" : {
+ "type" : "category"
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
+ }
+ },
+ "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" : [
[
@@ -22,10 +41,12 @@
"Blog",
11
]
- ]
+ ],
+ "id" : "001"
},
{
"id" : "002",
+ "name" : "002",
"data" : [
[
"Perl",
@@ -39,10 +60,10 @@
"Blog",
10
]
- ],
- "name" : "002"
+ ]
},
{
+ "id" : "003",
"name" : "003",
"data" : [
[
@@ -57,8 +78,7 @@
"Blog",
9
]
- ],
- "id" : "003"
+ ]
},
{
"data" : [
@@ -79,6 +99,7 @@
"id" : "004"
},
{
+ "id" : "005",
"data" : [
[
"Perl",
@@ -93,11 +114,10 @@
12
]
],
- "name" : "005",
- "id" : "005"
+ "name" : "005"
},
{
- "id" : "006",
+ "name" : "006",
"data" : [
[
"Perl",
@@ -112,10 +132,9 @@
7
]
],
- "name" : "006"
+ "id" : "006"
},
{
- "name" : "007",
"data" : [
[
"Perl",
@@ -130,10 +149,10 @@
10
]
],
+ "name" : "007",
"id" : "007"
},
{
- "name" : "008",
"data" : [
[
"Perl",
@@ -148,6 +167,7 @@
12
]
],
+ "name" : "008",
"id" : "008"
},
{
@@ -169,6 +189,7 @@
"id" : "009"
},
{
+ "name" : "010",
"data" : [
[
"Perl",
@@ -183,11 +204,9 @@
11
]
],
- "name" : "010",
"id" : "010"
},
{
- "id" : "011",
"name" : "011",
"data" : [
[
@@ -202,7 +221,8 @@
"Blog",
10
]
- ]
+ ],
+ "id" : "011"
},
{
"id" : "012",
@@ -241,6 +261,7 @@
"id" : "013"
},
{
+ "id" : "014",
"data" : [
[
"Perl",
@@ -255,11 +276,9 @@
15
]
],
- "name" : "014",
- "id" : "014"
+ "name" : "014"
},
{
- "name" : "015",
"data" : [
[
"Perl",
@@ -274,6 +293,7 @@
15
]
],
+ "name" : "015",
"id" : "015"
},
{
@@ -295,8 +315,6 @@
]
},
{
- "id" : "017",
- "name" : "017",
"data" : [
[
"Perl",
@@ -310,9 +328,12 @@
"Blog",
12
]
- ]
+ ],
+ "name" : "017",
+ "id" : "017"
},
{
+ "name" : "018",
"data" : [
[
"Perl",
@@ -327,10 +348,11 @@
14
]
],
- "name" : "018",
"id" : "018"
},
{
+ "id" : "019",
+ "name" : "019",
"data" : [
[
"Perl",
@@ -344,11 +366,11 @@
"Blog",
13
]
- ],
- "name" : "019",
- "id" : "019"
+ ]
},
{
+ "id" : "020",
+ "name" : "020",
"data" : [
[
"Perl",
@@ -362,9 +384,7 @@
"Blog",
13
]
- ],
- "name" : "020",
- "id" : "020"
+ ]
},
{
"id" : "021",
@@ -385,6 +405,7 @@
]
},
{
+ "name" : "022",
"data" : [
[
"Perl",
@@ -399,7 +420,6 @@
10
]
],
- "name" : "022",
"id" : "022"
},
{
@@ -421,8 +441,6 @@
"id" : "023"
},
{
- "id" : "024",
- "name" : "024",
"data" : [
[
"Perl",
@@ -436,10 +454,12 @@
"Blog",
11
]
- ]
+ ],
+ "name" : "024",
+ "id" : "024"
},
{
- "id" : "025",