aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2019-11-10 22:45:09 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2019-11-10 22:45:09 +0000
commit678178f13e20a7fbb1eb7391c4980617a4ddcd79 (patch)
treef7169d86e532fb796ef1c3821895e593c85efb8a
parent22350ab028c5058c01d2bcf037f97645d1d83abb (diff)
downloadperlweeklychallenge-club-678178f13e20a7fbb1eb7391c4980617a4ddcd79.tar.gz
perlweeklychallenge-club-678178f13e20a7fbb1eb7391c4980617a4ddcd79.tar.bz2
perlweeklychallenge-club-678178f13e20a7fbb1eb7391c4980617a4ddcd79.zip
- Added solutions by Mark Senn.
-rw-r--r--challenge-033/mark-senn/perl6/ch-1.p653
-rw-r--r--challenge-033/mark-senn/perl6/ch-2.p652
-rw-r--r--stats/pwc-current.json567
-rw-r--r--stats/pwc-language-breakdown-summary.json54
-rw-r--r--stats/pwc-language-breakdown.json262
-rw-r--r--stats/pwc-leaders.json958
-rw-r--r--stats/pwc-summary-1-30.json36
-rw-r--r--stats/pwc-summary-121-150.json38
-rw-r--r--stats/pwc-summary-31-60.json34
-rw-r--r--stats/pwc-summary-61-90.json94
-rw-r--r--stats/pwc-summary-91-120.json116
-rw-r--r--stats/pwc-summary.json348
12 files changed, 1366 insertions, 1246 deletions
diff --git a/challenge-033/mark-senn/perl6/ch-1.p6 b/challenge-033/mark-senn/perl6/ch-1.p6
new file mode 100644
index 0000000000..9234043883
--- /dev/null
+++ b/challenge-033/mark-senn/perl6/ch-1.p6
@@ -0,0 +1,53 @@
+#
+# Perl Weekly Challenge - 033
+# Task #1
+#
+# Mark Senn, http://engineering.purdue.edu/~mark
+# November 5, 2019
+#
+# From
+# https://perlweeklychallenge.org/blog/perl-weekly-challenge-033#task-1
+# Create a script that accepts one or more files specified on the
+# command-line and count the number of times letters appeared in the
+# files.
+#
+# So with the following input file sample.txt
+# The quick brown fox jumps over the lazy dog.
+# the script would display something like:
+# a: 1
+# b: 1
+# c: 1
+# d: 1
+# e: 3
+# f: 1
+# g: 1
+# h: 2
+# i: 1
+# j: 1
+# k: 1
+# l: 1
+# m: 1
+# n: 1
+# o: 4
+# p: 1
+# q: 1
+# r: 2
+# s: 1
+# t: 2
+# u: 2
+# v: 1
+# w: 1
+# x: 1
+# y: 1
+# z: 1
+#
+
+# Run using Raku v6.d;
+use v6.d;
+
+# Tally the number of letters in all files specified on the command line.
+my %count;
+$*ARGFILES.lines.lc.comb(/<[a..z]>/).map({%count{$_}++});
+
+# Print the tally.
+%count.keys.sort.map({"$_: %count{$_}".say});
diff --git a/challenge-033/mark-senn/perl6/ch-2.p6 b/challenge-033/mark-senn/perl6/ch-2.p6
new file mode 100644
index 0000000000..c1f1bddba6
--- /dev/null
+++ b/challenge-033/mark-senn/perl6/ch-2.p6
@@ -0,0 +1,52 @@
+#
+# Perl Weekly Challenge - 033
+# Task #2
+#
+# Mark Senn, http://engineering.purdue.edu/~mark
+# November 10, 2019
+#
+# From
+# https://perlweeklychallenge.org/blog/perl-weekly-challenge-033#task-2
+# Write a script to print 11x11 multiplication table,
+# only the top half triangle.
+#
+# x| 1 2 3 4 5 6 7 8 9 10 11
+# ---+--------------------------------------------
+# 1| 1 2 3 4 5 6 7 8 9 10 11
+# 2| 4 6 8 10 12 14 16 18 20 22
+# 3| 9 12 15 18 21 24 27 30 33
+# 4| 16 20 24 28 32 36 40 44
+# 5| 25 30 35 40 45 50 55
+# 6| 36 42 48 54 60 66
+# 7| 49 56 63 70 77
+# 8| 64 72 80 88
+# 9| 81 90 99
+# 10| 100 110
+# 11| 121
+#
+
+# Run using Raku v6.d;
+use v6.d;
+
+# Print first two lines.
+# I just cut and pasted the lines from the problem
+# description so it would be easy to see if the
+# spacing was correct in the rest of the table.
+print q:to/END/;
+ x| 1 2 3 4 5 6 7 8 9 10 11
+---+--------------------------------------------
+END
+
+# Print rest of table.
+my $n = 11;
+for (1..$n) -> $row
+{
+ "%3d|".printf($row);
+ for (1..$n) -> $col
+ {
+ ($col < $row)
+ ?? " ".print
+ !! "%4d".printf($row*$col);
+ }
+ ''.say;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index d9c13a5021..5575c84794 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,209 +1,6 @@
{
- "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/>"
- },
- "series" : [
- {
- "name" : "Perl Weekly Challenge - 033",
- "colorByPoint" : 1,
- "data" : [
- {
- "name" : "Adam Russell",
- "y" : 5,
- "drilldown" : "Adam Russell"
- },
- {
- "name" : "Andrezgz",
- "y" : 2,
- "drilldown" : "Andrezgz"
- },
- {
- "name" : "Arne Sommer",
- "y" : 3,
- "drilldown" : "Arne Sommer"
- },
- {
- "name" : "Athanasius",
- "drilldown" : "Athanasius",
- "y" : 4
- },
- {
- "drilldown" : "Bruce Van Allen",
- "y" : 2,
- "name" : "Bruce Van Allen"
- },
- {
- "y" : 3,
- "drilldown" : "Burkhard Nickels",
- "name" : "Burkhard Nickels"
- },
- {
- "y" : 2,
- "drilldown" : "Colin Crain",
- "name" : "Colin Crain"
- },
- {
- "drilldown" : "Daniel Mita",
- "y" : 2,
- "name" : "Daniel Mita"
- },
- {
- "name" : "Darren Bottin",
- "y" : 2,
- "drilldown" : "Darren Bottin"
- },
- {
- "drilldown" : "Dave Cross",
- "y" : 2,
- "name" : "Dave Cross"
- },
- {
- "drilldown" : "Dave Jacoby",
- "y" : 2,
- "name" : "Dave Jacoby"
- },
- {
- "drilldown" : "Dr James A. Smith",
- "y" : 2,
- "name" : "Dr James A. Smith"
- },
- {
- "drilldown" : "Duane Powell",
- "y" : 2,
- "name" : "Duane Powell"
- },
- {
- "name" : "Duncan C. White",
- "y" : 2,
- "drilldown" : "Duncan C. White"
- },
- {
- "y" : 3,
- "drilldown" : "E. Choroba",
- "name" : "E. Choroba"
- },
- {
- "name" : "Fabrizio Poggi",
- "y" : 2,
- "drilldown" : "Fabrizio Poggi"
- },
- {
- "name" : "Jaldhar H. Vyas",
- "drilldown" : "Jaldhar H. Vyas",
- "y" : 5
- },
- {
- "name" : "Javier Luque",
- "y" : 5,
- "drilldown" : "Javier Luque"
- },
- {
- "name" : "Joelle Maslak",
- "drilldown" : "Joelle Maslak",
- "y" : 4
- },
- {
- "drilldown" : "Kevin Colyer",
- "y" : 2,
- "name" : "Kevin Colyer"
- },
- {
- "drilldown" : "Lars Thegler",
- "y" : 2,
- "name" : "Lars Thegler"
- },
- {
- "drilldown" : "Laurent Rosenfeld",
- "y" : 5,
- "name" : "Laurent Rosenfeld"
- },
- {
- "name" : "Lubos Kolouch",
- "y" : 2,
- "drilldown" : "Lubos Kolouch"
- },
- {
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson",
- "y" : 1
- },
- {
- "name" : "Markus Holzer",
- "drilldown" : "Markus Holzer",
- "y" : 2
- },
- {
- "drilldown" : "Nazareno Delucca",
- "y" : 2,
- "name" : "Nazareno Delucca"
- },
- {
- "name" : "Noud",
- "y" : 2,
- "drilldown" : "Noud"
- },
- {
- "y" : 2,
- "drilldown" : "Petr Roubicek",
- "name" : "Petr Roubicek"
- },
- {
- "name" : "Prajith P",
- "y" : 2,
- "drilldown" : "Prajith P"
- },
- {
- "drilldown" : "Rage311",
- "y" : 2,
- "name" : "Rage311"
- },
- {
- "drilldown" : "Richard Nuttall",
- "y" : 2,
- "name" : "Richard Nuttall"
- },
- {
- "y" : 5,
- "drilldown" : "Roger Bell West",
- "name" : "Roger Bell West"
- },
- {
- "y" : 4,
- "drilldown" : "Ruben Westerberg",
- "name" : "Ruben Westerberg"
- },
- {
- "name" : "Ryan Thompson",
- "y" : 4,
- "drilldown" : "Ryan Thompson"
- },
- {
- "name" : "Simon Proctor",
- "y" : 2,
- "drilldown" : "Simon Proctor"
- },
- {
- "name" : "Steven Wilson",
- "drilldown" : "Steven Wilson",
- "y" : 2
- },
- {
- "y" : 4,
- "drilldown" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
- },
- {
- "drilldown" : "Yet Ebreo",
- "y" : 2,
- "name" : "Yet Ebreo"
- }
- ]
- }
- ],
- "title" : {
- "text" : "Perl Weekly Challenge - 033"
+ "legend" : {
+ "enabled" : 0
},
"drilldown" : {
"series" : [
@@ -222,18 +19,18 @@
1
]
],
- "name" : "Adam Russell",
- "id" : "Adam Russell"
+ "id" : "Adam Russell",
+ "name" : "Adam Russell"
},
{
- "name" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
],
- "id" : "Andrezgz"
+ "id" : "Andrezgz",
+ "name" : "Andrezgz"
},
{
"data" : [
@@ -250,8 +47,6 @@
"id" : "Arne Sommer"
},
{
- "id" : "Athanasius",
- "name" : "Athanasius",
"data" : [
[
"Perl 5",
@@ -261,7 +56,9 @@
"Perl 6",
2
]
- ]
+ ],
+ "name" : "Athanasius",
+ "id" : "Athanasius"
},
{
"id" : "Bruce Van Allen",
@@ -274,7 +71,6 @@
]
},
{
- "name" : "Burkhard Nickels",
"data" : [
[
"Perl 5",
@@ -285,21 +81,22 @@
1
]
],
+ "name" : "Burkhard Nickels",
"id" : "Burkhard Nickels"
},
{
- "id" : "Colin Crain",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Colin Crain"
+ "name" : "Colin Crain",
+ "id" : "Colin Crain"
},
{
- "id" : "Daniel Mita",
"name" : "Daniel Mita",
+ "id" : "Daniel Mita",
"data" : [
[
"Perl 6",
@@ -314,8 +111,8 @@
2
]
],
- "name" : "Darren Bottin",
- "id" : "Darren Bottin"
+ "id" : "Darren Bottin",
+ "name" : "Darren Bottin"
},
{
"data" : [
@@ -324,8 +121,8 @@
2
]
],
- "name" : "Dave Cross",
- "id" : "Dave Cross"
+ "id" : "Dave Cross",
+ "name" : "Dave Cross"
},
{
"data" : [
@@ -334,18 +131,18 @@
2
]
],
- "name" : "Dave Jacoby",
- "id" : "Dave Jacoby"
+ "id" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
},
{
+ "id" : "Dr James A. Smith",
"name" : "Dr James A. Smith",
"data" : [
[
"Perl 5",
2
]
- ],
- "id" : "Dr James A. Smith"
+ ]
},
{
"data" : [
@@ -358,17 +155,16 @@
"id" : "Duane Powell"
},
{
- "name" : "Duncan C. White",
"data" : [
[
"Perl 5",
2
]
],
- "id" : "Duncan C. White"
+ "id" : "Duncan C. White",
+ "name" : "Duncan C. White"
},
{
- "name" : "E. Choroba",
"data" : [
[
"Perl 5",
@@ -379,21 +175,20 @@
1
]
],
- "id" : "E. Choroba"
+ "id" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
+ "name" : "Fabrizio Poggi",
"id" : "Fabrizio Poggi",
"data" : [
[
"Perl 5",
2
]
- ],
- "name" : "Fabrizio Poggi"
+ ]
},
{
- "id" : "Jaldhar H. Vyas",
- "name" : "Jaldhar H. Vyas",
"data" : [
[
"Perl 5",
@@ -407,9 +202,12 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Jaldhar H. Vyas",
+ "name" : "Jaldhar H. Vyas"
},
{
+ "name" : "Javier Luque",
"id" : "Javier Luque",
"data" : [
[
@@ -424,11 +222,11 @@
"Blog",
1
]
- ],
- "name" : "Javier Luque"
+ ]
},
{
"name" : "Joelle Maslak",
+ "id" : "Joelle Maslak",
"data" : [
[
"Perl 5",
@@ -438,8 +236,7 @@
"Perl 6",
2
]
- ],
- "id" : "Joelle Maslak"
+ ]
},
{
"data" : [
@@ -452,17 +249,18 @@
"id" : "Kevin Colyer"
},
{
- "name" : "Lars Thegler",
"data" : [
[
"Perl 5",
2
]
],
- "id" : "Lars Thegler"
+ "id" : "Lars Thegler",
+ "name" : "Lars Thegler"
},
{
"id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl 5",
@@ -476,22 +274,21 @@
"Blog",
1
]
- ],
- "name" : "Laurent Rosenfeld"
+ ]
},
{
- "name" : "Lubos Kolouch",
"data" : [
[
"Perl 5",
2
]
],
+ "name" : "Lubos Kolouch",
"id" : "Lubos Kolouch"
},
{
- "id" : "Mark Anderson",
"name" : "Mark Anderson",
+ "id" : "Mark Anderson",
"data" : [
[
"Perl 5",
@@ -500,8 +297,18 @@
]
},
{
- "id" : "Markus Holzer",
+ "id" : "Mark Senn",
+ "name" : "Mark Senn",
+ "data" : [
+ [
+ "Perl 6",
+ 2
+ ]
+ ]
+ },
+ {
"name" : "Markus Holzer",
+ "id" : "Markus Holzer",
"data" : [
[
"Perl 6",
@@ -510,24 +317,24 @@
]
},
{
+ "id" : "Nazareno Delucca",
"name" : "Nazareno Delucca",
"data" : [
[
"Perl 5",
2
]
- ],
- "id" : "Nazareno Delucca"
+ ]
},
{
+ "id" : "Noud",
+ "name" : "Noud",
"data" : [
[
"Perl 6",
2
]
- ],
- "name" : "Noud",
- "id" : "Noud"
+ ]
},
{
"data" : [
@@ -541,23 +348,23 @@
},
{
"id" : "Prajith P",
+ "name" : "Prajith P",
"data" : [
[
"Perl 5",
2
]
- ],
- "name" : "Prajith P"
+ ]
},
{
- "id" : "Rage311",
- "name" : "Rage311",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "name" : "Rage311",
+ "id" : "Rage311"
},
{
"id" : "Richard Nuttall",
@@ -571,6 +378,7 @@
},
{
"id" : "Roger Bell West",
+ "name" : "Roger Bell West",
"data" : [
[
"Perl 5",
@@ -584,11 +392,9 @@
"Blog",
1
]
- ],
- "name" : "Roger Bell West"
+ ]
},
{
- "name" : "Ruben Westerberg",
"data" : [
[
"Perl 5",
@@ -599,10 +405,12 @@
2
]
],
+ "name" : "Ruben Westerberg",
"id" : "Ruben Westerberg"
},
{
"name" : "Ryan Thompson",
+ "id" : "Ryan Thompson",
"data" : [
[
"Perl 5",
@@ -612,32 +420,29 @@
"Perl 6",
2
]
- ],
- "id" : "Ryan Thompson"
+ ]
},
{
+ "name" : "Simon Proctor",
"id" : "Simon Proctor",
"data" : [
[
"Perl 6",
2
]
- ],
- "name" : "Simon Proctor"
+ ]
},
{
- "id" : "Steven Wilson",
"data" : [
[
"Perl 5",
2
]
],
+ "id" : "Steven Wilson",
"name" : "Steven Wilson"
},
{
- "id" : "Ulrich Rieke",
- "name" : "Ulrich Rieke",
"data" : [
[
"Perl 5",
@@ -647,7 +452,9 @@
"Perl 6",
2
]
- ]
+ ],
+ "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
},
{
"id" : "Yet Ebreo",
@@ -661,11 +468,6 @@
}
]
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
"plotOptions" : {
"series" : {
"dataLabels" : {
@@ -675,16 +477,229 @@
"borderWidth" : 0
}
},
- "chart" : {
- "type" : "column"
+ "series" : [
+ {
+ "name" : "Perl Weekly Challenge - 033",
+ "data" : [
+ {
+ "drilldown" : "Adam Russell",
+ "name" : "Adam Russell",
+ "y" : 5
+ },
+ {
+ "drilldown" : "Andrezgz",
+ "name" : "Andrezgz",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Arne Sommer",
+ "name" : "Arne Sommer",
+ "y" : 3
+ },
+ {
+ "y" : 4,
+ "name" : "Athanasius",
+ "drilldown" : "Athanasius"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Bruce Van Allen",
+ "name" : "Bruce Van Allen"
+ },
+ {
+ "drilldown" : "Burkhard Nickels",
+ "name" : "Burkhard Nickels",
+ "y" : 3
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Colin Crain",
+ "name" : "Colin Crain"
+ },
+ {
+ "name" : "Daniel Mita",
+ "drilldown" : "Daniel Mita",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "name" : "Darren Bottin",
+ "drilldown" : "Darren Bottin"
+ },
+ {
+ "drilldown" : "Dave Cross",
+ "name" : "Dave Cross",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "name" : "Dave Jacoby",
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Dr James A. Smith",
+ "name" : "Dr James A. Smith"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Duane Powell",
+ "name" : "Duane Powell"
+ },
+ {
+ "y" : 2,
+ "name" : "Duncan C. White",
+ "drilldown" : "Duncan C. White"
+ },
+ {
+ "y" : 3,
+ "name" : "E. Choroba",
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Fabrizio Poggi",
+ "name" : "Fabrizio Poggi"
+ },
+ {
+ "y" : 5,
+ "name" : "Jaldhar H. Vyas",
+ "drilldown" : "Jaldhar H. Vyas"
+ },
+ {
+ "y" : 5,
+ "name" : "Javier Luque",
+ "drilldown" : "Javier Luque"
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Joelle Maslak",
+ "name" : "Joelle Maslak"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Kevin Colyer",
+ "name" : "Kevin Colyer"
+ },
+ {
+ "name" : "Lars Thegler",
+ "drilldown" : "Lars Thegler",
+ "y" : 2
+ },
+ {
+ "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch",
+ "y" : 2
+ },
+ {
+ "y" : 1,
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Mark Senn",
+ "name" : "Mark Senn"
+ },
+ {
+ "drilldown" : "Markus Holzer",
+ "name" : "Markus Holzer",
+ "y" : 2
+ },
+ {
+ "name" : "Nazareno Delucca",
+ "drilldown" : "Nazareno Delucca",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Noud",
+ "name" : "Noud",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Petr Roubicek",
+ "name" : "Petr Roubicek",
+ "y" : 2
+ },
+ {
+ "name" : "Prajith P",
+ "drilldown" : "Prajith P",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "name" : "Rage311",
+ "drilldown" : "Rage311"
+ },
+ {
+ "drilldown" : "Richard Nuttall",
+ "name" : "Richard Nuttall",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Roger Bell West",
+ "name" : "Roger Bell West",
+ "y" : 5
+ },
+ {
+ "name" : "Ruben Westerberg",
+ "drilldown" : "Ruben Westerberg",
+ "y" : 4
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Ryan Thompson",
+ "name" : "Ryan Thompson"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Simon Proctor",
+ "name" : "Simon Proctor"
+ },
+ {
+ "y" : 2,
+ "name" : "Steven Wilson",
+ "drilldown" : "Steven Wilson"
+ },
+ {
+ "name" : "Ulrich Rieke",
+ "drilldown" : "Ulrich Rieke",
+ "y" : 4
+ },
+ {
+ "name" : "Yet Ebreo",
+ "drilldown" : "Yet Ebreo",
+ "y" : 2
+ }
+ ],
+ "colorByPoint" : 1
+ }
+ ],
+ "title" : {
+ "text" : "Perl Weekly Challenge - 033"
},
"subtitle" : {
- "text" : "[Champions: 38] Last updated at 2019-11-10 22:34:27 GMT"
- },
- "legend" : {
- "enabled" : 0
+ "text" : "[Champions: 39] Last updated at 2019-11-10 22:44:28 GMT"
},
"xAxis" : {
"type" : "category"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "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"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 52427460a3..1c7d780849 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,37 +1,22 @@
{
- "chart" : {
- "type" : "column"
- },
- "title" : {
- "text" : "Perl Weekly Challenge Contributions - 2019"
- },
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- }
- },
"legend" : {
"enabled" : "false"
},
"series" : [
{
- "name" : "Contributions",
"dataLabels" : {
"format" : "{point.y:.0f}",
- "y" : 10,
- "rotation" : -90,
"enabled" : "true",
- "align" : "right",
"color" : "#FFFFFF",
+ "align" : "right",
"style" : {
"fontSize" : "13px",
"fontFamily" : "Verdana, sans-serif"
- }
+ },
+ "y" : 10,
+ "rotation" : -90
},
+ "name" : "Contributions",
"data" : [
[
"Blog",
@@ -43,21 +28,36 @@
],
[
"Perl 6",
- 837
+ 839
]
]
}
],
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
"subtitle" : {
- "text" : "Last updated at 2019-11-10 22:34:55 GMT"
+ "text" : "Last updated at 2019-11-10 22:44:37 GMT"
+ },
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ },
+ "type" : "category"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions - 2019"
+ },
+ "chart" : {
+ "type" : "column"
},
"yAxis" : {
- "min" : 0,
"title" : {
"text" : null
- }
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "min" : 0
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index e3f59f1864..ebb02def30 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,39 +1,26 @@
{
"tooltip" : {
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
"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"
},