aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-018/mark-senn/blog.txt1
-rw-r--r--challenge-018/mark-senn/perl6/ch-1.p633
-rw-r--r--challenge-018/mark-senn/perl6/ch-2.p655
-rw-r--r--stats/pwc-current.json235
-rw-r--r--stats/pwc-language-breakdown-summary.json60
-rw-r--r--stats/pwc-language-breakdown.json172
-rw-r--r--stats/pwc-leaders.json896
-rw-r--r--stats/pwc-summary-1-30.json32
-rw-r--r--stats/pwc-summary-31-60.json112
-rw-r--r--stats/pwc-summary-61-90.json92
-rw-r--r--stats/pwc-summary-91-120.json38
-rw-r--r--stats/pwc-summary.json32
12 files changed, 933 insertions, 825 deletions
diff --git a/challenge-018/mark-senn/blog.txt b/challenge-018/mark-senn/blog.txt
new file mode 100644
index 0000000000..a69c326878
--- /dev/null
+++ b/challenge-018/mark-senn/blog.txt
@@ -0,0 +1 @@
+https://engineering.purdue.edu/~mark/pwc-018.pdf
diff --git a/challenge-018/mark-senn/perl6/ch-1.p6 b/challenge-018/mark-senn/perl6/ch-1.p6
new file mode 100644
index 0000000000..883a690d88
--- /dev/null
+++ b/challenge-018/mark-senn/perl6/ch-1.p6
@@ -0,0 +1,33 @@
+# Perl Weekly Challenge - 018
+# Task #1
+#
+# See
+# engineering.purdue.edu/~mark/pwc-018.pdf
+# for more information.
+
+# Run using Perl v6.d.
+use v6.d;
+
+# Make an array of sets.
+# Each element of the array will contain a set of all substrings
+# for the corresponding word.
+my SetHash @set;
+
+# For each word on the command line
+for (0 .. @*ARGS.elems - 1) -> $i {
+ # Get the word.
+ my $word = @*ARGS[$i];
+ # Compute and store every substring in the word in @set[$i].
+ for (0 .. $word.chars - 1) -> $startpos {
+ for ($startpos .. $word.chars - 1) -> $endpos {
+ my $substr = $word.substr($startpos .. $endpos);
+ @set[$i]{$substr} = True;
+ }
+ }
+}
+
+# Compute the intersection of all sets,
+# sort by the number of characters,
+# get the last entry (the one with the most characters),
+# and print it.
+([(&)] @set).keys.sort({.chars}).tail.say;
diff --git a/challenge-018/mark-senn/perl6/ch-2.p6 b/challenge-018/mark-senn/perl6/ch-2.p6
new file mode 100644
index 0000000000..585b3c89cf
--- /dev/null
+++ b/challenge-018/mark-senn/perl6/ch-2.p6
@@ -0,0 +1,55 @@
+# Perl Weekly Challenge - 018
+# Task #2
+#
+# See
+# engineering.purdue.edu/~mark/pwc-018.pdf
+# for more information.
+
+# Run using Perl v6.d.
+use v6.d;
+
+# Priorites and values are stored in parallel arrays.
+my (@priority, @value);
+
+sub insert_with_priority($priority, $value)
+{
+ @priority.push($priority); @value.push($value);
+}
+
+sub pull_highest_priority_element
+{
+ (is_empty) and return Nil;
+ my $i = (0..^@priority).sort( {@priority[$^a] < @priority[$^b]}).head;
+ my $value = @value[$i];
+ @priority.splice($i, 1, ()); @value.splice($i, 1, ());
+ return $value;
+}
+
+sub print_queue
+{
+ "print_queue".say;
+ for (0..^@priority) -> $i
+ {
+ " {@priority[$i]} {@value[$i]}".say;
+ }
+}
+
+sub is_empty
+{
+ return !@priority.elems;
+}
+
+print_queue;
+insert_with_priority(5, "this is the first priority 5 item");
+print_queue;
+insert_with_priority(5, "this is the second priority 5 item");
+print_queue;
+insert_with_priority(4, "this is the first priority 4 item");
+print_queue;
+pull_highest_priority_element.say;
+print_queue;
+pull_highest_priority_element.say;
+print_queue;
+pull_highest_priority_element.say;
+print_queue;
+print_queue;
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index f26f4a5a3a..be54eddd72 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,18 +1,25 @@
{
- "title" : {
- "text" : "Perl Weekly Challenge - 018"
- },
- "xAxis" : {
- "type" : "category"
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
+ }
},
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
+ "legend" : {
+ "enabled" : 0
+ },
"drilldown" : {
"series" : [
{
+ "name" : "Adam Russell",
"id" : "Adam Russell",
"data" : [
[
@@ -23,21 +30,19 @@
"Blog",
1
]
- ],
- "name" : "Adam Russell"
+ ]
},
{
- "id" : "Andrezgz",
+ "name" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Andrezgz"
+ "id" : "Andrezgz"
},
{
- "name" : "Arne Sommer",
"id" : "Arne Sommer",
"data" : [
[
@@ -48,11 +53,10 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Arne Sommer"
},
{
- "name" : "Athanasius",
- "id" : "Athanasius",
"data" : [
[
"Perl 5",
@@ -62,7 +66,9 @@
"Perl 6",
2
]
- ]
+ ],
+ "id" : "Athanasius",
+ "name" : "Athanasius"
},
{
"data" : [
@@ -75,14 +81,14 @@
"name" : "Daniel Mantovani"
},
{
- "id" : "Duane Powell",
+ "name" : "Duane Powell",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Duane Powell"
+ "id" : "Duane Powell"
},
{
"id" : "Duncan C. White",
@@ -96,6 +102,7 @@
},
{
"name" : "E. Choroba",
+ "id" : "E. Choroba",
"data" : [
[
"Perl 5",
@@ -105,38 +112,37 @@
"Blog",
2
]
- ],
- "id" : "E. Choroba"
+ ]
},
{
- "id" : "Feng Chang",
"data" : [
[
"Perl 6",
2
]
],
+ "id" : "Feng Chang",
"name" : "Feng Chang"
},
{
- "id" : "Francis Whittle",
+ "name" : "Francis Whittle",
"data" : [
[
"Perl 6",
2
]
],
- "name" : "Francis Whittle"
+ "id" : "Francis Whittle"
},
{
+ "name" : "Jaime Corchado",
"id" : "Jaime Corchado",
"data" : [
[
"Perl 5",
2
]
- ],
- "name" : "Jaime Corchado"
+ ]
},
{
"data" : [
@@ -154,6 +160,7 @@
},
{
"name" : "Joelle Maslak",
+ "id" : "Joelle Maslak",
"data" : [
[
"Perl 5",
@@ -163,18 +170,17 @@
"Perl 6",
3
]
- ],
- "id" : "Joelle Maslak"
+ ]
},
{
- "name" : "Kevin Colyer",
- "id" : "Kevin Colyer",
"data" : [
[
"Perl 6",
1
]
- ]
+ ],
+ "id" : "Kevin Colyer",
+ "name" : "Kevin Colyer"
},
{
"data" : [
@@ -187,6 +193,8 @@
"name" : "Kian-Meng Ang"
},
{
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl 5",
@@ -200,29 +208,41 @@
"Blog",
2
]
- ],
- "id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
+ ]
},
{
- "id" : "Lubos Kolouch",
"data" : [
[
"Perl 5",
2
]
],
+ "id" : "Lubos Kolouch",
"name" : "Lubos Kolouch"
},
{
- "id" : "Mark Anderson",
+ "name" : "Mark Anderson",
"data" : [
[
"Perl 5",
1
]
],
- "name" : "Mark Anderson"
+ "id" : "Mark Anderson"
+ },
+ {
+ "name" : "Mark Senn",
+ "data" : [
+ [
+ "Perl 6",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "id" : "Mark Senn"
},
{
"name" : "Martin Barth",
@@ -246,26 +266,26 @@
},
{
"name" : "Ozzy",
+ "id" : "Ozzy",
"data" : [
[
"Perl 6",
1
]
- ],
- "id" : "Ozzy"
+ ]
},
{
- "name" : "Randy Lauen",
"id" : "Randy Lauen",
"data" : [
[
"Perl 6",
2
]
- ]
+ ],
+ "name" : "Randy Lauen"
},
{
- "name" : "Roger Bell West",
+ "id" : "Roger Bell West",
"data" : [
[
"Perl 5",
@@ -276,11 +296,9 @@
1
]
],
- "id" : "Roger Bell West"
+ "name" : "Roger Bell West"
},
{
- "name" : "Ruben Westerberg",
- "id" : "Ruben Westerberg",
"data" : [
[
"Perl 5",
@@ -290,27 +308,29 @@
"Perl 6",
2
]
- ]
+ ],
+ "id" : "Ruben Westerberg",
+ "name" : "Ruben Westerberg"
},
{
+ "name" : "Simon Proctor",
"id" : "Simon Proctor",
"data" : [
[
"Perl 6",
2
]
- ],
- "name" : "Simon Proctor"
+ ]
},
{
"name" : "Steven Wilson",
- "id" : "Steven Wilson",
"data" : [
[
"Perl 5",
1
]
- ]
+ ],
+ "id" : "Steven Wilson"
},
{
"data" : [
@@ -323,8 +343,6 @@
"name" : "Veesh Goldman"
},
{
- "name" : "Yozen Hernandez",
- "id" : "Yozen Hernandez",
"data" : [
[
"Perl 5",
@@ -334,39 +352,40 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Yozen Hernandez",
+ "name" : "Yozen Hernandez"
}
]
},
- "subtitle" : {
- "text" : "[Champions: 28] Last updated at 2019-07-28 23:07:45 GMT"
- },
"tooltip" : {
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><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/>",
"followPointer" : 1
},
"chart" : {
"type" : "column"
},
+ "title" : {
+ "text" : "Perl Weekly Challenge - 018"
+ },
"series" : [
{
- "colorByPoint" : 1,
"data" : [
{
- "name" : "Adam Russell",
"y" : 3,
+ "name" : "Adam Russell",
"drilldown" : "Adam Russell"
},
{
- "name" : "Andrezgz",
+ "drilldown" : "Andrezgz",
"y" : 2,
- "drilldown" : "Andrezgz"
+ "name" : "Andrezgz"
},
{
- "y" : 3,
"drilldown" : "Arne Sommer",
- "name" : "Arne Sommer"
+ "name" : "Arne Sommer",
+ "y" : 3
},
{
"name" : "Athanasius",
@@ -379,14 +398,14 @@
"drilldown" : "Daniel Mantovani"
},
{
- "name" : "Duane Powell",
+ "drilldown" : "Duane Powell",
"y" : 2,
- "drilldown" : "Duane Powell"
+ "name" : "Duane Powell"
},
{
+ "y" : 2,
"name" : "Duncan C. White",
- "drilldown" : "Duncan C. White",
- "y" : 2
+ "drilldown" : "Duncan C. White"
},
{
"drilldown" : "E. Choroba",
@@ -394,24 +413,24 @@
"name" : "E. Choroba"
},
{
- "name" : "Feng Chang",
+ "drilldown" : "Feng Chang",
"y" : 2,
- "drilldown" : "Feng Chang"
+ "name" : "Feng Chang"
},
{
- "y" : 2,
"drilldown" : "Francis Whittle",
- "name" : "Francis Whittle"
+ "name" : "Francis Whittle",
+ "y" : 2
},
{
+ "name" : "Jaime Corchado",
"y" : 2,
- "drilldown" : "Jaime Corchado",
- "name" : "Jaime Corchado"
+ "drilldown" : "Jaime Corchado"
},
{
- "name" : "Jaldhar H. Vyas",
+ "drilldown" : "Jaldhar H. Vyas",
"y" : 2,
- "drilldown" : "Jaldhar H. Vyas"
+ "name" : "Jaldhar H. Vyas"
},
{
"drilldown" : "Joelle Maslak",
@@ -420,58 +439,63 @@
},
{
"y" : 1,
- "drilldown" : "Kevin Colyer",
- "name" : "Kevin Colyer"
+ "name" : "Kevin Colyer",
+ "drilldown" : "Kevin Colyer"
},
{
"drilldown" : "Kian-Meng Ang",
- "y" : 1,
- "name" : "Kian-Meng Ang"
+ "name" : "Kian-Meng Ang",
+ "y" : 1
},
{
+ "name" : "Laurent Rosenfeld",
"y" : 6,
- "drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
+ "drilldown" : "Laurent Rosenfeld"
},
{
- "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch",
"y" : 2,
- "drilldown" : "Lubos Kolouch"
+ "name" : "Lubos Kolouch"
},
{
- "name" : "Mark Anderson",
"drilldown" : "Mark Anderson",
- "y" : 1
+ "y" : 1,
+ "name" : "Mark Anderson"
+ },
+ {
+ "drilldown" : "Mark Senn",
+ "name" : "Mark Senn",
+ "y" : 3
},
{
- "drilldown" : "Martin Barth",
"y" : 1,
- "name" : "Martin Barth"
+ "name" : "Martin Barth",
+ "drilldown" : "Martin Barth"
},
{
- "name" : "Noud",
+ "drilldown" : "Noud",
"y" : 2,
- "drilldown" : "Noud"
+ "name" : "Noud"
},
{
+ "y" : 1,
"name" : "Ozzy",
- "drilldown" : "Ozzy",
- "y" : 1
+ "drilldown" : "Ozzy"
},
{
"drilldown" : "Randy Lauen",
- "y" : 2,
- "name" : "Randy Lauen"
+ "name" : "Randy Lauen",
+ "y" : 2
},
{
- "name" : "Roger Bell West",
"drilldown" : "Roger Bell West",
+ "name" : "Roger Bell West",
"y" : 3
},
{
"name" : "Ruben Westerberg",
- "drilldown" : "Ruben Westerberg",
- "y" : 4
+ "y" : 4,
+ "drilldown" : "Ruben Westerberg"
},
{
"drilldown" : "Simon Proctor",
@@ -480,33 +504,28 @@
},
{
"y" : 1,
- "drilldown" : "Steven Wilson",
- "name" : "Steven Wilson"
+ "name" : "Steven Wilson",
+ "drilldown" : "Steven Wilson"
},
{
- "name" : "Veesh Goldman",
"y" : 1,
+ "name" : "Veesh Goldman",
"drilldown" : "Veesh Goldman"
},
{
+ "drilldown" : "Yozen Hernandez",
"name" : "Yozen Hernandez",
- "y" : 3,
- "drilldown" : "Yozen Hernandez"
+ "y" : 3
}
],
+ "colorByPoint" : 1,
"name" : "Perl Weekly Challenge - 018"
}
],
- "legend" : {
- "enabled" : 0
+ "subtitle" : {
+ "text" : "[Champions: 29] Last updated at 2019-07-28 23:47:44 GMT"
},
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
+ "xAxis" : {
+ "type" : "category"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 3ae04a825c..d830b0bd3d 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,43 +1,22 @@
{
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- }
- },
- "chart" : {
- "type" : "column"
- },
- "subtitle" : {
- "text" : "Last updated at 2019-07-28 23:08:16 GMT"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "legend" : {
- "enabled" : "false"
- },
"series" : [
{
"dataLabels" : {
"color" : "#FFFFFF",
- "enabled" : "true",
"align" : "right",
+ "y" : 10,
+ "format" : "{point.y:.0f}",
"rotation" : -90,
+ "enabled" : "true",
"style" : {
"fontFamily" : "Verdana, sans-serif",
"fontSize" : "13px"
- },
- "y" : 10,
- "format" : "{point.y:.0f}"
+ }
},
"data" : [
[
"Blog",
- 172
+ 173
],
[
"Perl 5",
@@ -45,19 +24,40 @@
],
[
"Perl 6",
- 437
+ 439
]
],
"name" : "Contributions"
}
],
- "title" : {
- "text" : "Perl Weekly Challenge Contributions - 2019"
- },
"yAxis" : {
"title" : {
"text" : null
},
"min" : 0
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2019-07-28 23:48:08 GMT"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions - 2019"
+ },
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ }
+ },
+ "legend" : {
+ "enabled" : "false"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index c16de9a3ae..69e53b6925 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,40 +1,42 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
}
},
- "title" : {
- "text" : "Perl Weekly Challenge Language"
- },
"series" : [
{
+ "colorByPoint" : "true",
"name" : "Perl Weekly Challenge Languages",
"data" : [
{
"drilldown" : "001",
- "name" : "#001",
- "y" : 123
+ "y" : 123,
+ "name" : "#001"
},
{
- "drilldown" : "002",
"name" : "#002",
+ "drilldown" : "002",
"y" : 104
},
{
- "drilldown" : "003",
"name" : "#003",
- "y" : 66
+ "y" : 66,
+ "drilldown" : "003"
},
{
"y" : 84,
- "name" : "#004",
- "drilldown" : "004"
+ "drilldown" : "004",
+ "name" : "#004"
},
{
- "drilldown" : "005",
"name" : "#005",
- "y" : 66
+ "y" : 66,
+ "drilldown" : "005"
},
{
"name" : "#006",
@@ -42,19 +44,19 @@
"drilldown" : "006"
},
{
- "y" : 54,
"name" : "#007",
- "drilldown" : "007"
+ "drilldown" : "007",
+ "y" : 54
},
{
+ "drilldown" : "008",
"y" : 67,
- "name" : "#008",
- "drilldown" : "008"
+ "name" : "#008"
},
{
"y" : 65,
- "name" : "#009",
- "drilldown" : "009"
+ "drilldown" : "009",
+ "name" : "#009"
},
{
"name" : "#010",
@@ -72,43 +74,62 @@
"drilldown" : "012"
},
{
- "drilldown" : "013",
"y" : 74,
+ "drilldown" : "013",
"name" : "#013"
},
{
- "name" : "#014",
+ "drilldown" : "014",
"y" : 94,
- "drilldown" : "014"
+ "name" : "#014"
},
{
- "drilldown" : "015",
"y" : 90,
+ "drilldown" : "015",
"name" : "#015"
},
{
- "y" : 64,
"name" : "#016",
- "drilldown" : "016"
+ "drilldown" : "016",
+ "y" : 64
},
{
+ "name" : "#017",
"drilldown" : "017",
- "y" : 77,
- "name" : "#017"
+ "y" : 77
},
{
+ "y" : 70,
"drilldown" : "018",
- "y" : 67,
"name" : "#018"
}
- ],
- "colorByPoint" : "true"
+ ]
}
],
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : "true"
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-28 23:48:08 GMT"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Language"
+ },
"drilldown" : {
"series" : [
{
"id" : "001",
+ "name" : "001",
"data" : [
[
"Perl 5",
@@ -122,8 +143,7 @@
"Blog",
10
]
- ],
- "name" : "001"
+ ]
},
{
"data" : [
@@ -145,7 +165,6 @@
},
{
"id" : "003",
- "name" : "003",
"data" : [
[
"Perl 5",
@@ -159,10 +178,11 @@
"Blog",
8
]
- ]
+ ],
+ "name" : "003"
},
{
- "id" : "004",
+ "name" : "004",
"data" : [
[
"Perl 5",
@@ -177,11 +197,10 @@
9
]
],
- "name" : "004"
+ "id" : "004"
},
{
"id" : "005",
- "name" : "005",
"data" : [
[
"Perl 5",
@@ -195,10 +214,10 @@
"Blog",
11
]
- ]
+ ],
+ "name" : "005"
},
{
- "id" : "006",
"data" : [
[
"Perl 5",
@@ -213,9 +232,11 @@
6
]
],
- "name" : "006"
+ "name" : "006",
+ "id" : "006"
},
{
+ "id" : "007",
"name" : "007",
"data" : [
[
@@ -230,10 +251,10 @@
"Blog",
8
]
- ],
- "id" : "007"
+ ]
},
{
+ "id" : "008",
"name" : "008",
"data" : [
[
@@ -248,12 +269,10 @@
"Blog",
9
]
- ],
- "id" : "008"
+ ]
},
{
"id" : "009",
- "name" : "009",
"data" : [
[
"Perl 5",
@@ -267,10 +286,10 @@
"Blog",
11
]
- ]
+ ],
+ "name" : "009"
},
{
- "id" : "010",
"name" : "010",
"data" : [
[
@@ -285,9 +304,12 @@
"Blog",
9
]
- ]
+ ],
+ "id" : "010"
},
{
+ "id" : "011",
+ "name" : "011",
"data" : [
[
"Perl 5",
@@ -301,9 +323,7 @@
"Blog",
8
]
- ],
- "name" : "011",
- "id" : "011"
+ ]
},
{
"data" : [
@@ -324,6 +344,7 @@
"id" : "012"
},
{
+ "id" : "013",
"data" : [
[
"Perl 5",
@@ -338,8 +359,7 @@
11
]
],
- "name" : "013",
- "id" : "013"
+ "name" : "013"
},
{
"id" : "014",
@@ -360,8 +380,6 @@
"name" : "014"
},
{
- "id" : "015",
- "name" : "015",
"data" : [
[
"Perl 5",
@@ -375,10 +393,11 @@
"Blog",
12
]
- ]
+ ],
+ "name" : "015",
+ "id" : "015"
},
{
- "name" : "016",
"data" : [
[
"Perl 5",
@@ -393,9 +412,11 @@
10
]
],
+ "name" : "016",
"id" : "016"
},
{
+ "id" : "017",
"name" : "017",
"data" : [
[
@@ -410,10 +431,10 @@
"Blog",
10
]
- ],
- "id" : "017"
+ ]
},
{
+ "name" : "018",
"data" : [
[
"Perl 5",
@@ -421,42 +442,21 @@
],
[
"Perl 6",
- 26
+ 28
],
[
"Blog",
- 9
+ 10
]
],
- "name" : "018",
"id" : "018"
}
]
},
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
- },
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-07-28 23:08:16 GMT"
- },
- "chart" : {
- "type" : "column"
- },
- "xAxis" : {
- "typ