From dacd054a71f10ec45d7e87050c3540979fe67b5b Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 31 Jul 2022 17:56:57 +0100 Subject: - Added solutions by Colin Crain. --- challenge-175/colin-crain/blog.txt | 1 + challenge-175/colin-crain/blog1.txt | 1 + challenge-175/colin-crain/perl/ch-1.pl | 71 + challenge-175/colin-crain/perl/ch-2.pl | 110 + stats/pwc-current.json | 461 +- stats/pwc-language-breakdown-summary.json | 70 +- stats/pwc-language-breakdown.json | 6882 ++++++++++++++--------------- stats/pwc-leaders.json | 400 +- stats/pwc-summary-1-30.json | 94 +- stats/pwc-summary-121-150.json | 38 +- stats/pwc-summary-151-180.json | 106 +- stats/pwc-summary-181-210.json | 98 +- stats/pwc-summary-211-240.json | 30 +- stats/pwc-summary-241-270.json | 98 +- stats/pwc-summary-31-60.json | 60 +- stats/pwc-summary-61-90.json | 118 +- stats/pwc-summary-91-120.json | 38 +- stats/pwc-summary.json | 1654 +++---- 18 files changed, 5266 insertions(+), 5064 deletions(-) create mode 100644 challenge-175/colin-crain/blog.txt create mode 100644 challenge-175/colin-crain/blog1.txt create mode 100755 challenge-175/colin-crain/perl/ch-1.pl create mode 100755 challenge-175/colin-crain/perl/ch-2.pl 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*πi 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" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
", - "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" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
", + "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" : "{point.y:.0f}" }, + "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" } ], - "xAxis" : { - "labels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } - }, - "type" : "category" + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } + }, + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2022]" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index b259cc8f02..404e953ba6 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,3260 +1,103 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "chart" : { "type" : "column" }, + "xAxis" : { + "type" : "category" + }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-07-31 16:30:05 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-07-31 16:52:58 GMT" }, - "title" : { - "text" : "The Weekly Challenge Language" + "tooltip" : { + "followPointer" : "true", + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
" }, - "drilldown" : { - "series" : [ - { - "id" : "001", - "data" : [ - [ - "Perl", - 103 - ], - [ - "Raku", - 47 - ], - [ - "Blog", - 11 - ] - ], - "name" : "001" - }, - { - "id" : "002", - "name" : "002", - "data" : [ - [ - "Perl", - 79 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "003", - "id" : "003" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "004", - "id" : "004" - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 12 - ] - ], - "name" : "005", - "id" : "005" - }, - { - "id" : "006", - "name" : "006", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 7 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "name" : "007", - "id" : "007" - }, - { - "name" : "008", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ], - "id" : "008" - }, - { - "name" : "009", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ], - "id" : "009" - }, - { - "name" : "010", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "id" : "010" - }, - { - "name" : "011", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 10 - ] - ], - "id" : "011" - }, - { - "id" : "012", - "name" : "012", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "013", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 13 - ] - ], - "name" : "013" - }, - { - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "name" : "014", - "id" : "014" - }, - { - "id" : "015", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 15 - ] - ], - "name" : "015" - }, - { - "id" : "016", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 12 - ] - ], - "name" : "016" - }, - { - "id" : "017", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "name" : "017" - }, - { - "id" : "018", - "name" : "018", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "019", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "id" : "019" - }, - { - "name" : "020", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 13 - ] - ], - "id" : "020" - }, - { - "id" : "021", - "name" : "021", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "022", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "name" : "022" - }, - { - "id" : "023", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 12 - ] - ], - "name" : "023" - }, - { - "id" : "024", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 11 - ] - ], - "name" : "024" - }, - { - "id" : "025", - "name" : "025", - "data" : [ - [ - "Perl", - 28 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "026", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ], - "id" : "026" - }, - { - "name" : "027", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "id" : "027" - }, - { - "name" : "028", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 9 - ] - ], - "id" : "028" - }, - { - "name" : "029", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "id" : "029" - }, - { - "id" : "030", - "name" : "030", - "data" : [ - [ - "Perl", - 76 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "031", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "id" : "031" - }, - { - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "name" : "032", - "id" : "032" - }, - { - "id" : "033", - "data" : [ - [ - "Perl", - 64 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 10 - ] - ], - "name" : "033" - }, - { - "id" : "034", - "name" : "034", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "035", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "name" : "035" - }, - { - "id" : "036", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ], - "name" : "036" - }, - { - "id" : "037", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ], - "name" : "037" - }, - { - "name" : "038", - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ], - "id" : "038" - }, - { - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "name" : "039", - "id" : "039" - }, - { - "id" : "040", - "name" : "040", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "041", - "name" : "041", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "name" : "042", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 11 - ] - ], - "id" : "042" - }, - { - "name" : "043", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ], - "id" : "043" - }, - { - "id" : "044", - "name" : "044", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "045", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 11 - ] - ], - "name" : "045" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "046", - "id" : "046" - }, - { - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "name" : "047", - "id" : "047" - }, - { - "data" : [ - [ - "Perl", - 61 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 12 - ] - ], - "name" : "048", - "id" : "048" - }, - { - "id" : "049", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "name" : "049" - }, - { - "id" : "050", - "name" : "050", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "051", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 11 - ] - ], - "id" : "051" - }, - { - "name" : "052", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 14 - ] - ], - "id" : "052" - }, - { - "name" : "053", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 15 - ] - ], - "id" : "053" - }, - { - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 18 - ] - ], - "name" : "054", - "id" : "054" - }, - { - "id" : "055", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 14 - ] - ], - "name" : "055" - }, - { - "id" : "056", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ], - "name" : "056" - }, - { - "name" : "057", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "id" : "057" - }, - { - "id" : "058", - "name" : "058", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "name" : "059", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 16 - ] - ], - "id" : "059" - }, - { - "name" : "060", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ], - "id" : "060" - }, - { - "id" : "061", - "name" : "061", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "062", - "data" : [ - [ - "Perl", - 30 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "id" : "062" - }, - { - "id" : "063", - "name" : "063", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "id" : "064", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 16 - ] - ], - "name" : "064" - }, - { - "data" : [ - [ - "Perl", - 34 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ], - "name" : "065", - "id" : "065" - }, - { - "id" : "066", - "name" : "066", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "id" : "067", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 18 - ] - ], - "name" : "067" - }, - { - "id" : "068", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 13 - ] - ], - "name" : "068" - }, - { - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 16 - ] - ], - "name" : "069", - "id" : "069" - }, - { - "id" : "070", - "name" : "070", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 15 - ] - ], - "name" : "071", - "id" : "071" - }, - { - "id" : "072", - "name" : "072", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 42 - ], - [ - "Blog", - 19 - ] - ] - }, - { - "name" : "073", - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 17 - ] - ], - "id" : "073" - }, - { - "name" : "074", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 20 - ] - ], - "id" : "074" - }, - { - "id" : "075", - "name" : "075", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 20 - ] - ] - }, - { - "id" : "076", - "name" : "076", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 14 - ] - ], - "name" : "077", - "id" : "077" - }, - { - "id" : "078", - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 18 - ] - ], - "name" : "078" - }, - { - "id" : "079", - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 17 - ] - ], - "name" : "079" - }, - { - "data" : [ - [ - "Perl", - 75 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ], - "name" : "080", - "id" : "080" - }, - { - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 15 - ] - ], - "name" : "081", - "id" : "081" - }, - { - "name" : "082", - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "id" : "082" - }, - { - "name" : "083", - "data" : [ - [ - "Perl", - 73 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ], - "id" : "083" - }, - { - "id" : "084", - "name" : "084", - "data" : [ - [ - "Perl", - 71 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "085", - "name" : "085", - "data" : [ - [ - "Perl", - 64 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "id" : "086", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "name" : "086" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "name" : "087", - "id" : "087" - }, - { - "id" : "088", - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 20 - ] - ], - "name" : "088" - }, - { - "id" : "089", - "name" : "089", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 20 - ] - ] - }, - { - "id" : "090", - "name" : "090", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "name" : "091", - "data" : [ - [ - "Per