aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2022-07-31 17:56:57 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2022-07-31 17:56:57 +0100
commitdacd054a71f10ec45d7e87050c3540979fe67b5b (patch)
tree2ca9e961fcd7f35e6ed9e2645f25d7b8db6b0ff4
parent3371c15c1a26dd6f610f23e6489f48f0a12dd00b (diff)
downloadperlweeklychallenge-club-dacd054a71f10ec45d7e87050c3540979fe67b5b.tar.gz
perlweeklychallenge-club-dacd054a71f10ec45d7e87050c3540979fe67b5b.tar.bz2
perlweeklychallenge-club-dacd054a71f10ec45d7e87050c3540979fe67b5b.zip
- Added solutions by Colin Crain.
-rw-r--r--challenge-175/colin-crain/blog.txt1
-rw-r--r--challenge-175/colin-crain/blog1.txt1
-rwxr-xr-xchallenge-175/colin-crain/perl/ch-1.pl71
-rwxr-xr-xchallenge-175/colin-crain/perl/ch-2.pl110
-rw-r--r--stats/pwc-current.json461
-rw-r--r--stats/pwc-language-breakdown-summary.json70
-rw-r--r--stats/pwc-language-breakdown.json2456
-rw-r--r--stats/pwc-leaders.json400
-rw-r--r--stats/pwc-summary-1-30.json94
-rw-r--r--stats/pwc-summary-121-150.json38
-rw-r--r--stats/pwc-summary-151-180.json106
-rw-r--r--stats/pwc-summary-181-210.json98
-rw-r--r--stats/pwc-summary-211-240.json30
-rw-r--r--stats/pwc-summary-241-270.json98
-rw-r--r--stats/pwc-summary-31-60.json60
-rw-r--r--stats/pwc-summary-61-90.json118
-rw-r--r--stats/pwc-summary-91-120.json38
-rw-r--r--stats/pwc-summary.json576
18 files changed, 2514 insertions, 2312 deletions
diff --git a/challenge-175/colin-crain/blog.txt b/challenge-175/colin-crain/blog.txt
new file mode 100644
index 0000000000..b094839642
--- /dev/null
+++ b/challenge-175/colin-crain/blog.txt
@@ -0,0 +1 @@
+https://colincrain.com/2022/07/30/i-know-what-you-did-last-sunday
diff --git a/challenge-175/colin-crain/blog1.txt b/challenge-175/colin-crain/blog1.txt
new file mode 100644
index 0000000000..c7a6f3d88b
--- /dev/null
+++ b/challenge-175/colin-crain/blog1.txt
@@ -0,0 +1 @@
+https://colincrain.com/2022/07/31/no-touchy-no-totient
diff --git a/challenge-175/colin-crain/perl/ch-1.pl b/challenge-175/colin-crain/perl/ch-1.pl
new file mode 100755
index 0000000000..87e30f0ae5
--- /dev/null
+++ b/challenge-175/colin-crain/perl/ch-1.pl
@@ -0,0 +1,71 @@
+#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# i-know-what-you-did-last-sunday.pl
+#
+# Last Sunday
+# Submitted by: Mohammad S Anwar
+# Write a script to list Last Sunday of every month in the given year.
+#
+# For example, for year 2022, we should get the following:
+#
+#
+# 2022-01-30
+# 2022-02-27
+# 2022-03-27
+# 2022-04-24
+# 2022-05-29
+# 2022-06-26
+# 2022-07-31
+# 2022-08-28
+# 2022-09-25
+# 2022-10-30
+# 2022-11-27
+# 2022-12-25
+
+# method:
+#
+# We're wise enough to know when to haul in a library to do our
+# dity work, and in the case of date and time manipulations now is
+# that time. In the long run, it just doesn't pay not to. With leap
+# years and whatnot, tracking daya of the week is a fool's erand.
+# Doable, but subject to too many pitfalls to make making certain
+# you didn't miss every single one a worthwhile pursuit. After all,
+# someone has gone through an enormous amount of trouble to figure
+# out the hoary details already, why not honor their efforts?
+#
+# Two methods come to mind: 1. Once for every month in the year,
+# check the day of the week for the last day and count backwards
+# from there until we find a Sunday 2. Look at every day starting
+# on January 1, note the month and date if it is a Sunday, preserce
+# the previously saved month and day of the month changes or we run
+# out of days.
+#
+# Each has their advantages I suppose. I think I'll try the first
+# becausse I haven't done that before.
+#
+#
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+use DateTime ;
+
+
+my $year = shift @ARGV // 2022;
+
+for my $month ( 1..12 ) {
+ my $dt = DateTime->last_day_of_month( year => $year, month => $month );
+ $dt->subtract( days => 1 ) until $dt->day_of_week == 7;
+ say $dt->format_cldr( "MMM dd, YYYY" );
+}
+
+
+
diff --git a/challenge-175/colin-crain/perl/ch-2.pl b/challenge-175/colin-crain/perl/ch-2.pl
new file mode 100755
index 0000000000..a787c4d20f
--- /dev/null
+++ b/challenge-175/colin-crain/perl/ch-2.pl
@@ -0,0 +1,110 @@
+#!/Users/colincrain/perl5/perlbrew/perls/perl-5.32.0/bin/perl
+#
+# no-touchee-no-totient.pl
+#
+# Perfect Totient Numbers
+# Submitted by: Mohammad S Anwar
+#
+# Write a script to generate first 20 Perfect Totient Numbers. Please
+# checkout wikipedia page for more informations.
+#
+#
+# Output
+#
+# 3, 9, 15, 27, 39, 81, 111, 183, 243, 255,
+# 327, 363, 471, 729, 2187, 2199, 3063, 4359, 4375, 5571
+
+# method:
+#
+# First things first, what is a totient number? What is is, in
+# the most literally descripive sense, is the count of positve
+# integer values less than the number that are also coprime
+# with it — that is to say the two numbers do not share a
+# common prime factor.
+#
+# The obvious followup question, *why* do this, is considerably
+# harder to answer. The function it turns out appears in several
+# analyses in prime factorization, which makes a certain intuitive
+# sense, as well as an analysis of the greatest common divisor
+# function, in which we can see further relation to the underlying
+# process of serching through divisors.
+#
+# One of the most interesting appearances of the function is in an
+# equality binding Binet's closed form equation for the Fibonacci
+# sequesnce, the Möbius function and Eular's totient function. It's
+# not quite *e*<sup>π<i>i</i></sup> but it's getting there.
+#
+# The most visible use of the totient function identiies in in
+# the basis of the RSA encryption scheme, where an application
+# of the function is used to construct the public encryption
+# key for the process.
+#
+# But wait! We're only halfway there. Or really, practically
+# speaking, we've only now just gotten into the car. To
+# actually arrive at our destination, we calculate the totient
+# as an iterated function
+# (https://en.wikipedia.org/wiki/Iterated_function), repplying
+# the function to the previously calculated totient until a
+# value if 1 is reached.
+#
+# As the totient must be less than or equal to the number it's
+# derived from — we're making a count of numbers from the range
+# 1 to the number — the iteration inexorably drives the result
+# downward until 1 is reached. The totient of 1 is 1, so past
+# that point the iteration is defined.
+#
+# The odd part is that once we have achieved a totient of 1, we
+# sum the previous sequence, including the final 1. If this
+# value equals the original number, we have a perfect totient
+# number. This is analogous to a perfect number, where the
+# divisors are summed and compared to the source. It is not,
+# however, the complement function, which would be the sum of
+# the non-divisors but rather those numbers who have a GCD of 1
+# with the source, in that they share no prime factors.
+#
+# The sum of the non-divisors wouldn't be very interesting as
+# far a as perfection goes, as I believe every number above 4
+# will be abundant, or exceed the value.
+
+# The perfect totients on the other hand are quite interesting,
+# albeit not particularly practical.
+
+# © 2022 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use utf8;
+use feature ":5.26";
+use feature qw(signatures);
+no warnings 'experimental::signatures';
+
+## phi is Euler's totient function
+use ntheory qw ( euler_phi );
+
+## input
+my $limit = shift @ARGV // 20;
+my $count = 0;
+my $i = 1;
+my @out;
+
+while (++$i and $count < 20) {
+ $count++ and push @out, $i if $i == iterate_phi($i);
+}
+
+## output
+say "@out";
+
+
+sub iterate_phi ( $n, $s = 1 ) {
+## given a value we iterate Euler's totient function on it
+## until we arrive at a totient of 1, compounding an aggregate sum of the results
+## this technique skips the final totient, 1, so we add it at the beginning
+## - it will always be there.
+ $s += $n while ($n = euler_phi($n)) != 1;
+ return $s;
+}
+
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index b4c1525989..1dc016d21c 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,27 +1,177 @@
{
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "chart" : {
- "type" : "column"
- },
"title" : {
"text" : "The Weekly Challenge - 175"
},
- "subtitle" : {
- "text" : "[Champions: 28] Last updated at 2022-07-31 16:30:05 GMT"
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
+ }
},
- "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
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
},
+ "series" : [
+ {
+ "data" : [
+ {
+ "drilldown" : "Adam Russell",
+ "name" : "Adam Russell",
+ "y" : 3
+ },
+ {
+ "y" : 4,
+ "name" : "Athanasius",
+ "drilldown" : "Athanasius"
+ },
+ {
+ "drilldown" : "Cheok-Yin Fung",
+ "y" : 4,
+ "name" : "Cheok-Yin Fung"
+ },
+ {
+ "drilldown" : "Colin Crain",
+ "name" : "Colin Crain",
+ "y" : 4
+ },
+ {
+ "drilldown" : "Dave Cross",
+ "name" : "Dave Cross",
+ "y" : 2
+ },
+ {
+ "name" : "Dave Jacoby",
+ "y" : 1,
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "name" : "E. Choroba",
+ "y" : 2,
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "name" : "Flavio Poletti",
+ "y" : 6,
+ "drilldown" : "Flavio Poletti"
+ },
+ {
+ "name" : "Gurunandan Bhat",
+ "y" : 1,
+ "drilldown" : "Gurunandan Bhat"
+ },
+ {
+ "name" : "James Smith",
+ "y" : 3,
+ "drilldown" : "James Smith"
+ },
+ {
+ "drilldown" : "Jan Krnavek",
+ "y" : 2,
+ "name" : "Jan Krnavek"
+ },
+ {
+ "name" : "Jorg Sommrey",
+ "y" : 2,
+ "drilldown" : "Jorg Sommrey"
+ },
+ {
+ "drilldown" : "Kjetil Skotheim",
+ "y" : 2,
+ "name" : "Kjetil Skotheim"
+ },
+ {
+ "name" : "Laurent Rosenfeld",
+ "y" : 5,
+ "drilldown" : "Laurent Rosenfeld"
+ },
+ {
+ "drilldown" : "Luca Ferrari",
+ "y" : 8,
+ "name" : "Luca Ferrari"
+ },
+ {
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Marton Polgar",
+ "name" : "Marton Polgar",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Mohammad S Anwar",
+ "y" : 4,
+ "name" : "Mohammad S Anwar"
+ },
+ {
+ "drilldown" : "Peter Campbell Smith",
+ "y" : 3,
+ "name" : "Peter Campbell Smith"
+ },
+ {
+ "drilldown" : "Robert DiCicco",
+ "name" : "Robert DiCicco",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "name" : "Robert Ransbottom",
+ "drilldown" : "Robert Ransbottom"
+ },
+ {
+ "name" : "Roger Bell_West",
+ "y" : 5,
+ "drilldown" : "Roger Bell_West"
+ },
+ {
+ "drilldown" : "Simon Green",
+ "name" : "Simon Green",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Simon Proctor",
+ "name" : "Simon Proctor",
+ "y" : 1
+ },
+ {
+ "name" : "Stephen G Lynn",
+ "y" : 5,
+ "drilldown" : "Stephen G Lynn"
+ },
+ {
+ "y" : 1,
+ "name" : "Steven Wilson",
+ "drilldown" : "Steven Wilson"
+ },
+ {
+ "drilldown" : "Ulrich Rieke",
+ "y" : 4,
+ "name" : "Ulrich Rieke"
+ },
+ {
+ "name" : "W. Luis Mochan",
+ "y" : 3,
+ "drilldown" : "W. Luis Mochan"
+ },
+ {
+ "y" : 2,
+ "name" : "Walt Mankowski",
+ "drilldown" : "Walt Mankowski"
+ }
+ ],
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 175"
+ }
+ ],
"drilldown" : {
"series" : [
{
- "name" : "Adam Russell",
"data" : [
[
"Perl",
@@ -32,10 +182,12 @@
1
]
],
+ "name" : "Adam Russell",
"id" : "Adam Russell"
},
{
"id" : "Athanasius",
+ "name" : "Athanasius",
"data" : [
[
"Perl",
@@ -45,11 +197,9 @@
"Raku",
2
]
- ],
- "name" : "Athanasius"
+ ]
},
{
- "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
@@ -60,40 +210,54 @@
2
]
],
+ "id" : "Cheok-Yin Fung",
"name" : "Cheok-Yin Fung"
},
{
+ "id" : "Colin Crain",
+ "name" : "Colin Crain",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 2
+ ]
+ ]
+ },
+ {
"id" : "Dave Cross",
+ "name" : "Dave Cross",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Dave Cross"
+ ]
},
{
- "id" : "Dave Jacoby",
"data" : [
[
"Perl",
1
]
],
- "name" : "Dave Jacoby"
+ "name" : "Dave Jacoby",
+ "id" : "Dave Jacoby"
},
{
- "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
+ "id" : "E. Choroba",
"name" : "E. Choroba"
},
{
- "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -108,19 +272,22 @@
2
]
],
+ "id" : "Flavio Poletti",
"name" : "Flavio Poletti"
},
{
+ "id" : "Gurunandan Bhat",
+ "name" : "Gurunandan Bhat",
"data" : [
[
"Perl",
1
]
- ],
- "name" : "Gurunandan Bhat",
- "id" : "Gurunandan Bhat"
+ ]
},
{
+ "id" : "James Smith",
+ "name" : "James Smith",
"data" : [
[
"Perl",
@@ -130,42 +297,39 @@
"Blog",
1
]
- ],
- "name" : "James Smith",
- "id" : "James Smith"
+ ]
},
{
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Jan Krnavek",
+ "id" : "Jan Krnavek"
},
{
- "name" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
],
- "id" : "Jorg Sommrey"
+ "id" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey"
},
{
- "id" : "Kjetil Skotheim",
"data" : [
[
"Perl",
2
]
],
+ "id" : "Kjetil Skotheim",
"name" : "Kjetil Skotheim"
},
{
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -180,10 +344,10 @@
1
]
],
+ "name" : "Laurent Rosenfeld",
"id" : "Laurent Rosenfeld"
},
{
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -194,21 +358,22 @@
6
]
],
- "name" : "Luca Ferrari"
+ "name" : "Luca Ferrari",
+ "id" : "Luca Ferrari"
},
{
+ "id" : "Mark Anderson",
"name" : "Mark Anderson",
"data" : [
[
"Blog",
2
]
- ],
- "id" : "Mark Anderson"
+ ]
},
{
- "id" : "Marton Polgar",
"name" : "Marton Polgar",
+ "id" : "Marton Polgar",
"data" : [
[
"Raku",
@@ -217,8 +382,6 @@
]
},
{
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar",
"data" : [
[
"Perl",
@@ -228,10 +391,11 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Mohammad S Anwar",
+ "name" : "Mohammad S Anwar"
},
{
- "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -242,11 +406,10 @@
1
]
],
- "name" : "Peter Campbell Smith"
+ "name" : "Peter Campbell Smith",
+ "id" : "Peter Campbell Smith"
},
{
- "id" : "Robert DiCicco",
- "name" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -256,7 +419,9 @@
"Raku",
1
]
- ]
+ ],
+ "name" : "Robert DiCicco",
+ "id" : "Robert DiCicco"
},
{
"id" : "Robert Ransbottom",
@@ -269,7 +434,6 @@
]
},
{
- "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -284,9 +448,12 @@
1
]
],
- "id" : "Roger Bell_West"
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
},
{
+ "id" : "Simon Green",
+ "name" : "Simon Green",
"data" : [
[
"Perl",
@@ -296,9 +463,7 @@
"Blog",
1
]
- ],
- "name" : "Simon Green",
- "id" : "Simon Green"
+ ]
},
{
"data" : [
@@ -330,13 +495,13 @@
},
{
"name" : "Steven Wilson",
+ "id" : "Steven Wilson",
"data" : [
[
"Perl",
1
]
- ],
- "id" : "Steven Wilson"
+ ]
},
{
"data" : [
@@ -353,8 +518,6 @@
"id" : "Ulrich Rieke"
},
{
- "id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -364,181 +527,37 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan"
},
{
"id" : "Walt Mankowski",
+ "name" : "Walt Mankowski",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Walt Mankowski"
+ ]
}
]
},
- "series" : [
- {
- "colorByPoint" : 1,
- "data" : [
- {
- "y" : 3,
- "drilldown" : "Adam Russell",
- "name" : "Adam Russell"
- },
- {
- "name" : "Athanasius",
- "drilldown" : "Athanasius",
- "y" : 4
- },
- {
- "y" : 4,
- "drilldown" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung"
- },
- {
- "y" : 2,
- "drilldown" : "Dave Cross",
- "name" : "Dave Cross"
- },
- {
- "drilldown" : "Dave Jacoby",
- "y" : 1,
- "name" : "Dave Jacoby"
- },
- {
- "drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
- },
- {
- "name" : "Flavio Poletti",
- "drilldown" : "Flavio Poletti",
- "y" : 6
- },
- {
- "y" : 1,
- "drilldown" : "Gurunandan Bhat",
- "name" : "Gurunandan Bhat"
- },
- {
- "drilldown" : "James Smith",
- "y" : 3,
- "name" : "James Smith"
- },
- {
- "drilldown" : "Jan Krnavek",
- "y" : 2,
- "name" : "Jan Krnavek"
- },
- {
- "y" : 2,
- "drilldown" : "Jorg Sommrey",
- "name" : "Jorg Sommrey"
- },
- {
- "name" : "Kjetil Skotheim",
- "y" : 2,
- "drilldown" : "Kjetil Skotheim"
- },
- {
- "y" : 5,
- "drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld"
- },
- {
- "name" : "Luca Ferrari",
- "y" : 8,
- "drilldown" : "Luca Ferrari"
- },
- {
- "y" : 2,
- "drilldown" : "Mark Anderson",
- "name" : "Mark Anderson"
- },
- {
- "name" : "Marton Polgar",
- "y" : 2,
- "drilldown" : "Marton Polgar"
- },
- {
- "drilldown" : "Mohammad S Anwar",
- "y" : 4,
- "name" : "Mohammad S Anwar"
- },
- {
- "drilldown" : "Peter Campbell Smith",
- "y" : 3,
- "name" : "Peter Campbell Smith"
- },
- {
- "name" : "Robert DiCicco",
- "y" : 2,
- "drilldown" : "Robert DiCicco"
- },
- {
- "drilldown" : "Robert Ransbottom",
- "y" : 2,
- "name" : "Robert Ransbottom"
- },
- {
- "y" : 5,
- "drilldown" : "Roger Bell_West",
- "name" : "Roger Bell_West"
- },
- {
- "y" : 3,
- "drilldown" : "Simon Green",
- "name" : "Simon Green"
- },
- {
- "y" : 1,
- "drilldown" : "Simon Proctor",
- "name" : "Simon Proctor"
- },
- {
- "y" : 5,
- "drilldown" : "Stephen G Lynn",
- "name" : "Stephen G Lynn"
- },
- {
- "name" : "Steven Wilson",
- "y" : 1,
- "drilldown" : "Steven Wilson"
- },
- {
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke",
- "y" : 4
- },
- {
- "name" : "W. Luis Mochan",
- "y" : 3,
- "drilldown" : "W. Luis Mochan"
- },
- {
- "name" : "Walt Mankowski",
- "drilldown" : "Walt Mankowski",
- "y" : 2
- }
- ],
- "name" : "The Weekly Challenge - 175"
- }
- ],
- "xAxis" : {
- "type" : "category"
- },
"legend" : {
"enabled" : 0
},
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
+ "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/>",
+ "followPointer" : 1
+ },
+ "subtitle" : {
+ "text" : "[Champions: 29] Last updated at 2022-07-31 16:52:58 GMT"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "chart" : {
+ "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 79389ef3e2..fecbf5f3af 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,63 +1,63 @@
{
- "yAxis" : {
- "title" : {
- "text" : null
- },
- "min" : 0
- },
"chart" : {
"type" : "column"
},
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2022]"
- },
- "legend" : {
- "enabled" : "false"
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ },
+ "type" : "category"
},
"subtitle" : {
- "text" : "Last updated at 2022-07-31 16:30:05 GMT"
+ "text" : "Last updated at 2022-07-31 16:52:58 GMT"
},
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
+ "legend" : {
+ "enabled" : "false"
+ },
"series" : [
{
+ "dataLabels" : {
+ "rotation" : -90,
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ },
+ "format" : "{point.y:.0f}",
+ "align" : "right",
+ "enabled" : "true",
+ "y" : 10,
+ "color" : "#FFFFFF"
+ },
"data" : [
[
"Blog",
- 2744
+ 2746
],
[
"Perl",
- 8539
+ 8541
],
[
"Raku",
5084
]
],
- "name" : "Contributions",
- "dataLabels" : {
- "align" : "right",
- "format" : "{point.y:.0f}",
- "color" : "#FFFFFF",
- "rotation" : -90,
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- },
- "y" : 10,
- "enabled" : "true"
- }
+ "name" : "Contributions"
}
],