aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-276/laurent-rosenfeld/blog1.txt1
-rw-r--r--challenge-276/laurent-rosenfeld/perl/ch-2.pl25
-rw-r--r--challenge-276/laurent-rosenfeld/raku/ch-2.raku15
-rw-r--r--stats/pwc-current.json457
-rw-r--r--stats/pwc-language-breakdown-summary.json80
-rw-r--r--stats/pwc-language-breakdown.json1882
-rw-r--r--stats/pwc-leaders.json774
-rw-r--r--stats/pwc-summary-1-30.json34
-rw-r--r--stats/pwc-summary-121-150.json114
-rw-r--r--stats/pwc-summary-151-180.json38
-rw-r--r--stats/pwc-summary-181-210.json118
-rw-r--r--stats/pwc-summary-211-240.json108
-rw-r--r--stats/pwc-summary-241-270.json38
-rw-r--r--stats/pwc-summary-271-300.json116
-rw-r--r--stats/pwc-summary-301-330.json26
-rw-r--r--stats/pwc-summary-31-60.json34
-rw-r--r--stats/pwc-summary-61-90.json106
-rw-r--r--stats/pwc-summary-91-120.json32
-rw-r--r--stats/pwc-summary.json44
19 files changed, 2070 insertions, 1972 deletions
diff --git a/challenge-276/laurent-rosenfeld/blog1.txt b/challenge-276/laurent-rosenfeld/blog1.txt
new file mode 100644
index 0000000000..18fea0dc3d
--- /dev/null
+++ b/challenge-276/laurent-rosenfeld/blog1.txt
@@ -0,0 +1 @@
+https://blogs.perl.org/users/laurent_r/2024/07/perl-weekly-challenge-276-maximum-frequency.html
diff --git a/challenge-276/laurent-rosenfeld/perl/ch-2.pl b/challenge-276/laurent-rosenfeld/perl/ch-2.pl
new file mode 100644
index 0000000000..d06b3f6d90
--- /dev/null
+++ b/challenge-276/laurent-rosenfeld/perl/ch-2.pl
@@ -0,0 +1,25 @@
+use strict;
+use warnings;
+use feature 'say';
+
+sub max_frequency {
+ my %frequencies;
+ for my $i (@_) {
+ $frequencies{$i}++;
+ }
+ my $max = 0;
+ for my $i (values %frequencies) {
+ $max = $i if $i > $max;
+ }
+ my $count = 0;
+ for my $i (keys %frequencies) {
+ $count += $max if $frequencies{$i} == $max;
+ }
+ return $count;
+}
+
+my @tests = ( [1, 2, 2, 4, 1, 5], [1, 2, 3, 4, 5]);
+for my $test (@tests) {
+ printf "%-15s => ", "@$test";
+ say max_frequency @$test;
+}
diff --git a/challenge-276/laurent-rosenfeld/raku/ch-2.raku b/challenge-276/laurent-rosenfeld/raku/ch-2.raku
new file mode 100644
index 0000000000..d7ccba453b
--- /dev/null
+++ b/challenge-276/laurent-rosenfeld/raku/ch-2.raku
@@ -0,0 +1,15 @@
+sub max-frequency (@in) {
+ my $frequencies = @in.Bag;
+ my $max = $frequencies.values.max;
+ my $count = 0;
+ for $frequencies.keys -> $i {
+ $count += $max if $frequencies{$i} == $max;
+ }
+ return $count;
+}
+
+my @tests = (1, 2, 2, 4, 1, 5), (1, 2, 3, 4, 5);
+for @tests -> @test {
+ printf "%-15s => ", "@test[]";
+ say max-frequency @test;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 2025887c36..6c6e9b94b5 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,14 +1,170 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "series" : [
+ {
+ "name" : "The Weekly Challenge - 276",
+ "colorByPoint" : 1,
+ "data" : [
+ {
+ "y" : 5,
+ "drilldown" : "Ali Moradi",
+ "name" : "Ali Moradi"
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Athanasius",
+ "name" : "Athanasius"
+ },
+ {
+ "drilldown" : "Dave Jacoby",
+ "y" : 2,
+ "name" : "Dave Jacoby"
+ },
+ {
+ "drilldown" : "David Ferrone",
+ "y" : 2,
+ "name" : "David Ferrone"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "E. Choroba",
+ "name" : "E. Choroba"
+ },
+ {
+ "name" : "Feng Chang",
+ "y" : 2,
+ "drilldown" : "Feng Chang"
+ },
+ {
+ "name" : "Jan Krnavek",
+ "drilldown" : "Jan Krnavek",
+ "y" : 2
+ },
+ {
+ "name" : "Joelle Maslak",
+ "drilldown" : "Joelle Maslak",
+ "y" : 4
+ },
+ {
+ "name" : "Jorg Sommrey",
+ "y" : 3,
+ "drilldown" : "Jorg Sommrey"
+ },
+ {
+ "name" : "Kai Burgdorf",
+ "drilldown" : "Kai Burgdorf",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 6,
+ "name" : "Laurent Rosenfeld"
+ },
+ {
+ "name" : "Luca Ferrari",
+ "drilldown" : "Luca Ferrari",
+ "y" : 11
+ },
+ {
+ "name" : "Mariano Ortega",
+ "y" : 2,
+ "drilldown" : "Mariano Ortega"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson"
+ },
+ {
+ "name" : "Matthew Neleigh",
+ "y" : 2,
+ "drilldown" : "Matthew Neleigh"
+ },
+ {
+ "name" : "Nelo Tovar",
+ "drilldown" : "Nelo Tovar",
+ "y" : 2
+ },
+ {
+ "name" : "Niels van Dijke",
+ "y" : 2,
+ "drilldown" : "Niels van Dijke"
+ },
+ {
+ "y" : 5,
+ "drilldown" : "Packy Anderson",
+ "name" : "Packy Anderson"
+ },
+ {
+ "name" : "Peter Campbell Smith",
+ "y" : 3,
+ "drilldown" : "Peter Campbell Smith"
+ },
+ {
+ "drilldown" : "Reinier Maliepaard",
+ "y" : 3,
+ "name" : "Reinier Maliepaard"
+ },
+ {
+ "drilldown" : "Robbie Hatley",
+ "y" : 3,
+ "name" : "Robbie Hatley"
+ },
+ {
+ "drilldown" : "Roger Bell_West",
+ "y" : 5,
+ "name" : "Roger Bell_West"
+ },
+ {
+ "name" : "Ryan Thompson",
+ "drilldown" : "Ryan Thompson",
+ "y" : 3
+ },
+ {
+ "name" : "Simon Green",
+ "drilldown" : "Simon Green",
+ "y" : 3
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Thomas Kohler",
+ "name" : "Thomas Kohler"
+ },
+ {
+ "drilldown" : "Ulrich Rieke",
+ "y" : 4,
+ "name" : "Ulrich Rieke"
+ },
+ {
+ "y" : 3,
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
+ }
+ ]
}
+ ],
+ "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/>"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 27] Last updated at 2024-07-07 11:47:03 GMT"
},
"drilldown" : {
"series" : [
{
- "name" : "Ali Moradi",
- "id" : "Ali Moradi",
"data" : [
[
"Perl",
@@ -22,60 +178,75 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Ali Moradi",
+ "id" : "Ali Moradi"
},
{
- "id" : "Dave Jacoby",
"data" : [
[
"Perl",
2
+ ],
+ [
+ "Raku",
+ 2
]
],
- "name" : "Dave Jacoby"
+ "name" : "Athanasius",
+ "id" : "Athanasius"
},
{
+ "name" : "Dave Jacoby",
+ "id" : "Dave Jacoby",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
+ },
+ {
+ "id" : "David Ferrone",
"name" : "David Ferrone",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "David Ferrone"
+ ]
},
{
- "name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
+ "name" : "E. Choroba",
"id" : "E. Choroba"
},
{
"id" : "Feng Chang",
+ "name" : "Feng Chang",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Feng Chang"
+ ]
},
{
+ "id" : "Jan Krnavek",
+ "name" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ ]
},
{
- "name" : "Joelle Maslak",
"data" : [
[
"Perl",
@@ -86,38 +257,52 @@
2
]
],
+ "name" : "Joelle Maslak",
"id" : "Joelle Maslak"
},
{
- "id" : "Kai Burgdorf",
+ "id" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
+ },
+ {
"data" : [
[
"Perl",
2
]
],
- "name" : "Kai Burgdorf"
+ "name" : "Kai Burgdorf",
+ "id" : "Kai Burgdorf"
},
{
- "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
- 1
+ 2
],
[
"Raku",
- 1
+ 2
],
[
"Blog",
- 1
+ 2
]
],
- "name" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld"
},
{
- "name" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -128,17 +313,18 @@
9
]
],
- "id" : "Luca Ferrari"
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari"
},
{
"name" : "Mariano Ortega",
+ "id" : "Mariano Ortega",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Mariano Ortega"
+ ]
},
{
"data" : [
@@ -147,8 +333,8 @@
2
]
],
- "id" : "Mark Anderson",
- "name" : "Mark Anderson"
+ "name" : "Mark Anderson",
+ "id" : "Mark Anderson"
},
{
"data" : [
@@ -157,21 +343,32 @@
2
]
],
- "id" : "Matthew Neleigh",
- "name" : "Matthew Neleigh"
+ "name" : "Matthew Neleigh",
+ "id" : "Matthew Neleigh"
},
{
- "name" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
],
- "id" : "Niels van Dijke"
+ "name" : "Nelo Tovar",
+ "id" : "Nelo Tovar"
+ },
+ {
+ "id" : "Niels van Dijke",
+ "name" : "Niels van Dijke",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
},
{
"id" : "Packy Anderson",
+ "name" : "Packy Anderson",
"data" : [
[
"Perl",
@@ -185,10 +382,11 @@
"Blog",
1
]
- ],
- "name" : "Packy Anderson"
+ ]
},
{
+ "name" : "Peter Campbell Smith",
+ "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -198,13 +396,11 @@
"Blog",
1
]
- ],
- "id" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith"
+ ]
},
{
- "name" : "Reinier Maliepaard",
"id" : "Reinier Maliepaard",
+ "name" : "Reinier Maliepaard",
"data" : [
[
"Perl",
@@ -217,8 +413,6 @@
]
},
{
- "name" : "Robbie Hatley",
- "id" : "Robbie Hatley",
"data" : [
[
"Perl",
@@ -228,10 +422,11 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Robbie Hatley",
+ "id" : "Robbie Hatley"
},
{
- "id" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -240,9 +435,14 @@
[
"Raku",
2
+ ],
+ [
+ "Blog",
+ 1
]
],
- "name" : "Roger Bell_West"
+ "name" : "Roger Bell_West",
+ "id" : "Roger Bell_West"
},
{
"name" : "Ryan Thompson",
@@ -259,7 +459,6 @@
]
},
{
- "name" : "Simon Green",
"data" : [
[
"Perl",
@@ -270,9 +469,11 @@
1
]
],
+ "name" : "Simon Green",
"id" : "Simon Green"
},
{
+ "name" : "Thomas Kohler",
"id" : "Thomas Kohler",
"data" : [
[
@@ -283,11 +484,9 @@
"Blog",
2
]
- ],
- "name" : "Thomas Kohler"
+ ]
},
{
- "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -298,9 +497,11 @@
2
]
],
+ "id" : "Ulrich Rieke",
"name" : "Ulrich Rieke"
},
{
+ "name" : "W. Luis Mochan",
"id" : "W. Luis Mochan",
"data" : [
[
@@ -311,166 +512,22 @@
"Blog",
1
]
- ],
- "name" : "W. Luis Mochan"
+ ]
}
]
},
- "xAxis" : {
- "type" : "category"
- },
"title" : {
"text" : "The Weekly Challenge - 276"
},
- "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/>"
+ "xAxis" : {
+ "type" : "category"
},
- "series" : [
- {
- "colorByPoint" : 1,
- "name" : "The Weekly Challenge - 276",
- "data" : [
- {
- "name" : "Ali Moradi",
- "drilldown" : "Ali Moradi",
- "y" : 5
- },
- {
- "name" : "Dave Jacoby",
- "drilldown" : "Dave Jacoby",
- "y" : 2
- },
- {
- "drilldown" : "David Ferrone",
- "name" : "David Ferrone",
- "y" : 2
- },
- {
- "y" : 2,
- "name" : "E. Choroba",
- "drilldown" : "E. Choroba"
- },
- {
- "drilldown" : "Feng Chang",
- "name" : "Feng Chang",
- "y" : 2
- },
- {
- "y" : 2,
- "name" : "Jan Krnavek",
- "drilldown" : "Jan Krnavek"
- },
- {
- "y" : 4,
- "drilldown" : "Joelle Maslak",
- "name" : "Joelle Maslak"
- },
- {
- "y" : 2,
- "drilldown" : "Kai Burgdorf",
- "name" : "Kai Burgdorf"
- },
- {
- "y" : 3,
- "drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
- },
- {
- "y" : 11,
- "drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari"
- },
- {
- "name" : "Mariano Ortega",
- "drilldown" : "Mariano Ortega",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Mark Anderson",
- "name" : "Mark Anderson"
- },
- {
- "name" : "Matthew Neleigh",
- "drilldown" : "Matthew Neleigh",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Niels van Dijke",
- "name" : "Niels van Dijke"
- },
- {
- "y" : 5,
- "name" : "Packy Anderson",
- "drilldown" : "Packy Anderson"
- },
- {
- "drilldown" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith",
- "y" : 3
- },
- {
- "drilldown" : "Reinier Maliepaard",
- "name" : "Reinier Maliepaard",
- "y" : 3
- },
- {
- "y" : 3,
- "drilldown" : "Robbie Hatley",
- "name" : "Robbie Hatley"
- },
- {
- "name" : "Roger Bell_West",
- "drilldown" : "Roger Bell_West",
- "y" : 4
- },
- {
- "drilldown" : "Ryan Thompson",
- "name" : "Ryan Thompson",
- "y" : 3
- },
- {
- "y" : 3,
- "drilldown" : "Simon Green",
- "name" : "Simon Green"
- },
- {
- "drilldown" : "Thomas Kohler",
- "name" : "Thomas Kohler",
- "y" : 4
- },
- {
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke",
- "y" : 4
- },
- {
- "y" : 3,
- "drilldown" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
- }
- ]
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
}
- ],
+ },
"legend" : {
"enabled" : 0
- },
- "subtitle" : {
- "text" : "[Champions: 24] Last updated at 2024-07-05 10:52:29 GMT"
- },
- "chart" : {
- "type" : "column"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 50eb78e43e..c248f47d33 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,63 +1,63 @@
{
- "xAxis" : {
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- },
- "type" : "category"
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2024]"
- },
- "yAxis" : {
- "title" : {
- "text" : null
- },
- "min" : 0
+ "subtitle" : {
+ "text" : "Last updated at 2024-07-07 11:47:03 GMT"
},
"chart" : {
"type" : "column"
},
- "subtitle" : {
- "text" : "Last updated at 2024-07-05 10:52:29 GMT"
- },
- "legend" : {
- "enabled" : "false"
- },
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
"series" : [
{
"name" : "Contributions",
- "dataLabels" : {
- "color" : "#FFFFFF",
- "y" : 10,
- "rotation" : -90,
- "align" : "right",
- "format" : "{point.y:.0f}",
- "enabled" : "true",
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- },
"data" : [
[
"Blog",
- 5030
+ 5033
],
[
"Perl",
- 14297
+ 14304
],
[
"Raku",
- 8285
+ 8288
]
- ]
+ ],
+ "dataLabels" : {
+ "format" : "{point.y:.0f}",
+ "rotation" : -90,
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "align" : "right",
+ "color" : "#FFFFFF",
+ "y" : 10,
+ "enabled" : "true"
+ }
+ }
+ ],
+ "legend" : {
+ "enabled" : "false"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2024]"
+ },
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ }
+ },
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
}
- ]
+ }
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index dfa2e18a99..7f7ce1933e 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,8 +1,6 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2024-07-07 11:47:03 GMT"
},
"drilldown" : {
"series" : [
@@ -43,8 +41,6 @@
"name" : "002"
},
{
- "name" : "003",
- "id" : "003",
"data" : [
[
"Perl",
@@ -58,10 +54,11 @@
"Blog",
9
]
- ]
+ ],
+ "name" : "003",
+ "id" : "003"
},
{
- "name" : "004",
"data" : [
[
"Perl",
@@ -76,11 +73,12 @@
10
]
],
- "id" : "004"
+ "id" : "004",
+ "name" : "004"
},
{
- "name" : "005",
"id" : "005",
+ "name" : "005",
"data" : [
[
"Perl",
@@ -115,6 +113,8 @@
]
},
{
+ "id" : "007",
+ "name" : "007",
"data" : [
[
"Perl",
@@ -128,13 +128,11 @@
"Blog",
10
]
- ],
- "id" : "007",
- "name" : "007"
+ ]
},
{
- "name" : "008",
"id" : "008",
+ "name" : "008",
"data" : [
[
"Perl",
@@ -152,6 +150,7 @@
},
{
"id" : "009",
+ "name" : "009",
"data" : [
[
"Perl",
@@ -165,11 +164,9 @@
"Blog",
13
]
- ],
- "name" : "009"
+ ]
},
{
- "name" : "010",
"data" : [
[
"Perl",
@@ -184,10 +181,10 @@
11
]
],
+ "name" : "010",
"id" : "010"
},
{
- "id" : "011",
"data" : [
[
"Perl",
@@ -202,9 +199,11 @@
10
]
],
+ "id" : "011",
"name" : "011"
},
{
+ "name" : "012",
"id" : "012",
"data" : [
[
@@ -219,11 +218,11 @@
"Blog",
11
]
- ],
- "name" : "012"
+ ]
},
{
"id" : "013",
+ "name" : "013",
"data" : [
[
"Perl",
@@ -237,11 +236,9 @@
"Blog",
13
]
- ],
- "name" : "013"
+ ]
},
{
- "name" : "014",
"data" : [
[
"Perl",
@@ -256,10 +253,12 @@
15
]
],
- "id" : "014"
+ "id" : "014",
+ "name" : "014"
},
{
"id" : "015",
+ "name" : "015",
"data" : [
[
"Perl",
@@ -273,10 +272,11 @@
"Blog",
15
]
- ],
- "name" : "015"
+ ]
},
{
+ "id" : "016",
+ "name" : "016",
"data" : [
[
"Perl",
@@ -290,11 +290,10 @@
"Blog",
13
]
- ],
- "id" : "016",
- "name" : "016"
+ ]
},
{
+ "name" : "017",
"id" : "017",
"data" : [
[
@@ -309,10 +308,11 @@
"Blog",
12
]
- ],
- "name" : "017"
+ ]
},
{
+ "id" : "018",
+ "name" : "018",
"data" : [
[
"Perl",
@@ -326,12 +326,9 @@
"Blog",
14
]
- ],
- "id" : "018",
- "name" : "018"
+ ]
},
{
- "name" : "019",
"data" : [
[
"Perl",
@@ -346,10 +343,10 @@
13
]
],
- "id" : "019"
+ "id" : "019",
+ "name" : "019"
},
{
- "id" : "020",
"data" : [
[
"Perl",
@@ -364,10 +361,10 @@
13
]
],
+ "id" : "020",
"name" : "020"
},
{
- "id" : "021",
"data" : [
[
"Perl",
@@ -382,11 +379,10 @@
10