From f4de42db83c16b8cc87f47d9bfa9eb1266c4e827 Mon Sep 17 00:00:00 2001 From: rir Date: Sun, 4 Feb 2024 20:46:42 -0500 Subject: 254 fallthru --- challenge-254/0rir/raku/ch-1.raku | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/challenge-254/0rir/raku/ch-1.raku b/challenge-254/0rir/raku/ch-1.raku index 7081fb7e89..fba96c8382 100644 --- a/challenge-254/0rir/raku/ch-1.raku +++ b/challenge-254/0rir/raku/ch-1.raku @@ -16,7 +16,7 @@ Output: true constant \Part-power = 40; # partitioning power constant \Part = 3**Part-power; # " value -constant \Test-to-power = 100; # rough range for tests +constant \Test-to-power = 1000; # rough range for tests constant @test-powers = 3, * × 3 … 3**Test-to-power; # passing test values constant @standard = gather { # create standard for look up in the partition @@ -30,17 +30,12 @@ constant @standard = gather { # create standard for look up in the partition sub power3 ( Int $i is copy -->Bool) { if $i ≤ @standard[*-1] { - if $i == @standard.any { return True if $i == @standard.any; - } else { return False; - } - } else { + } my $shrunk = $i div @standard[*-1]; # shrink by a partition return False if $i ÷ @standard[*-1] ≠ $shrunk; # not integer - return power3 $shrunk; - } - die "reached but did not grasp"; + power3 $shrunk; } my @Test = -- cgit From cd316e86baf4f38d1c81b7679ea4a736edf23724 Mon Sep 17 00:00:00 2001 From: Kjetil Skotheim Date: Mon, 5 Feb 2024 22:10:36 +0100 Subject: https://theweeklychallenge.org/blog/perl-weekly-challenge-255/ --- challenge-255/kjetillll/perl/ch-1.pl | 11 +++++++++++ challenge-255/kjetillll/perl/ch-2.pl | 16 ++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 challenge-255/kjetillll/perl/ch-1.pl create mode 100644 challenge-255/kjetillll/perl/ch-2.pl diff --git a/challenge-255/kjetillll/perl/ch-1.pl b/challenge-255/kjetillll/perl/ch-1.pl new file mode 100644 index 0000000000..5c35b9b15b --- /dev/null +++ b/challenge-255/kjetillll/perl/ch-1.pl @@ -0,0 +1,11 @@ +sub odd_char { + my %toggle; + $toggle{$_}++ and delete $toggle{$_} for "@_ "=~/./gs; + (keys%toggle)[0]; +} + +use Test::More; +is( odd_char("Perl", "Preel") => 'e' ); +is( odd_char("Weekly", "Weeakly") => 'a' ); +is( odd_char("Box", "Boxy") => 'y' ); +done_testing; diff --git a/challenge-255/kjetillll/perl/ch-2.pl b/challenge-255/kjetillll/perl/ch-2.pl new file mode 100644 index 0000000000..b59c2b8225 --- /dev/null +++ b/challenge-255/kjetillll/perl/ch-2.pl @@ -0,0 +1,16 @@ +sub most_frequent_unbanned_word { + my($paragraph,$banned)=@_; + my %frequency; + my $letters='a-z'; + $frequency{$_}++ for $paragraph=~/[$letters]+/gi; + delete $frequency{$banned}; + ( sort{ $frequency{$b} <=> $frequency{$a} or $a cmp $b} keys %frequency )[0] +} + +use Test::More; +is( most_frequent_unbanned_word("Joe hit a ball, the hit ball flew far after it was hit.", + "hit") => 'ball' ); +is( most_frequent_unbanned_word("Perl and Raku belong to the same family. Perl is the + most popular language in the weekly challenge.", + "the") => 'Perl' ); +done_testing; -- cgit From 95e550707a6ff7c6c39be0e5b45019de9e375f22 Mon Sep 17 00:00:00 2001 From: "E. Choroba" Date: Mon, 5 Feb 2024 23:49:28 +0100 Subject: Solve 255: Odd Character & Most Frequent Word by E. Choroba --- challenge-255/e-choroba/perl/ch-1.pl | 53 ++++++++++++++++++++++++++++++++++++ challenge-255/e-choroba/perl/ch-2.pl | 33 ++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100755 challenge-255/e-choroba/perl/ch-1.pl create mode 100755 challenge-255/e-choroba/perl/ch-2.pl diff --git a/challenge-255/e-choroba/perl/ch-1.pl b/challenge-255/e-choroba/perl/ch-1.pl new file mode 100755 index 0000000000..7e48de3ad4 --- /dev/null +++ b/challenge-255/e-choroba/perl/ch-1.pl @@ -0,0 +1,53 @@ +#!/usr/bin/perl +use warnings; +use strict; +use experimental qw( signatures ); + +sub odd_character_loop($s, $t) { + my @s = ((sort split //, $s), ""); + my @t = sort split //, $t; + for my $i (0 .. $#t) { + return $t[$i] if $s[$i] ne $t[$i]; + } +} + +sub odd_character_hash($s, $t) { + my %char; + ++$char{$_} for split //, $t; + --$char{$_} for split //, $s; + return (grep $char{$_}, keys %char)[0] +} + +use Test::More tests => 2 * (3 + 1); + +my $s = q(Perl officially stands for Practical Extraction and Report +Language, except when it doesn't. + +Perl was originally a language optimized for scanning arbitrary text +files, extracting information from those text files, and printing +reports based on that information. It quickly became a good language +for many system management tasks. Over the years, Perl has grown into +a general-purpose programming language. It's widely used for +everything from quick "one-liners" to full-scale application +development.); + +my $t = $s; +substr $t, 100, 0, '!'; + +for my $odd_character (\&odd_character_loop, \&odd_character_hash) { + is $odd_character->('Perl', 'Preel'), 'e', 'Example 1'; + is $odd_character->('Weekly', 'Weeakly'), 'a', 'Example 2'; + is $odd_character->('Box', 'Boxy'), 'y', 'Example 3'; + is $odd_character->($s, $t), '!', 'Long'; +} + +use Benchmark qw{ cmpthese }; +cmpthese(-3, { + loop => sub { odd_character_loop($s, $t) }, + hash => sub { odd_character_hash($s, $t) }, +}); + +__END__ + Rate loop hash +loop 4057/s -- -56% +hash 9133/s 125% -- diff --git a/challenge-255/e-choroba/perl/ch-2.pl b/challenge-255/e-choroba/perl/ch-2.pl new file mode 100755 index 0000000000..e5bf487b7e --- /dev/null +++ b/challenge-255/e-choroba/perl/ch-2.pl @@ -0,0 +1,33 @@ +#!/usr/bin/perl +use warnings; +use strict; +use experimental qw( signatures ); + +sub most_frequent_word($p, $w) { + my %count = ("" => 0); + my @max = (""); + while ($p =~ /(\w+)/g) { + my $match = $1; + next if $match eq $w; + + if (++$count{$match} >= $count{ $max[0] }) { + @max = () if $count{$match} > 1 + $count{ $max[0] }; + push @max, $match; + } + } + return \@max +} + +use Test2::V0; +plan 3; + +is most_frequent_word('Joe hit a ball, the hit ball flew far after it was hit.', + 'hit'), + ['ball'], 'Example 1'; + +is most_frequent_word('Perl and Raku belong to the same family. Perl is the ' + . 'most popular language in the weekly challenge.', + 'the'), + ['Perl'], 'Example 2'; + +is most_frequent_word('a a b b c c', 'c'), ['a', 'b'], 'More than one'; -- cgit From d6115876d49d05a8fe4fe6ed37cbacdd0ed93d40 Mon Sep 17 00:00:00 2001 From: Dave Jacoby Date: Mon, 5 Feb 2024 19:14:25 -0500 Subject: 255 DAJ --- challenge-255/dave-jacoby/blog.txt | 1 + challenge-255/dave-jacoby/perl/ch-1.pl | 53 ++++++++++++++++++++++++++++++++++ challenge-255/dave-jacoby/perl/ch-2.pl | 50 ++++++++++++++++++++++++++++++++ 3 files changed, 104 insertions(+) create mode 100644 challenge-255/dave-jacoby/blog.txt create mode 100644 challenge-255/dave-jacoby/perl/ch-1.pl create mode 100644 challenge-255/dave-jacoby/perl/ch-2.pl diff --git a/challenge-255/dave-jacoby/blog.txt b/challenge-255/dave-jacoby/blog.txt new file mode 100644 index 0000000000..a48eef06c8 --- /dev/null +++ b/challenge-255/dave-jacoby/blog.txt @@ -0,0 +1 @@ + https://jacoby.github.io/2024/02/05/preel-weeakly-weekly-challenge-255.html diff --git a/challenge-255/dave-jacoby/perl/ch-1.pl b/challenge-255/dave-jacoby/perl/ch-1.pl new file mode 100644 index 0000000000..332918c8f4 --- /dev/null +++ b/challenge-255/dave-jacoby/perl/ch-1.pl @@ -0,0 +1,53 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use experimental qw{ say postderef signatures state }; + +use Carp; +use List::Compare; + +my @examples = ( + + { s => "Perl", t => "Preel" }, + { s => "Weekly", t => "Weeakly" }, + { s => "Box", t => "Boxy" }, +); + +for my $example (@examples) { + my $output = odd_character($example); + my $s = $example->{s}; + my $t = $example->{t}; + + say <<~"END"; + Input: \$s = "$s" \$t = "$t" + Output: $output + END +} + +sub odd_character ($input) { + my @s = sort split //, $input->{s}; + my @t = sort split //, $input->{t}; + say join ', ', @s; + say join ', ', @t; + return 7; + my @output; + while ( @s && @t ) { + if ( $s[0] eq $t[0] ) { + shift @s; + shift @t; + } + else { + if ( scalar @s > scalar @t ) { + push @output, shift @s; + } + elsif ( scalar @s < scalar @t ) { + push @output, shift @t; + } + else { croak 'Impossible Scenario' } + } + } + push @output, @s if @s; + push @output, @t if @t; + return shift @output; +} diff --git a/challenge-255/dave-jacoby/perl/ch-2.pl b/challenge-255/dave-jacoby/perl/ch-2.pl new file mode 100644 index 0000000000..c5bed865fa --- /dev/null +++ b/challenge-255/dave-jacoby/perl/ch-2.pl @@ -0,0 +1,50 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use experimental qw{ say postderef signatures state }; + +use List::Util qw{ max }; + +my @examples = ( + + { + paragraph => + "Joe hit a ball, the hit ball flew far after it was hit.", + word => "hit", + }, + { + paragraph => +"Perl and Raku belong to the same family. Perl is the most popular language in the weekly challenge.", + word => "the", + } +); + +for my $example (@examples) { + my $output = most_frequent_word($example); + my $p = $example->{paragraph}; + my $w = $example->{word}; + + say <<~"END"; + Input: \$p = "$p" + \$w = "$w" + Output: "$output" + END +} + +sub most_frequent_word ($obj) { + my $paragraph = $obj->{paragraph}; + my $banned_word = $obj->{word}; + my %hash; + + # some people REALLY hate map being used in this way, believing + # that it should end in (start with) @array = , but clearly, + # I disagree + map { $hash{$_}++ } + grep { $_ ne $banned_word } + split /\W+/, $paragraph; + my $max = max values %hash; + my @output = + grep { $hash{$_} == $max } keys %hash; + return shift @output; +} -- cgit From 8e5138e244e85b474a235194909bbbcdd9a391ff Mon Sep 17 00:00:00 2001 From: deadmarshal Date: Tue, 6 Feb 2024 00:41:47 -0500 Subject: TWC255 --- challenge-255/deadmarshal/blog.txt | 1 + challenge-255/deadmarshal/perl/ch-1.pl | 15 +++++++++++++++ challenge-255/deadmarshal/perl/ch-2.pl | 18 ++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 challenge-255/deadmarshal/blog.txt create mode 100644 challenge-255/deadmarshal/perl/ch-1.pl create mode 100644 challenge-255/deadmarshal/perl/ch-2.pl diff --git a/challenge-255/deadmarshal/blog.txt b/challenge-255/deadmarshal/blog.txt new file mode 100644 index 0000000000..9ada6cfcbe --- /dev/null +++ b/challenge-255/deadmarshal/blog.txt @@ -0,0 +1 @@ +https://deadmarshal.blogspot.com/2024/02/twc255.html diff --git a/challenge-255/deadmarshal/perl/ch-1.pl b/challenge-255/deadmarshal/perl/ch-1.pl new file mode 100644 index 0000000000..2892c103de --- /dev/null +++ b/challenge-255/deadmarshal/perl/ch-1.pl @@ -0,0 +1,15 @@ +#!/usr/bin/env perl +use strict; +use warnings; + +sub odd_character{ + my %h; + map{++$h{$_}}split '',$_[0]; + map{--$h{$_}||delete $h{$_}}split '',$_[1]; + keys %h +} + +printf "%s\n",odd_character("Perl","Preel"); +printf "%s\n",odd_character("Weekly","Weeakly"); +printf "%s\n",odd_character("Box","Boxy"); + diff --git a/challenge-255/deadmarshal/perl/ch-2.pl b/challenge-255/deadmarshal/perl/ch-2.pl new file mode 100644 index 0000000000..64ffd6b12b --- /dev/null +++ b/challenge-255/deadmarshal/perl/ch-2.pl @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +use strict; +use warnings; + +sub most_frequent_word{ + my %h; + map{$h{$_}++ if $_ ne $_[1]}split /[^\w]/,$_[0]; + (sort{$h{$b}<=>$h{$a}}keys %h)[0] +} + +printf "%s\n",most_frequent_word("Joe hit a ball, the hit ball ". + "flew far after it was hit.", + "hit"); +printf "%s\n",most_frequent_word("Perl and Raku belong to the same family.". + " Perl is the most popular language ". + "in the weekly challenge.", + "the"); + -- cgit From a04122d295a6ad6a86418a4399be4af375e195d4 Mon Sep 17 00:00:00 2001 From: Mariano Spadaccini Date: Tue, 6 Feb 2024 12:39:31 +0100 Subject: Add PWC 255 and fix PWC 253 (ch-2.pl) --- challenge-253/spadacciniweb/perl/ch-2.pl | 9 +++-- challenge-255/spadacciniweb/perl/ch-1.pl | 50 ++++++++++++++++++++++++++++ challenge-255/spadacciniweb/perl/ch-2.pl | 56 ++++++++++++++++++++++++++++++++ 3 files changed, 110 insertions(+), 5 deletions(-) create mode 100644 challenge-255/spadacciniweb/perl/ch-1.pl create mode 100644 challenge-255/spadacciniweb/perl/ch-2.pl diff --git a/challenge-253/spadacciniweb/perl/ch-2.pl b/challenge-253/spadacciniweb/perl/ch-2.pl index e9de1b2539..3781c66a98 100644 --- a/challenge-253/spadacciniweb/perl/ch-2.pl +++ b/challenge-253/spadacciniweb/perl/ch-2.pl @@ -75,11 +75,10 @@ sub order_rows { $sum_rows{$i} = sum(@{ $matrix->[$i] }); } - printf "Output: (%s)\n", join ', ' , map { $_ } - sort { $sum_rows{$a} <=> $sum_rows{$b} - || - $a <=> $b - } keys %sum_rows; + printf "Output: (%s)\n", join ', ' , sort { $sum_rows{$a} <=> $sum_rows{$b} + || + $a <=> $b + } keys %sum_rows; return 0; } diff --git a/challenge-255/spadacciniweb/perl/ch-1.pl b/challenge-255/spadacciniweb/perl/ch-1.pl new file mode 100644 index 0000000000..114ffd9294 --- /dev/null +++ b/challenge-255/spadacciniweb/perl/ch-1.pl @@ -0,0 +1,50 @@ +#!/usr/bin/env perl + +# Task 1: Odd Character +# Submitted by: Mohammad Sajid Anwar +# +# You are given two strings, $s and $t. The string $t is generated using the shuffled characters of the string $s with an additional character. +# Write a script to find the additional character in the string $t.. +# +# Example 1 +# Input: $s = "Perl" $t = "Preel" +# Output: "e" +# +# Example 2 +# Input: $s = "Weekly" $t = "Weeakly" +# Output: "a" +# +# Example 3 +# Input: $s = "Box" $t = "Boxy" +# Output: "y" + +use strict; +use warnings; + +my $s = "Perl"; my $t = "Preel"; +odd_character($s, $t); + +$s = "Weekly"; $t = "Weeakly"; +odd_character($s, $t); + +$s = "Box"; $t = "Boxy"; +odd_character($s, $t); + +exit 0; + +sub odd_character { + my $s = shift; + my $t = shift; + + my %freq; + foreach my $c (split //, $s) { + $freq{$c}++; + } + foreach my $c (split //, $t) { + $freq{$c}--; + } + + printf "%s | %s -> %s\n", $s, $t, map { $_ } grep { $freq{$_} == -1 }keys %freq; + + return undef; +} diff --git a/challenge-255/spadacciniweb/perl/ch-2.pl b/challenge-255/spadacciniweb/perl/ch-2.pl new file mode 100644 index 0000000000..af98414973 --- /dev/null +++ b/challenge-255/spadacciniweb/perl/ch-2.pl @@ -0,0 +1,56 @@ +#!/usr/bin/env perl + +# Task 2: Most Frequent Word +# Submitted by: Mohammad Sajid Anwar +# +# You are given a paragraph $p and a banned word $w. +# Write a script to return the most frequent word that is not banned. +# +# Example 1 +# Input: $p = "Joe hit a ball, the hit ball flew far after it was hit." +# $w = "hit" +# Output: "ball" +# +# The banned word "hit" occurs 3 times. +# The other word "ball" occurs 2 times. +# +# Example 2 +# Input: $p = "Perl and Raku belong to the same family. Perl is the most popular language in the weekly challenge." +# $w = "the" +# Output: "Perl" +# +# The banned word "the" occurs 3 times. +# The other word "Perl" occurs 2 times. + +use strict; +use warnings; + +my $paragraph = "Joe hit a ball, the hit ball flew far after it was hit."; +my $banned = "hit"; +banned_word($paragraph, $banned); + + +$paragraph = "Perl and Raku belong to the same family. Perl is the most popular language in the weekly challenge."; +$banned = "the"; +banned_word($paragraph, $banned); + +exit 0; + +sub banned_word { + my $paragraph = shift; + my $banned = shift; + + $paragraph =~ s/[^[:word:] ]//g; + + my %freq; + foreach my $word (split / /, $paragraph) { + $freq{$word}++ + unless $word eq $banned; + } + + printf "%s | %s -> %s\n", + $paragraph, $banned, [ sort { $freq{$b} <=> $freq{$a} } + keys %freq + ]->[0]; + return undef; +} -- cgit From 406c9e370adcf1379561e44bd26bf728d42f3216 Mon Sep 17 00:00:00 2001 From: Peter Campbell Smith Date: Tue, 6 Feb 2024 13:00:16 +0000 Subject: Week 255 --- challenge-255/peter-campbell-smith/blog.txt | 1 + challenge-255/peter-campbell-smith/perl/ch-1.pl | 25 +++++++++++ challenge-255/peter-campbell-smith/perl/ch-2.pl | 57 +++++++++++++++++++++++++ 3 files changed, 83 insertions(+) create mode 100644 challenge-255/peter-campbell-smith/blog.txt create mode 100755 challenge-255/peter-campbell-smith/perl/ch-1.pl create mode 100755 challenge-255/peter-campbell-smith/perl/ch-2.pl diff --git a/challenge-255/peter-campbell-smith/blog.txt b/challenge-255/peter-campbell-smith/blog.txt new file mode 100644 index 0000000000..ee9e8f99d1 --- /dev/null +++ b/challenge-255/peter-campbell-smith/blog.txt @@ -0,0 +1 @@ +http://ccgi.campbellsmiths.force9.co.uk/challenge/255 diff --git a/challenge-255/peter-campbell-smith/perl/ch-1.pl b/challenge-255/peter-campbell-smith/perl/ch-1.pl new file mode 100755 index 0000000000..5ea3e034ba --- /dev/null +++ b/challenge-255/peter-campbell-smith/perl/ch-1.pl @@ -0,0 +1,25 @@ +#!/usr/bin/perl + +# Blog: http://ccgi.campbellsmiths.force9.co.uk/challenge + +use v5.26; # The Weekly Challenge - 2024-02-05 +use utf8; # Week 255 task 1 - Odd character +use strict; # Peter Campbell Smith +use warnings; +binmode STDOUT, ':utf8'; + +odd_character('Weekly', 'Weeakly'); +odd_character('Perl', 'Preal'); +odd_character('Box', 'Boxy'); +odd_character('Five red baskets', 'abdee ezfik rsstv'); + +sub odd_character { + + # initialise + my ($s, $t) = @_; + say qq[\nInput: \$s = '$s', \$t = '$t']; + + # do it + $t =~ s|$_||i for split('', $s); + say qq[Output: '$t']; +} diff --git a/challenge-255/peter-campbell-smith/perl/ch-2.pl b/challenge-255/peter-campbell-smith/perl/ch-2.pl new file mode 100755 index 0000000000..b51824880f --- /dev/null +++ b/challenge-255/peter-campbell-smith/perl/ch-2.pl @@ -0,0 +1,57 @@ +#!/usr/bin/perl + +# Blog: http://ccgi.campbellsmiths.force9.co.uk/challenge + +use v5.26; # The Weekly Challenge - 2024-02-05 +use utf8; # Week 255 task 2 - Most frequent word +use strict; # Peter Campbell Smith +use warnings; +binmode STDOUT, ':utf8'; + +most_frequent_word('Joe hit a ball, the hit ball flew far + after it was hit by Joe.', 'hit'); + +most_frequent_word('Perl and Raku belong to the same + family. Perl is the most popular language in the + weekly challenge.', 'the'); + +most_frequent_word('banned banned allowed allowed allowed', + 'banned'); + +sub most_frequent_word { + + my ($p, $q, $w, $most, $word, %times); + + # initialise + $p = shift; + $w = lc(shift); + say qq[\nInput: \$p = '$p'\n \$w = '$w']; + $p = lc($p); + + # do it + $most = 0; + $times{$w} = 0; + + # split $p into words and discard any that eq $w + while ($p =~ m|([a-z]+)|gs) { + $q = $1; + + # record one use of this word + $times{$q} ++; + next if $q eq $w; + + # if more than the previous best, make it the new best + if ($times{$q} > $most) { + $most = $times{$q}; + $word = $q; + + # if the same as the previous best, record it as equal best + } elsif ($times{$q} == $most) { + $word .= qq[, $q]; + } + } + + # deliver the answer + say qq[Output: '$word' - $most times]; + say qq[ '$w' (banned) - $times{$w} times]; +} -- cgit From cc6ed3658a1be46ac8d1ef2c40bbd1682f38bc48 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 6 Feb 2024 21:31:51 +0000 Subject: - Added solutions by Kjetil Skotheim. - Added solutions by E. Choroba. - Added solutions by Dave Jacoby. - Added solutions by Ali Moradi. - Added solutions by Mariano Spadaccini. - Added solutions by Peter Campbell Smith. --- stats/pwc-current.json | 224 +- stats/pwc-language-breakdown-summary.json | 50 +- stats/pwc-language-breakdown.json | 3520 ++++++++++++++--------------- stats/pwc-leaders.json | 418 ++-- stats/pwc-summary-1-30.json | 42 +- stats/pwc-summary-121-150.json | 100 +- stats/pwc-summary-151-180.json | 96 +- stats/pwc-summary-181-210.json | 110 +- stats/pwc-summary-211-240.json | 114 +- stats/pwc-summary-241-270.json | 114 +- stats/pwc-summary-271-300.json | 112 +- stats/pwc-summary-301-330.json | 54 +- stats/pwc-summary-31-60.json | 110 +- stats/pwc-summary-61-90.json | 110 +- stats/pwc-summary-91-120.json | 104 +- stats/pwc-summary.json | 1906 ++++++++-------- 16 files changed, 3643 insertions(+), 3541 deletions(-) diff --git a/stats/pwc-current.json b/stats/pwc-current.json index cda6e0c64b..a828105d0b 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,12 +1,17 @@ { - "legend" : { - "enabled" : 0 - }, "title" : { "text" : "The Weekly Challenge - 255" }, - "subtitle" : { - "text" : "[Champions: 12] Last updated at 2024-02-05 21:06:45 GMT" + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
", + "followPointer" : 1 + }, + "legend" : { + "enabled" : 0 + }, + "chart" : { + "type" : "column" }, "series" : [ { @@ -14,9 +19,29 @@ "name" : "The Weekly Challenge - 255", "data" : [ { - "y" : 2, + "y" : 3, + "drilldown" : "Ali Moradi", + "name" : "Ali Moradi" + }, + { + "y" : 3, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { "drilldown" : "David Ferrone", - "name" : "David Ferrone" + "name" : "David Ferrone", + "y" : 2 + }, + { + "y" : 2, + "name" : "E. Choroba", + "drilldown" : "E. Choroba" + }, + { + "y" : 2, + "name" : "Kjetil Skotheim", + "drilldown" : "Kjetil Skotheim" }, { "y" : 3, @@ -24,24 +49,34 @@ "drilldown" : "Laurent Rosenfeld" }, { - "y" : 11, "drilldown" : "Luca Ferrari", - "name" : "Luca Ferrari" + "name" : "Luca Ferrari", + "y" : 11 }, { "y" : 2, + "drilldown" : "Mariano Spadaccini", + "name" : "Mariano Spadaccini" + }, + { + "name" : "Mark Anderson", "drilldown" : "Mark Anderson", - "name" : "Mark Anderson" + "y" : 2 }, { - "y" : 2, "name" : "Matthew Neleigh", - "drilldown" : "Matthew Neleigh" + "drilldown" : "Matthew Neleigh", + "y" : 2 }, { - "y" : 2, "drilldown" : "Niels van Dijke", - "name" : "Niels van Dijke" + "name" : "Niels van Dijke", + "y" : 2 + }, + { + "y" : 3, + "name" : "Peter Campbell Smith", + "drilldown" : "Peter Campbell Smith" }, { "drilldown" : "Peter Meszaros", @@ -49,66 +84,96 @@ "y" : 2 }, { + "y" : 3, "drilldown" : "Robbie Hatley", - "name" : "Robbie Hatley", - "y" : 3 + "name" : "Robbie Hatley" }, { - "drilldown" : "Simon Proctor", "name" : "Simon Proctor", + "drilldown" : "Simon Proctor", "y" : 2 }, { - "y" : 4, "drilldown" : "Thomas Kohler", - "name" : "Thomas Kohler" + "name" : "Thomas Kohler", + "y" : 4 }, { "y" : 4, - "drilldown" : "Ulrich Rieke", - "name" : "Ulrich Rieke" + "name" : "Ulrich Rieke", + "drilldown" : "Ulrich Rieke" }, { - "drilldown" : "W. Luis Mochan", + "y" : 3, "name" : "W. Luis Mochan", - "y" : 3 + "drilldown" : "W. Luis Mochan" } ] } ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "tooltip" : { - "followPointer" : 1, - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, "drilldown" : { "series" : [ { - "name" : "David Ferrone", + "id" : "Ali Moradi", + "name" : "Ali Moradi", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { "data" : [ [ "Perl", 2 + ], + [ + "Blog", + 1 ] ], - "id" : "David Ferrone" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "David Ferrone", + "name" : "David Ferrone" + }, + { + "id" : "E. Choroba", + "name" : "E. Choroba", + "data" : [ + [ + "Perl", + 2 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Kjetil Skotheim", + "id" : "Kjetil Skotheim" }, { "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -122,8 +187,7 @@ "Blog", 1 ] - ], - "name" : "Laurent Rosenfeld" + ] }, { "data" : [ @@ -140,14 +204,34 @@ "id" : "Luca Ferrari" }, { + "name" : "Mariano Spadaccini", + "id" : "Mariano Spadaccini", "data" : [ [ - "Raku", + "Perl", 2 ] - ], + ] + }, + { + "id" : "Mark Anderson", "name" : "Mark Anderson", - "id" : "Mark Anderson" + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "name" : "Matthew Neleigh", + "id" : "Matthew Neleigh", + "data" : [ + [ + "Perl", + 2 + ] + ] }, { "data" : [ @@ -156,30 +240,35 @@ 2 ] ], - "name" : "Matthew Neleigh", - "id" : "Matthew Neleigh" + "id" : "Niels van Dijke", + "name" : "Niels van Dijke" }, { "data" : [ [ "Perl", 2 + ], + [ + "Blog", + 1 ] ], - "name" : "Niels van Dijke", - "id" : "Niels van Dijke" + "name" : "Peter Campbell Smith", + "id" : "Peter Campbell Smith" }, { - "id" : "Peter Meszaros", "data" : [ [ "Perl", 2 ] ], - "name" : "Peter Meszaros" + "name" : "Peter Meszaros", + "id" : "Peter Meszaros" }, { + "name" : "Robbie Hatley", "id" : "Robbie Hatley", "data" : [ [ @@ -190,8 +279,7 @@ "Blog", 1 ] - ], - "name" : "Robbie Hatley" + ] }, { "id" : "Simon Proctor", @@ -218,7 +306,6 @@ ] }, { - "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -229,10 +316,10 @@ 2 ] ], + "name" : "Ulrich Rieke", "id" : "Ulrich Rieke" }, { - "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -243,6 +330,7 @@ 1 ] ], + "id" : "W. Luis Mochan", "name" : "W. Luis Mochan" } ] @@ -250,7 +338,21 @@ "xAxis" : { "type" : "category" }, - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "[Champions: 18] Last updated at 2024-02-06 21:27:03 GMT" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index deb950551d..e80e4da16f 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,45 +1,54 @@ { + "yAxis" : { + "min" : 0, + "title" : { + "text" : null + } + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "subtitle" : { + "text" : "Last updated at 2024-02-06 21:27:03 GMT" + }, + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2024]" + }, "xAxis" : { - "type" : "category", "labels" : { "style" : { "fontFamily" : "Verdana, sans-serif", "fontSize" : "13px" } - } + }, + "type" : "category" }, "chart" : { "type" : "column" }, - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 - }, "series" : [ { "dataLabels" : { - "color" : "#FFFFFF", + "y" : 10, "format" : "{point.y:.0f}", + "rotation" : -90, "enabled" : "true", "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" }, - "y" : 10, - "rotation" : -90, - "align" : "right" + "align" : "right", + "color" : "#FFFFFF" }, "name" : "Contributions", "data" : [ [ "Blog", - 4496 + 4499 ], [ "Perl", - 13149 + 13161 ], [ "Raku", @@ -48,15 +57,6 @@ ] } ], - "subtitle" : { - "text" : "Last updated at 2024-02-05 21:06:45 GMT" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2024]" - }, "legend" : { "enabled" : "false" } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index c774f894f0..83eb9f4260 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,1308 +1,32 @@ { + "xAxis" : { + "type" : "category" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2024-02-06 21:27:03 GMT" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "series" : [ - { - "data" : [ - { - "y" : 164, - "drilldown" : "001", - "name" : "#001" - }, - { - "name" : "#002", - "drilldown" : "002", - "y" : 129 - }, - { - "drilldown" : "003", - "name" : "#003", - "y" : 87 - }, - { - "y" : 103, - "drilldown" : "004", - "name" : "#004" - }, - { - "y" : 80, - "drilldown" : "005", - "name" : "#005" - }, - { - "y" : 61, - "name" : "#006", - "drilldown" : "006" - }, - { - "drilldown" : "007", - "name" : "#007", - "y" : 69 - }, - { - "drilldown" : "008", - "name" : "#008", - "y" : 82 - }, - { - "name" : "#009", - "drilldown" : "009", - "y" : 80 - }, - { - "drilldown" : "010", - "name" : "#010", - "y" : 69 - }, - { - "y" : 89, - "name" : "#011", - "drilldown" : "011" - }, - { - "y" : 92, - "name" : "#012", - "drilldown" : "012" - }, - { - "name" : "#013", - "drilldown" : "013", - "y" : 87 - }, - { - "name" : "#014", - "drilldown" : "014", - "y" : 102 - }, - { - "drilldown" : "015", - "name" : "#015", - "y" : 101 - }, - { - "name" : "#016", - "drilldown" : "016", - "y" : 75 - }, - { - "drilldown" : "017", - "name" : "#017", - "y" : 86 - }, - { - "name" : "#018", - "drilldown" : "018", - "y" : 83 - }, - { - "name" : "#019", - "drilldown" : "019", - "y" : 105 - }, - { - "drilldown" : "020", - "name" : "#020", - "y" : 103 - }, - { - "drilldown" : "021", - "name" : "#021", - "y" : 74 - }, - { - "drilldown" : "022", - "name" : "#022", - "y" : 72 - }, - { - "y" : 101, - "name" : "#023", - "drilldown" : "023" - }, - { - "y" : 77, - "drilldown" : "024", - "name" : "#024" - }, - { - "name" : "#025", - "drilldown" : "025", - "y" : 62 - }, - { - "y" : 76, - "name" : "#026", - "drilldown" : "026" - }, - { - "name" : "#027", - "drilldown" : "027", - "y" : 64 - }, - { - "name" : "#028", - "drilldown" : "028", - "y" : 82 - }, - { - "drilldown" : "029", - "name" : "#029", - "y" : 83 - }, - { - "y" : 121, - "drilldown" : "030", - "name" : "#030" - }, - { - "y" : 93, - "name" : "#031", - "drilldown" : "031" - }, - { - "y" : 98, - "name" : "#032", - "drilldown" : "032" - }, - { - "drilldown" : "033", - "name" : "#033", - "y" : 114 - }, - { - "y" : 70, - "drilldown" : "034", - "name" : "#034" - }, - { - "y" : 68, - "drilldown" : "035", - "name" : "#035" - }, - { - "y" : 70, - "drilldown" : "036", - "name" : "#036" - }, - { - "y" : 70, - "name" : "#037", - "drilldown" : "037" - }, - { - "drilldown" : "038", - "name" : "#038", - "y" : 74 - }, - { - "drilldown" : "039", - "name" : "#039", - "y" : 68 - }, - { - "drilldown" : "040", - "name" : "#040", - "y" : 77 - }, - { - "name" : "#041", - "drilldown" : "041", - "y" : 80 - }, - { - "drilldown" : "042", - "name" : "#042", - "y" : 98 - }, - { - "y" : 72, - "drilldown" : "043", - "name" : "#043" - }, - { - "y" : 90, - "name" : "#044", - "drilldown" : "044" - }, - { - "drilldown" : "045", - "name" : "#045", - "y" : 102 - }, - { - "name" : "#046", - "drilldown" : "046", - "y" : 93 - }, - { - "name" : "#047", - "drilldown" : "047", - "y" : 88 - }, - { - "drilldown" : "048", - "name" : "#048", - "y" : 112 - }, - { - "y" : 93, - "name" : "#049", - "drilldown" : "049" - }, - { - "name" : "#050", - "drilldown" : "050", - "y" : 104 - }, - { - "name" : "#051", - "drilldown" : "051", - "y" : 95 - }, - { - "y" : 93, - "name" : "#052", - "drilldown" : "052" - }, - { - "drilldown" : "053", - "name" : "#053", - "y" : 105 - }, - { - "y" : 107, - "drilldown" : "054", - "name" : "#054" - }, - { - "drilldown" : "055", - "name" : "#055", - "y" : 92 - }, - { - "drilldown" : "056", - "name" : "#056", - "y" : 104 - }, - { - "drilldown" : "057", - "name" : "#057", - "y" : 86 - }, - { - "drilldown" : "058", - "name" : "#058", - "y" : 71 - }, - { - "y" : 93, - "name" : "#059", - "drilldown" : "059" - }, - { - "y" : 89, - "name" : "#060", - "drilldown" : "060" - }, - { - "y" : 85, - "name" : "#061", - "drilldown" : "061" - }, - { - "y" : 62, - "drilldown" : "062", - "name" : "#062" - }, - { - "y" : 93, - "name" : "#063", - "drilldown" : "063" - }, - { - "y" : 84, - "drilldown" : "064", - "name" : "#064" - }, - { - "name" : "#065", - "drilldown" : "065", - "y" : 77 - }, - { - "name" : "#066", - "drilldown" : "066", - "y" : 88 - }, - { - "name" : "#067", - "drilldown" : "067", - "y" : 94 - }, - { - "drilldown" : "068", - "name" : "#068", - "y" : 79 - }, - { - "y" : 87, - "drilldown" : "069", - "name" : "#069" - }, - { - "drilldown" : "070", - "name" : "#070", - "y" : 98 - }, - { - "name" : "#071", - "drilldown" : "071", - "y" : 82 - }, - { - "drilldown" : "072", - "name" : "#072", - "y" : 116 - }, - { - "y" : 112, - "name" : "#073", - "drilldown" : "073" - }, - { - "y" : 117, - "name" : "#074", - "drilldown" : "074" - }, - { - "y" : 117, - "drilldown" : "075", - "name" : "#075" - }, - { - "name" : "#076", - "drilldown" : "076", - "y" : 101 - }, - { - "y" : 100, - "name" : "#077", - "drilldown" : "077" - }, - { - "name" : "#078", - "drilldown" : "078", - "y" : 127 - }, - { - "y" : 122, - "drilldown" : "079", - "name" : "#079" - }, - { - "drilldown" : "080", - "name" : "#080", - "y" : 127 - }, - { - "name" : "#081", - "drilldown" : "081", - "y" : 114 - }, - { - "y" : 114, - "drilldown" : "082", - "name" : "#082" - }, - { - "name" : "#083", - "drilldown" : "083", - "y" : 127 - }, - { - "y" : 119, - "name" : "#084", - "drilldown" : "084" - }, - { - "name" : "#085", - "drilldown" : "085", - "y" : 113 - }, - { - "y" : 104, - "name" : "#086", - "drilldown" : "086" - }, - { - "name" : "#087", - "drilldown" : "087", - "y" : 101 - }, - { - "y" : 121, - "name" : "#088", - "drilldown" : "088" - }, - { - "y" : 113, - "name" : "#089", - "drilldown" : "089" - }, - { - "drilldown" : "090", - "name" : "#090", - "y" : 113 - }, - { - "drilldown" : "091", - "name" : "#091", - "y" : 108 - }, - { - "drilldown" : "092", - "name" : "#092", - "y" : 98 - }, - { - "y" : 87, - "drilldown" : "093", - "name" : "#093" - }, - { - "drilldown" : "094", - "name" : "#094", - "y" : 87 - }, - { - "name" : "#095", - "drilldown" : "095", - "y" : 108 - }, - { - "y" : 108, - "drilldown" : "096", - "name" : "#096" - }, - { - "drilldown" : "097", - "name" : "#097", - "y" : 111 - }, - { - "drilldown" : "098", - "name" : "#098", - "y" : 108 - }, - { - "drilldown" : "099", - "name" : "#099", - "y" : 97 - }, - { - "name" : "#100", - "drilldown" : "100", - "y" : 120 - }, - { - "y" : 83, - "name" : "#101", - "drilldown" : "101" - }, - { - "drilldown" : "102", - "name" : "#102", - "y" : 90 - }, - { - "y" : 79, - "name" : "#103", - "drilldown" : "103" - }, - { - "name" : "#104", - "drilldown" : "104", - "y" : 85 - }, - { - "name" : "#105", - "drilldown" : "105", - "y" : 77 - }, - { - "drilldown" : "106", - "name" : "#106", - "y" : 97 - }, - { - "y" : 92, - "name" : "#107", - "drilldown" : "107" - }, - { - "y" : 96, - "name" : "#108", - "drilldown" : "108" - }, - { - "y" : 109, - "drilldown" : "109", - "name" : "#109" - }, - { - "y" : 110, - "drilldown" : "110", - "name" : "#110" - }, - { - "name" : "#111", - "drilldown" : "111", - "y" : 93 - }, - { - "y" : 94, - "drilldown" : "112", - "name" : "#112" - }, - { - "name" : "#113", - "drilldown" : "113", - "y" : 94 - }, - { - "y" : 110, - "name" : "#114", - "drilldown" : "114" - }, - { - "y" : 98, - "name" : "#115", - "drilldown" : "115" - }, - { - "name" : "#116", - "drilldown" : "116", - "y" : 97 - }, - { - "y" : 99, - "name" : "#117", - "drilldown" : "117" - }, - { - "drilldown" : "118", - "name" : "#118", - "y" : 85 - }, - { - "y" : 125, - "name" : "#119", - "drilldown" : "119" - }, - { - "drilldown" : "120", - "name" : "#120", - "y" : 116 - }, - { - "y" : 92, - "name" : "#121", - "drilldown" : "121" - }, - { - "drilldown" : "122", - "name" : "#122", - "y" : 110 - }, - { - "name" : "#123", - "drilldown" : "123", - "y" : 105 - }, - { - "drilldown" : "124", - "name" : "#124", - "y" : 87 - }, - { - "drilldown" : "125", - "name" : "#125", - "y" : 65 - }, - { - "y" : 113, - "drilldown" : "126", - "name" : "#126" - }, - { - "drilldown" : "127", - "name" : "#127", - "y" : 115 - }, - { - "y" : 73, - "drilldown" : "128", - "name" : "#128" - }, - { - "drilldown" : "129", - "name" : "#129", - "y" : 52 - }, - { - "y" : 75, - "drilldown" : "130", - "name" : "#130" - }, - { - "name" : "#131", - "drilldown" : "131", - "y" : 91 - }, - { - "drilldown" : "132", - "name" : "#132", - "y" : 78 - }, - { - "drilldown" : "133", - "name" : "#133", - "y" : 95 - }, - { - "name" : "#134", - "drilldown" : "134", - "y" : 94 - }, - { - "y" : 104, - "drilldown" : "135", - "name" : "#135" - }, - { - "y" : 97, - "drilldown" : "136", - "name" : "#136" - }, - { - "name" : "#137", - "drilldown" : "137", - "y" : 100 - }, - { - "name" : "#138", - "drilldown" : "138", - "y" : 102 - }, - { - "y" : 97, - "drilldown" : "139", - "name" : "#139" - }, - { - "y" : 103, - "name" : "#140", - "drilldown" : "140" - }, - { - "y" : 102, - "name" : "#141", - "drilldown" : "141" - }, - { - "y" : 85, - "name" : "#142", - "drilldown" : "142" - }, - { - "name" : "#143", - "drilldown" : "143", - "y" : 85 - }, - { - "drilldown" : "144", - "name" : "#144", - "y" : 90 - }, - { - "y" : 96, - "name" : "#145", - "drilldown" : "145" - }, - { - "y" : 108, - "name" : "#146", - "drilldown" : "146" - }, - { - "drilldown" : "147", - "name" : "#147", - "y" : 107 - }, - { - "drilldown" : "148", - "name" : "#148", - "y" : 94 - }, - { - "y" : 88, - "drilldown" : "149", - "name" : "#149" - }, - { - "y" : 108, - "drilldown" : "150", - "name" : "#150" - }, - { - "name" : "#151", - "drilldown" : "151", - "y" : 78 - }, - { - "y" : 80, - "name" : "#152", - "drilldown" : "152" - }, - { - "y" : 97, - "drilldown" : "153", - "name" : "#153" - }, - { - "name" : "#154", - "drilldown" : "154", - "y" : 108 - }, - { - "name" : "#155", - "drilldown" : "155", - "y" : 99 - }, - { - "name" : "#156", - "drilldown" : "156", - "y" : 98 - }, - { - "drilldown" : "157", - "name" : "#157", - "y" : 97 - }, - { - "y" : 107, - "drilldown" : "158", - "name" : "#158" - }, - { - "y" : 92, - "name" : "#159", - "drilldown" : "159" - }, - { - "drilldown" : "160", - "name" : "#160", - "y" : 121 - }, - { - "y" : 102, - "drilldown" : "161", - "name" : "#161" - }, - { - "drilldown" : "162", - "name" : "#162", - "y" : 93 - }, - { - "name" : "#163", - "drilldown" : "163", - "y" : 118 - }, - { - "name" : "#164", - "drilldown" : "164", - "y" : 120 - }, - { - "y" : 80, - "drilldown" : "165", - "name" : "#165" - }, - { - "y" : 81, - "drilldown" : "166", - "name" : "#166" - }, - { - "drilldown" : "167", - "name" : "#167", - "y" : 75 - }, - { - "y" : 98, - "name" : "#168", - "drilldown" : "168" - }, - { - "drilldown" : "169", - "name" : "#169", - "y" : 107 - }, - { - "y" : 102, - "drilldown" : "170", - "name" : "#170" - }, - { - "y" : 113, - "name" : "#171", - "drilldown" : "171" - }, - { - "y" : 96, - "name" : "#172", - "drilldown" : "172" - }, - { - "y" : 113, - "drilldown" : "173", - "name" : "#173" - }, - { - "name" : "#174", - "drilldown" : "174", - "y" : 101 - }, - { - "y" : 114, - "name" : "#175", - "drilldown" : "175" - }, - { - "drilldown" : "176", - "name" : "#176", - "y" : 114 - }, - { - "name" : "#177", - "drilldown" : "177", - "y" : 107 - }, - { - "name" : "#178", - "drilldown" : "178", - "y" : 67 - }, - { - "y" : 74, - "name" : "#179", - "drilldown" : "179" - }, - { - "y" : 117, - "name" : "#180", - "drilldown" : "180" - }, - { - "y" : 99, - "drilldown" : "181", - "name" : "#181" - }, - { - "y" : 112, - "name" : "#182", - "drilldown" : "182" - }, - { - "name" : "#183", - "drilldown" : "183", - "y" : 89 - }, - { - "name" : "#184", - "drilldown" : "184", - "y" : 109 - }, - { - "drilldown" : "185", - "name" : "#185", - "y" : 117 - }, - { - "name" : "#186", - "drilldown" : "186", - "y" : 113 - }, - { - "y" : 111, - "drilldown" : "187", - "name" : "#187" - }, - { - "drilldown" : "188", - "name" : "#188", - "y" : 121 - }, - { - "drilldown" : "189", - "name" : "#189", - "y" : 119 - }, - { - "name" : "#190", - "drilldown" : "190", - "y" : 113 - }, - { - "y" : 119, - "name" : "#191", - "drilldown" : "191" - }, - { - "y" : 129, - "drilldown" : "192", - "name" : "#192" - }, - { - "name" : "#193", - "drilldown" : "193", - "y" : 112 - }, - { - "y" : 113, - "drilldown" : "194", - "name" : "#194" - }, - { - "y" : 110, - "name" : "#195", - "drilldown" : "195" - }, - { - "y" : 104, - "name" : "#196", - "drilldown" : "196" - }, - { - "name" : "#197", - "drilldown" : "197", - "y" : 105 - }, - { - "y" : 119, - "drilldown" : "198", - "name" : "#198" - }, - { - "y" : 119, - "drilldown" : "199", - "name" : "#199" - }, - { - "name" : "#200", - "drilldown" : "200", - "y" : 118 - }, - { - "drilldown" : "201", - "name" : "#201", - "y" : 111 - }, - { - "y" : 103, - "drilldown" : "202", - "name" : "#202" - }, - { - "name" : "#203", - "drilldown" : "203", - "y" : 98 - }, - { - "drilldown" : "204", - "name" : "#204", - "y" : 111 - }, - { - "y" : 120, - "drilldown" : "205", - "name" : "#205" - }, - { - "y" : 113, - "name" : "#206", - "drilldown" : "206" - }, - { - "drilldown" : "207", - "name" : "#207", - "y" : 120 - }, - { - "y" : 117, - "name" : "#208", - "drilldown" : "208" - }, - { - "y" : 102, - "drilldown" : "209", - "name" : "#209" - }, - { - "name" : "#210", - "drilldown" : "210", - "y" : 97 - }, - { - "y" : 111, - "name" : "#211", - "drilldown" : "211" - }, - { - "y" : 105, - "name" : "#212", - "drilldown" : "212" - }, - { - "name" : "#213", - "drilldown" : "213", - "y" : 100 - }, - { - "y" : 69, - "drilldown" : "214", - "name" : "#214" - }, - { - "name" : "#215", - "drilldown" : "215", - "y" : 115 - }, - { - "y" : 87, - "name" : "#216", - "drilldown" : "216" - }, - { - "y" : 115, - "drilldown" : "217", - "name" : "#217" - }, - { - "drilldown" : "218", - "name" : "#218", - "y" : 85 - }, - { - "y" : 83, - "drilldown" : "219", - "name" : "#219" - }, - { - "y" : 100, - "name" : "#220", - "drilldown" : "220" - }, - { - "y" : 84, - "drilldown" : "221", - "name" : "#221" - }, - { - "drilldown" : "222", - "name" : "#222", - "y" : 107 - }, - { - "drilldown" : "223", - "name" : "#223", - "y" : 87 - }, - { - "y" : 78, - "drilldown" : "224", - "name" : "#224" - }, - { - "name" : "#225", - "drilldown" : "225", - "y" : 113 - }, - { - "drilldown" : "226", - "name" : "#226", - "y" : 120 - }, - { - "y" : 114, - "name" : "#227", - "drilldown" : "227" - }, - { - "drilldown" : "228", - "name" : "#228", - "y" : 121 - }, - { - "y" : 115, - "drilldown" : "229", - "name" : "#229" - }, - { - "name" : "#230", - "drilldown" : "230", - "y" : 124 - }, - { - "name" : "#231", - "drilldown" : "231", - "y" : 139 - }, - { - "drilldown" : "233", - "name" : "#233", - "y" : 126 - }, - { - "drilldown" : "234", - "name" : "#234", - "y" : 111 - }, - { - "y" : 121, - "name" : "#235", - "drilldown" : "235" - }, - { - "y" : 114, - "name" : "#236", - "drilldown" : "236" - }, - { - "y" : 108, - "name" : "#237", - "drilldown" : "237" - }, - { - "drilldown" : "238", - "name" : "#238", - "y" : 126 - }, - { - "name" : "#239", - "drilldown" : "239", - "y" : 128 - }, - { - "y" : 124, - "name" : "#240", - "drilldown" : "240" - }, - { - "drilldown" : "241", - "name" : "#241", - "y" : 115 - }, - { - "name" : "#242", - "drilldown" : "242", - "y" : 126 - }, - { - "name" : "#243", -