From f18d8d36fd5ac5fbc0f1686fa737213cfb0c4cbd Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 11 Jun 2024 13:20:59 +0100 Subject: - Added solutions by Eric Cheung. - Added solutions by Ulrich Rieke. - Added solutions by Wanderdoc. - Added solutions by Mark Anderson. - Added solutions by Peter Meszaros. - Added solutions by Niels van Dijke. - Added solutions by E. Choroba. - Added solutions by Peter Campbell Smith. - Added solutions by David Ferrone. - Added solutions by Luca Ferrari. - Added solutions by Thomas Kohler. - Added solutions by Dave Jacoby. - Added solutions by Robbie Hatley. - Added solutions by PokGoPun. - Added solutions by Roger Bell_West. --- challenge-273/eric-cheung/python/ch-1.py | 31 + challenge-273/eric-cheung/python/ch-2.py | 15 + challenge-273/perlboy1967/perl/ch-1.pl | 36 + challenge-273/perlboy1967/perl/ch-2.pl | 37 + challenge-273/perlboy1967/perl/ch1.pl | 36 - challenge-273/perlboy1967/perl/ch2.pl | 37 - challenge-273/ulrich-rieke/cpp/ch-1.cpp | 25 + challenge-273/ulrich-rieke/cpp/ch-2.cpp | 16 + challenge-273/ulrich-rieke/haskell/ch-1.hs | 18 + challenge-273/ulrich-rieke/haskell/ch-2.hs | 16 + challenge-273/ulrich-rieke/perl/ch-1.pl | 20 + challenge-273/ulrich-rieke/perl/ch-2.pl | 16 + challenge-273/ulrich-rieke/raku/ch-1.raku | 8 + challenge-273/ulrich-rieke/raku/ch-2.raku | 12 + challenge-273/ulrich-rieke/rust/ch-1.rs | 18 + challenge-273/ulrich-rieke/rust/ch-2.rs | 17 + challenge-273/wanderdoc/perl/ch-1.pl | 71 + challenge-273/wanderdoc/perl/ch-2.pl | 47 + stats/pwc-challenge-272.json | 665 ++++++++++ stats/pwc-current.json | 630 ++------- stats/pwc-language-breakdown-summary.json | 60 +- stats/pwc-language-breakdown.json | 1947 ++++++++++++++-------------- stats/pwc-leaders.json | 806 ++++++------ stats/pwc-summary-1-30.json | 110 +- stats/pwc-summary-121-150.json | 32 +- stats/pwc-summary-151-180.json | 130 +- stats/pwc-summary-181-210.json | 106 +- stats/pwc-summary-211-240.json | 124 +- stats/pwc-summary-241-270.json | 42 +- stats/pwc-summary-271-300.json | 130 +- stats/pwc-summary-301-330.json | 30 +- stats/pwc-summary-31-60.json | 46 +- stats/pwc-summary-61-90.json | 46 +- stats/pwc-summary-91-120.json | 112 +- stats/pwc-summary.json | 82 +- 35 files changed, 3101 insertions(+), 2473 deletions(-) create mode 100755 challenge-273/eric-cheung/python/ch-1.py create mode 100755 challenge-273/eric-cheung/python/ch-2.py create mode 100755 challenge-273/perlboy1967/perl/ch-1.pl create mode 100755 challenge-273/perlboy1967/perl/ch-2.pl delete mode 100755 challenge-273/perlboy1967/perl/ch1.pl delete mode 100755 challenge-273/perlboy1967/perl/ch2.pl create mode 100755 challenge-273/ulrich-rieke/cpp/ch-1.cpp create mode 100755 challenge-273/ulrich-rieke/cpp/ch-2.cpp create mode 100755 challenge-273/ulrich-rieke/haskell/ch-1.hs create mode 100755 challenge-273/ulrich-rieke/haskell/ch-2.hs create mode 100755 challenge-273/ulrich-rieke/perl/ch-1.pl create mode 100755 challenge-273/ulrich-rieke/perl/ch-2.pl create mode 100755 challenge-273/ulrich-rieke/raku/ch-1.raku create mode 100755 challenge-273/ulrich-rieke/raku/ch-2.raku create mode 100755 challenge-273/ulrich-rieke/rust/ch-1.rs create mode 100755 challenge-273/ulrich-rieke/rust/ch-2.rs create mode 100755 challenge-273/wanderdoc/perl/ch-1.pl create mode 100755 challenge-273/wanderdoc/perl/ch-2.pl create mode 100644 stats/pwc-challenge-272.json diff --git a/challenge-273/eric-cheung/python/ch-1.py b/challenge-273/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..e01e8f5dca --- /dev/null +++ b/challenge-273/eric-cheung/python/ch-1.py @@ -0,0 +1,31 @@ + +def round(dInput): + return int(dInput) + (1 if dInput - int(dInput) >= 0.5 else 0) + +## Example 1 +strInput = "perl" +strChar = "e" + +## Example 2 +## strInput = "java" +## strChar = "a" + +## Example 3 +## strInput = "python" +## strChar = "m" + +## Example 4 +## strInput = "ada" +## strChar = "a" + +## Example 5 +## strInput = "ballerina" +## strChar = "l" + +## Example 6 +## strInput = "analitik" +## strChar = "k" + +nPercent = round(strInput.count(strChar) * 100 / len(strInput)) + +print (nPercent) diff --git a/challenge-273/eric-cheung/python/ch-2.py b/challenge-273/eric-cheung/python/ch-2.py new file mode 100755 index 0000000000..2b9c57d362 --- /dev/null +++ b/challenge-273/eric-cheung/python/ch-2.py @@ -0,0 +1,15 @@ + +## strInput = "aabb" ## Example 1 +## strInput = "abab" ## Example 2 +## strInput = "aaa" ## Example 3 +strInput = "bbb" ## Example 4 + +if strInput.count("b") <= 1: + print (False) +else: + nFirstBPos = strInput.index("b") + + nNumOfA = strInput[nFirstBPos + 1:].count("a") + nNumOfB = strInput[nFirstBPos + 1:].count("b") + + print (nNumOfA == 0 and nNumOfB > 0) diff --git a/challenge-273/perlboy1967/perl/ch-1.pl b/challenge-273/perlboy1967/perl/ch-1.pl new file mode 100755 index 0000000000..1b63f8c4ec --- /dev/null +++ b/challenge-273/perlboy1967/perl/ch-1.pl @@ -0,0 +1,36 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 273 +- https://theweeklychallenge.org/blog/perl-weekly-challenge-273 + +Author: Niels 'PerlBoy' van Dijke + +Task 1: Percentage of Character +Submitted by: Mohammad Sajid Anwar + +You are given a string, $str and a character $char. + +Write a script to return the percentage, nearest whole, of given +character in the given string. + +=cut + +use v5.32; +use feature qw(signatures); +use common::sense; + +use Test2::V0; + +sub percentageOfString ($str,$char) { + my %f; $f{$_}++ for (split(//,$str)); + int(0.5 + 100 * ($f{$char} // 0) / length($str)); +} + +is(percentageOfString('perl','e'),25,'Example 1'); +is(percentageOfString('java','a'),50,'Example 2'); +is(percentageOfString('python','m'),0,'Example 3'); +is(percentageOfString('ada','67'),0,'Example 4'); + +done_testing; diff --git a/challenge-273/perlboy1967/perl/ch-2.pl b/challenge-273/perlboy1967/perl/ch-2.pl new file mode 100755 index 0000000000..db7ee646d1 --- /dev/null +++ b/challenge-273/perlboy1967/perl/ch-2.pl @@ -0,0 +1,37 @@ +#!/bin/perl + +=pod + +The Weekly Challenge - 273 +- https://theweeklychallenge.org/blog/perl-weekly-challenge-273 + +Author: Niels 'PerlBoy' van Dijke + +Task 2: B After A +Submitted by: Mohammad Sajid Anwar + +You are given a string, $str. + +Write a script to return true if there is at least one 'b', and +no 'a' appears after the first 'b'. + +=cut + +use v5.32; +use feature qw(signatures); +use common::sense; + +use Data::Printer; + +use Test2::V0; + +sub bAfterA ($str) { + 0 + ($str =~ m#^[^b]*b[^a]*$#); +} + +is(bAfterA('aabb'),1,'Example 1 (aabb)'); +is(bAfterA('abab'),0,'Example 2 (abab)'); +is(bAfterA('aaa'),0,'Example 3 (aaa)'); +is(bAfterA('bbb'),1,'Example 3 (bbb)'); + +done_testing; diff --git a/challenge-273/perlboy1967/perl/ch1.pl b/challenge-273/perlboy1967/perl/ch1.pl deleted file mode 100755 index 1b63f8c4ec..0000000000 --- a/challenge-273/perlboy1967/perl/ch1.pl +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 273 -- https://theweeklychallenge.org/blog/perl-weekly-challenge-273 - -Author: Niels 'PerlBoy' van Dijke - -Task 1: Percentage of Character -Submitted by: Mohammad Sajid Anwar - -You are given a string, $str and a character $char. - -Write a script to return the percentage, nearest whole, of given -character in the given string. - -=cut - -use v5.32; -use feature qw(signatures); -use common::sense; - -use Test2::V0; - -sub percentageOfString ($str,$char) { - my %f; $f{$_}++ for (split(//,$str)); - int(0.5 + 100 * ($f{$char} // 0) / length($str)); -} - -is(percentageOfString('perl','e'),25,'Example 1'); -is(percentageOfString('java','a'),50,'Example 2'); -is(percentageOfString('python','m'),0,'Example 3'); -is(percentageOfString('ada','67'),0,'Example 4'); - -done_testing; diff --git a/challenge-273/perlboy1967/perl/ch2.pl b/challenge-273/perlboy1967/perl/ch2.pl deleted file mode 100755 index db7ee646d1..0000000000 --- a/challenge-273/perlboy1967/perl/ch2.pl +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/perl - -=pod - -The Weekly Challenge - 273 -- https://theweeklychallenge.org/blog/perl-weekly-challenge-273 - -Author: Niels 'PerlBoy' van Dijke - -Task 2: B After A -Submitted by: Mohammad Sajid Anwar - -You are given a string, $str. - -Write a script to return true if there is at least one 'b', and -no 'a' appears after the first 'b'. - -=cut - -use v5.32; -use feature qw(signatures); -use common::sense; - -use Data::Printer; - -use Test2::V0; - -sub bAfterA ($str) { - 0 + ($str =~ m#^[^b]*b[^a]*$#); -} - -is(bAfterA('aabb'),1,'Example 1 (aabb)'); -is(bAfterA('abab'),0,'Example 2 (abab)'); -is(bAfterA('aaa'),0,'Example 3 (aaa)'); -is(bAfterA('bbb'),1,'Example 3 (bbb)'); - -done_testing; diff --git a/challenge-273/ulrich-rieke/cpp/ch-1.cpp b/challenge-273/ulrich-rieke/cpp/ch-1.cpp new file mode 100755 index 0000000000..5e98e0873d --- /dev/null +++ b/challenge-273/ulrich-rieke/cpp/ch-1.cpp @@ -0,0 +1,25 @@ +#include +#include +#include +#include + +int main( ) { + std::cout << "Enter a word!\n" ; + std::string word ; + std::cin >> word ; + std::cout << "Enter a character!\n" ; + char c ; + std::cin >> c ; + int frequency = std::count( word.begin( ) , word.end( ) , c ) ; + double percentage = (static_cast( frequency ) / word.length( ) ) + * 100.0 ; + double bottom = std::floor( percentage ) ; + if ( percentage - bottom > 0.4 ) { + std::cout << bottom + 1 << '\n' ; + } + else { + std::cout << bottom << '\n' ; + } + return 0 ; +} + diff --git a/challenge-273/ulrich-rieke/cpp/ch-2.cpp b/challenge-273/ulrich-rieke/cpp/ch-2.cpp new file mode 100755 index 0000000000..27cf48fd06 --- /dev/null +++ b/challenge-273/ulrich-rieke/cpp/ch-2.cpp @@ -0,0 +1,16 @@ +#include +#include + +int main( ) { + std::cout << "Enter a word!\n" ; + std::string word ; + std::cin >> word ; + std::string result { "false" } ; + auto pos = word.find( 'b' ) ; + if ( pos != std::string::npos ) { + if ( word.substr( pos + 1 ).find( 'a' ) == std::string::npos ) + result = "true" ; + } + std::cout << result << '\n' ; + return 0 ; +} diff --git a/challenge-273/ulrich-rieke/haskell/ch-1.hs b/challenge-273/ulrich-rieke/haskell/ch-1.hs new file mode 100755 index 0000000000..836a63edef --- /dev/null +++ b/challenge-273/ulrich-rieke/haskell/ch-1.hs @@ -0,0 +1,18 @@ +module Challenge273 + where +import Data.List ( findIndices ) + +solution :: String -> Char -> Int +solution haystack needle = + let percentage = ((fromIntegral $ length $ findIndices ( == needle ) haystack) / + (fromIntegral $ length haystack)) * 100.0 + bottom = floor percentage + in if percentage - ( fromIntegral bottom ) > 0.4 then bottom + 1 else bottom + +main :: IO ( ) +main = do + putStrLn "Enter a word!" + word <- getLine + putStrLn "Enter a character!" + character <- getLine + print $ solution word ( head character ) diff --git a/challenge-273/ulrich-rieke/haskell/ch-2.hs b/challenge-273/ulrich-rieke/haskell/ch-2.hs new file mode 100755 index 0000000000..4e878c0156 --- /dev/null +++ b/challenge-273/ulrich-rieke/haskell/ch-2.hs @@ -0,0 +1,16 @@ +module Challenge273_2 + where +import Data.List ( findIndex ) +import Data.Maybe ( fromJust ) + +condition :: String -> Bool +condition str = elem 'b' str && notElem 'a' ( drop ( pos + 1 ) str ) + where + pos :: Int + pos = fromJust $ findIndex ( == 'b' ) str + +main :: IO ( ) +main = do + putStrLn "Enter a word!" + word <- getLine + print $ condition word diff --git a/challenge-273/ulrich-rieke/perl/ch-1.pl b/challenge-273/ulrich-rieke/perl/ch-1.pl new file mode 100755 index 0000000000..859219bee6 --- /dev/null +++ b/challenge-273/ulrich-rieke/perl/ch-1.pl @@ -0,0 +1,20 @@ +#!/usr/bin/perl ; +use strict ; +use warnings ; +use feature 'say' ; +use POSIX ; + +say "Enter a word!" ; +my $word = ; +chomp $word ; +say "Enter a character!" ; +my $character = ; +chomp $character ; +my $percentage = (scalar ( grep { $_ eq $character } split( + // , $word ) ) / length $word ) * 100 ; +if ( $percentage - floor( $percentage ) > 0.4 ) { + say floor( $percentage ) + 1 ; +} +else { + say floor( $percentage ) ; +} diff --git a/challenge-273/ulrich-rieke/perl/ch-2.pl b/challenge-273/ulrich-rieke/perl/ch-2.pl new file mode 100755 index 0000000000..7e9f6e1868 --- /dev/null +++ b/challenge-273/ulrich-rieke/perl/ch-2.pl @@ -0,0 +1,16 @@ +#!/usr/bin/perl ; +use strict ; +use warnings ; +use feature 'say' ; + +say "Enter a word!" ; +my $word = ; +chomp $word ; +my $result = "false" ; +if ( $word =~ /b/ ) { + my $pos = index( $word , 'b' ) ; + if ( substr( $word , $pos + 1 ) !~ /a/ ) { + $result = "true" ; + } +} +say $result ; diff --git a/challenge-273/ulrich-rieke/raku/ch-1.raku b/challenge-273/ulrich-rieke/raku/ch-1.raku new file mode 100755 index 0000000000..e7e41a7a06 --- /dev/null +++ b/challenge-273/ulrich-rieke/raku/ch-1.raku @@ -0,0 +1,8 @@ +use v6 ; + +say "Enter a word!" ; +my $word = $*IN.get ; +say "Enter a character!" ; +my $needle = $*IN.get ; +my $count = $word.comb.grep( {$_ eq $needle} ).elems ; +say (( $count / $word.chars ) * 100).round ; diff --git a/challenge-273/ulrich-rieke/raku/ch-2.raku b/challenge-273/ulrich-rieke/raku/ch-2.raku new file mode 100755 index 0000000000..784e645bb0 --- /dev/null +++ b/challenge-273/ulrich-rieke/raku/ch-2.raku @@ -0,0 +1,12 @@ +use v6 ; + +say "Enter a word!" ; +my $word = $*IN.get ; +my $result = False ; +if ( $word ~~ /b/ ) { + my $pos = $word.index( 'b' ) ; + if ($word.substr( $pos + 1 ) !~~ /a/) { + $result = True ; + } +} +say $result ; diff --git a/challenge-273/ulrich-rieke/rust/ch-1.rs b/challenge-273/ulrich-rieke/rust/ch-1.rs new file mode 100755 index 0000000000..c9bc619bc8 --- /dev/null +++ b/challenge-273/ulrich-rieke/rust/ch-1.rs @@ -0,0 +1,18 @@ +use std::io ; + +fn main() { + println!("Enter a word!"); + let mut inline : String = String::new( ) ; + io::stdin( ).read_line( &mut inline ).unwrap( ) ; + let word_line : &str = inline.as_str( ).trim( ) ; + println!("Enter a character!" ) ; + let mut cline : String = String::new( ) ; + io::stdin( ).read_line( &mut cline ).unwrap( ) ; + let charline : &str = cline.as_str( ).trim( ) ; + let needle : char = charline.chars( ).nth( 0 ).unwrap( ) ; + let frequency = word_line.chars( ).filter( | c | *c == needle ). + count( ) ; + let result : u8 = ((frequency as f32 / word_line.chars( ).count( ) as f32) + * 100.0).round( ) as u8 ; + println!("{}" , result ) ; +} diff --git a/challenge-273/ulrich-rieke/rust/ch-2.rs b/challenge-273/ulrich-rieke/rust/ch-2.rs new file mode 100755 index 0000000000..3c8d0157f5 --- /dev/null +++ b/challenge-273/ulrich-rieke/rust/ch-2.rs @@ -0,0 +1,17 @@ +use std::io ; + +fn main() { + println!("Enter a word!"); + let mut inline : String = String::new( ) ; + io::stdin( ).read_line( &mut inline ).unwrap( ) ; + let entered_line : &str = inline.as_str( ).trim( ) ; + let mut result : bool = false ; + if entered_line.contains( "b" ) { + let bpos : usize = entered_line.find( "b" ).unwrap( ) ; + let ( _ , second ) = entered_line.split_at( bpos ) ; + if ! second.contains( "a" ) { + result = true ; + } + } + println!("{}" , result) ; +} diff --git a/challenge-273/wanderdoc/perl/ch-1.pl b/challenge-273/wanderdoc/perl/ch-1.pl new file mode 100755 index 0000000000..da0e3ba65a --- /dev/null +++ b/challenge-273/wanderdoc/perl/ch-1.pl @@ -0,0 +1,71 @@ +#!perl +use strict; +use warnings FATAL => qw(all); + +=prompt +You are given a string, $str and a character $char. + +Write a script to return the percentage, nearest whole, of given character in the given string. +Example 1 + +Input: $str = "perl", $char = "e" +Output: 25 + +Example 2 + +Input: $str = "java", $char = "a" +Output: 50 + +Example 3 + +Input: $str = "python", $char = "m" +Output: 0 + +Example 4 + +Input: $str = "ada", $char = "a" +Output: 67 + +Example 5 + +Input: $str = "ballerina", $char = "l" +Output: 22 + +Example 6 + +Input: $str = "analitik", $char = "k" +Output: 13 +=cut + + +use List::Util qw(sum); +# use Math::Round; +use Test2::V0; + +# sprintf uses the Round half to even method. +# Math::Round would do the right thing. +# Here we imitate $Math::Round::half to fix the sprintf behavior. +use constant epsilon => 1e-6; + +is(percentage_character('perl', 'e'), 25, 'Example 1'); +is(percentage_character('java', 'a'), 50, 'Example 2'); +is(percentage_character('python', 'm'), 0, 'Example 3'); +is(percentage_character('ada', 'a'), 67, 'Example 4'); +is(percentage_character('ballerina', 'l'), 22, 'Example 5'); +is(percentage_character('analitik', 'k'), 13, 'Example 6'); +done_testing(); + + +sub percentage_character +{ + my $string = $_[0]; + my $character = $_[1]; + my %freq; + for my $chr (split(//, lc $string)) + { + $freq{$chr}++; + } + my $this_freq = $freq{ lc $character } // 0; + return # round($this_freq * 100 / sum(values %freq)); + sprintf("%.0f", (epsilon + $this_freq / sum(values %freq)) * 100 ); +} \ No newline at end of file diff --git a/challenge-273/wanderdoc/perl/ch-2.pl b/challenge-273/wanderdoc/perl/ch-2.pl new file mode 100755 index 0000000000..a718d82948 --- /dev/null +++ b/challenge-273/wanderdoc/perl/ch-2.pl @@ -0,0 +1,47 @@ +#!perl +use strict; +use warnings FATAL => qw(all); + +=prompt +You are given a string, $str. + +Write a script to return true if there is at least one b, and no a appears after the first b. +Example 1 + +Input: $str = "aabb" +Output: true + +Example 2 + +Input: $str = "abab" +Output: false + +Example 3 + +Input: $str = "aaa" +Output: false + +Example 4 + +Input: $str = "bbb" +Output: true +=cut + +use constant false => 0; +use constant true => 1; + +use Test2::V0; + +is(b_after_a('aabb'), true, 'Example 1'); +is(b_after_a('abab'), false, 'Example 2'); +is(b_after_a('aaa'), false, 'Example 3'); +is(b_after_a('bbb'), true, 'Example 4'); +is(b_after_a('bbba'), true, 'Example 5'); # no a appears after the _first_ b +done_testing(); + +sub b_after_a +{ + my $string = $_[0]; + return ($string =~ /b/ and $string !~ /[^b]b(?=a)/) * 1; + # 'no a after _any_ b' would be: $string !~ /b(?=a)/ +} \ No newline at end of file diff --git a/stats/pwc-challenge-272.json b/stats/pwc-challenge-272.json new file mode 100644 index 0000000000..7d5edee691 --- /dev/null +++ b/stats/pwc-challenge-272.json @@ -0,0 +1,665 @@ +{ + "subtitle" : { + "text" : "[Champions: 35] Last updated at 2024-06-11 12:09:13 GMT" + }, + "xAxis" : { + "type" : "category" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "tooltip" : { + "followPointer" : 1, + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
" + }, + "legend" : { + "enabled" : 0 + }, + "series" : [ + { + "data" : [ + { + "y" : 3, + "name" : "Adam Russell", + "drilldown" : "Adam Russell" + }, + { + "drilldown" : "Ali Moradi", + "name" : "Ali Moradi", + "y" : 5 + }, + { + "drilldown" : "Andrew Schneider", + "y" : 3, + "name" : "Andrew Schneider" + }, + { + "drilldown" : "Arne Sommer", + "y" : 3, + "name" : "Arne Sommer" + }, + { + "drilldown" : "Athanasius", + "name" : "Athanasius", + "y" : 4 + }, + { + "name" : "BarrOff", + "y" : 2, + "drilldown" : "BarrOff" + }, + { + "drilldown" : "Bob Lied", + "y" : 2, + "name" : "Bob Lied" + }, + { + "drilldown" : "Bruce Gray", + "y" : 2, + "name" : "Bruce Gray" + }, + { + "name" : "Dave Jacoby", + "y" : 2, + "drilldown" : "Dave Jacoby" + }, + { + "drilldown" : "David Ferrone", + "y" : 2, + "name" : "David Ferrone" + }, + { + "name" : "E. Choroba", + "y" : 2, + "drilldown" : "E. Choroba" + }, + { + "y" : 2, + "name" : "Feng Chang", + "drilldown" : "Feng Chang" + }, + { + "y" : 5, + "name" : "Jaldhar H. Vyas", + "drilldown" : "Jaldhar H. Vyas" + }, + { + "y" : 2, + "name" : "Jan Krnavek", + "drilldown" : "Jan Krnavek" + }, + { + "drilldown" : "Jorg Sommrey", + "y" : 3, + "name" : "Jorg Sommrey" + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 6, + "name" : "Laurent Rosenfeld" + }, + { + "drilldown" : "Luca Ferrari", + "y" : 11, + "name" : "Luca Ferrari" + }, + { + "y" : 2, + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson" + }, + { + "y" : 2, + "name" : "Matthew Neleigh", + "drilldown" : "Matthew Neleigh" + }, + { + "drilldown" : "Matthias Muth", + "y" : 3, + "name" : "Matthias Muth" + }, + { + "name" : "Nelo Tovar", + "y" : 2, + "drilldown" : "Nelo Tovar" + }, + { + "drilldown" : "Niels van Dijke", + "y" : 2, + "name" : "Niels van Dijke" + }, + { + "y" : 5, + "name" : "Packy Anderson", + "drilldown" : "Packy Anderson" + }, + { + "drilldown" : "Peter Campbell Smith", + "y" : 3, + "name" : "Peter Campbell Smith" + }, + { + "drilldown" : "Peter Meszaros", + "name" : "Peter Meszaros", + "y" : 2 + }, + { + "drilldown" : "Reinier Maliepaard", + "y" : 3, + "name" : "Reinier Maliepaard" + }, + { + "y" : 3, + "name" : "Robbie Hatley", + "drilldown" : "Robbie Hatley" + }, + { + "drilldown" : "Robert Ransbottom", + "y" : 2, + "name" : "Robert Ransbottom" + }, + { + "drilldown" : "Roger Bell_West", + "y" : 5, + "name" : "Roger Bell_West" + }, + { + "drilldown" : "Santiago Leyva", + "name" : "Santiago Leyva", + "y" : 2 + }, + { + "drilldown" : "Simon Green", + "y" : 2, + "name" : "Simon Green" + }, + { + "drilldown" : "Thomas Kohler", + "name" : "Thomas Kohler", + "y" : 4 + }, + { + "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke", + "y" : 4 + }, + { + "name" : "W. Luis Mochan", + "y" : 3, + "drilldown" : "W. Luis Mochan" + }, + { + "drilldown" : "Wanderdoc", + "y" : 2, + "name" : "Wanderdoc" + } + ], + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 272" + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "title" : { + "text" : "The Weekly Challenge - 272" + }, + "chart" : { + "type" : "column" + }, + "drilldown" : { + "series" : [ + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Adam Russell", + "name" : "Adam Russell" + }, + { + "name" : "Ali Moradi", + "id" : "Ali Moradi", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "name" : "Andrew Schneider", + "id" : "Andrew Schneider", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "name" : "Arne Sommer", + "id" : "Arne Sommer", + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "name" : "Athanasius", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ], + "id" : "Athanasius" + }, + { + "name" : "BarrOff", + "id" : "BarrOff", + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Bob Lied", + "name" : "Bob Lied" + }, + { + "name" : "Bruce Gray", + "id" : "Bruce Gray", + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "name" : "David Ferrone", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "David Ferrone" + }, + { + "name" : "E. Choroba", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "E. Choroba" + }, + { + "name" : "Feng Chang", + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Feng Chang" + }, + { + "id" : "Jaldhar H. Vyas", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Jaldhar H. Vyas" + }, + { + "name" : "Jan Krnavek", + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Jan Krnavek" + }, + { + "id" : "Jorg Sommrey", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Jorg Sommrey" + }, + { + "name" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 2 + ] + ], + "id" : "Laurent Rosenfeld" + }, + { + "name" : "Luca Ferrari", + "data" : [ + [ + "Raku", + 2 + ], + [ + "Blog", + 9 + ] + ], + "id" : "Luca Ferrari" + }, + { + "name" : "Mark Anderson", + "id" : "Mark Anderson", + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "id" : "Matthew Neleigh", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Matthew Neleigh" + }, + { + "id" : "Matthias Muth", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "name" : "Matthias Muth" + }, + { + "name" : "Nelo Tovar", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Nelo Tovar" + }, + { + "name" : "Niels van Dijke", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Niels van Dijke" + }, + { + "name" : "Packy Anderson", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Packy Anderson" + }, + { + "name" : "Peter Campbell Smith", + "id" : "Peter Campbell Smith", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Peter Meszaros", + "name" : "Peter Meszaros" + }, + { + "name" : "Reinier Maliepaard", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Reinier Maliepaard" + }, + { + "name" : "Robbie Hatley", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Robbie Hatley" + }, + { + "name" : "Robert Ransbottom", + "id" : "Robert Ransbottom", + "data" : [ + [ + "Raku", + 2 + ] + ] + }, + { + "name" : "Roger Bell_West", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "Roger Bell_West" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Santiago Leyva", + "name" : "Santiago Leyva" + }, + { + "id" : "Simon Green", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Simon Green" + }, + { + "name" : "Thomas Kohler", + "id" : "Thomas Kohler", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 2 + ] + ] + }, + { + "data" : [ + [ + "Perl", + 2 + ], + [ + "Raku", + 2 + ] + ], + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke" + }, + { + "name" : "W. Luis Mochan", + "data" : [ + [ + "Perl", + 2 + ], + [ + "Blog", + 1 + ] + ], + "id" : "W. Luis Mochan" + }, + { + "id" : "Wanderdoc", + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Wanderdoc" + } + ] + } +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index bdc7f24a4f..a9460741aa 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,253 +1,14 @@ { "tooltip" : { - "followPointer" : 1, "headerFormat" : "{series.name}
", + "followPointer" : 1, "pointFormat" : "{point.name}: {point.y:f}
" }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : 0 - }, - "subtitle" : { - "text" : "[Champions: 35] Last updated at 2024-06-10 00:43:16 GMT" - }, - "title" : { - "text" : "The Weekly Challenge - 272" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, - "xAxis" : { - "type" : "category" - }, - "series" : [ - { - "name" : "The Weekly Challenge - 272", - "data" : [ - { - "name" : "Adam Russell", - "drilldown" : "Adam Russell", - "y" : 3 - }, - { - "name" : "Ali Moradi", - "y" : 5, - "drilldown" : "Ali Moradi" - }, - { - "name" : "Andrew Schneider", - "y" : 3, - "drilldown" : "Andrew Schneider" - }, - { - "y" : 2, - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer" - }, - { - "name" : "Athanasius", - "drilldown" : "Athanasius", - "y" : 4 - }, - { - "drilldown" : "BarrOff", - "y" : 2, - "name" : "BarrOff" - }, - { - "name" : "Bob Lied", - "y" : 2, - "drilldown" : "Bob Lied" - }, - { - "y" : 2, - "drilldown" : "Bruce Gray", - "name" : "Bruce Gray" - }, - { - "name" : "Dave Jacoby", - "drilldown" : "Dave Jacoby", - "y" : 2 - }, - { - "name" : "David Ferrone", - "drilldown" : "David Ferrone", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "E. Choroba", - "name" : "E. Choroba" - }, - { - "drilldown" : "Feng Chang", - "y" : 2, - "name" : "Feng Chang" - }, - { - "drilldown" : "Jaldhar H. Vyas", - "y" : 5, - "name" : "Jaldhar H. Vyas" - }, - { - "y" : 2, - "drilldown" : "Jan Krnavek", - "name" : "Jan Krnavek" - }, - { - "name" : "Jorg Sommrey", - "y" : 3, - "drilldown" : "Jorg Sommrey" - }, - { - "name" : "Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld", - "y" : 6 - }, - { - "drilldown" : "Luca Ferrari", - "y" : 11, - "name" : "Luca Ferrari" - }, - { - "y" : 2, - "drilldown" : "Mark Anderson", - "name" : "Mark Anderson" - }, - { - "y" : 2, - "drilldown" : "Matthew Neleigh", - "name" : "Matthew Neleigh" - }, - { - "drilldown" : "Matthias Muth", - "y" : 3, - "name" : "Matthias Muth" - }, - { - "name" : "Nelo Tovar", - "drilldown" : "Nelo Tovar", - "y" : 2 - }, - { - "drilldown" : "Niels van Dijke", - "y" : 2, - "name" : "Niels van Dijke" - }, - { - "y" : 5, - "drilldown" : "Packy Anderson", - "name" : "Packy Anderson" - }, - { - "name" : "Peter Campbell Smith", - "drilldown" : "Peter Campbell Smith", - "y" : 3 - }, - { - "name" : "Peter Meszaros", - "drilldown" : "Peter Meszaros", - "y" : 2 - }, - { - "y" : 3, - "drilldown" : "Reinier Maliepaard", - "name" : "Reinier Maliepaard" - }, - { - "drilldown" : "Robbie Hatley", - "y" : 3, - "name" : "Robbie Hatley" - }, - { - "name" : "Robert Ransbottom", - "y" : 2, - "drilldown" : "Robert Ransbottom" - }, - { - "name" : "Roger Bell_West", - "y" : 5, - "drilldown" : "Roger Bell_West" - }, - { - "name" : "Santiago Leyva", - "y" : 2, - "drilldown" : "Santiago Leyva" - }, - { - "name" : "Simon Green", - "drilldown" : "Simon Green", - "y" : 2 - }, - { - "y" : 4, - "drilldown" : "Thomas Kohler", - "name" : "Thomas Kohler" - }, - { - "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke", - "y" : 4 - }, - { - "y" : 3, - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan" - }, - { - "drilldown" : "Wanderdoc", - "y" : 2, - "name" : "Wanderdoc" - } - ], - "colorByPoint" : 1 - } - ], "drilldown" : { "series" : [ { - "id" : "Adam Russell", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "name" : "Adam Russell" - }, - { - "id" : "Ali Moradi", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ], - "name" : "Ali Moradi" - }, - { - "id" : "Andrew Schneider", - "name" : "Andrew Schneider", + "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl", @@ -260,82 +21,18 @@ ] }, { - "id" : "Arne Sommer", - "name" : "Arne Sommer", - "data" : [ - [ - "Raku", - 2 - ] - ] - }, - { - "id" : "Athanasius", "data" : [ [ "Perl", 2 - ], - [ - "Raku", - 2 ] ], - "name" : "Athanasius" + "id" : "David Ferrone", + "name" : "David Ferrone" }, { - "name" : "BarrOff", - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "BarrOff" - }, - { - "id" : "Bob Lied", - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "Bob Lied" - }, - { - "id" : "Bruce Gray", - "name" : "Bruce Gray", - "data" : [ - [ - "Raku", - 2 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" - }, - { - "name" : "David Ferrone", - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "David Ferrone" - }, - { - "id" : "E. Choroba", "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ [ "Perl", @@ -344,77 +41,6 @@ ] }, { - "data" : [ - [ - "Raku", - 2 - ] - ], - "name" : "Feng Chang", - "id" : "Feng Chang" - }, - { - "id" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 1 - ] - ] - }, - { - "id" : "Jan Krnavek", - "name" : "Jan Krnavek", - "data" : [ - [ - "Raku", - 2 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "name" : "Jorg Sommrey", - "id" : "Jorg Sommrey" - }, - { - "name" : "Laurent Rosenfeld", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Raku", - 2 - ], - [ - "Blog", - 2 - ] - ], - "id" : "Laurent Rosenfeld" - }, - { - "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -425,51 +51,18 @@ 9 ] ], - "name" : "Luca Ferrari" + "name" : "Luca Ferrari", + "id" : "Luca Ferrari" }, { + "name" : "Mark Anderson", "id" : "Mark Anderson", "data" : [ [ "Raku", 2 ] - ], - "name" : "Mark Anderson" - }, - { - "id" : "Matthew Neleigh", - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "Matthew Neleigh" - }, - { - "name" : "Matthias Muth", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], - "id" : "Matthias Muth" - }, - { - "id" : "Nelo Tovar", - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "Nelo Tovar" + ] }, { "data" : [ @@ -478,8 +71,8 @@ 2 ] ], - "name" : "Niels van Dijke", - "id" : "Niels van Dijke" + "id" : "Niels van Dijke", + "name" : "Niels van Dijke" }, { "data" : [ @@ -487,58 +80,27 @@ "Perl", 2 ], - [ - "Raku", - 2 - ], [ "Blog", 1 ] ], - "name" : "Packy Anderson", - "id" : "Packy Anderson" - }, - { "id" : "Peter Campbell Smith", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] - ], "name" : "Peter Campbell Smith" }, { - "data" : [ - [ - "Perl", - 2 - ] - ], + "id" : "Peter Meszaros", "name" : "Peter Meszaros", - "id" : "Peter Meszaros" - }, - { - "id" : "Reinier Maliepaard", "data" : [ [ "Perl", 2 - ], - [ - "Blog", - 1 ] - ], - "name" : "Reinier Maliepaard" + ] }, { "name" : "Robbie Hatley", + "id" : "Robbie Hatley", "data" : [ [ "Perl", @@ -548,21 +110,9 @@ "Blog", 1 ] - ], - "id" : "Robbie Hatley" - }, - { - "name" : "Robert Ransbottom", - "data" : [ - [ - "Raku", - 2 - ] - ], - "id" : "Robert Ransbottom" + ] }, { - "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -571,36 +121,12 @@ [ "Raku", 2 - ], - [ - "Blog", - 1 ] ], + "name" : "Roger Bell_West", "id" : "Roger Bell_West" }, { - "id" : "Santiago Leyva", - "data" : [ - [ - "Perl", - 2 - ] - ], - "name" : "Santiago Leyva" - }, - { - "name" : "Simon Green", - "data" : [ - [ - "Perl", - 2 - ] - ], - "id" : "Simon Green" - }, - { - "name" : "Thomas Kohler", "data" : [ [ "Perl", @@ -611,9 +137,12 @@ 2 ] ], - "id" : "Thomas Kohler" + "id" : "Thomas Kohler", + "name" : "Thomas Kohler" }, { + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -623,39 +152,120 @@ "Raku", 2 ] - ], - "name" : "Ulrich Rieke", - "id" : "Ulrich Rieke" - }, - { - "id" : "W. Luis Mochan", - "name" : "W. Luis Mochan", - "data" : [ - [ - "Perl", - 2 - ], - [ - "Blog", - 1 - ] ] }, { + "id" : "Wanderdoc", "name" : "Wanderdoc", "data" : [ [ "Perl", 2 ] - ], - "id" : "Wanderdoc" + ] } ] }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } + }, + "title" : { + "text" : "The Weekly Challenge - 273" + }, + "series" : [ + { + "data" : [ + { + "y" : 3, + "name" : "Dave Jacoby", + "drilldown" : "Dave Jacoby" + }, + { + "drilldown" : "David Ferrone", + "name" : "David Ferrone", + "y" : 2 + }, + { + "drilldown" : "E. Choroba", + "name" : "E. Choroba", + "y" : 2 + }, + { + "drilldown" : "Luca Ferrari", + "name" : "Luca Ferrari", + "y" : 11 + }, + { + "drilldown" : "Mark Anderson", + "y" : 2, + "name" : "Mark Anderson" + }, + { + "name" : "Niels van Dijke", + "y" : 2, + "drilldown" : "Niels van Dijke" + }, + { + "drilldown" : "Peter Campbell Smith", + "y" : 3, + "name" : "Peter Campbell Smith" + }, + { + "y" : 2, + "name" : "Peter Meszaros", + "drilldown" : "Peter Meszaros" + }, + { + "y" : 3, + "name" : "Robbie Hatley", + "drilldown" : "Robbie Hatley" + }, + { + "drilldown" : "Roger Bell_West", + "y" : 4, + "name" : "Roger Bell_West" + }, + { + "y" : 4, + "name" : "Thomas Kohler", + "drilldown" : "Thomas Kohler" + }, + { + "name" : "Ulrich Rieke", + "y" : 4, + "drilldown" : "Ulrich Rieke" + }, + { + "drilldown" : "Wanderdoc", + "y" : 2, + "name" : "Wanderdoc" + } + ], + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 273" + } + ], + "subtitle" : { + "text" : "[Champions: 13] Last updated at 2024-06-11 12:15:03 GMT" + }, "yAxis" : { "title" : { "text" : "Total Solutions" } + }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, + "legend" : { + "enabled" : 0 } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 9eac236a19..543fac0c56 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,27 +1,21 @@ { - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2024]" + "legend" : { + "enabled" : "false" }, "xAxis" : { "labels" : { "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" } }, "type" : "category" }, - "chart" : { - "type" : "column" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, "subtitle" : { - "text" : "Last updated at 2024-06-10 00:43:16 GMT" + "text" : "Last updated at 2024-06-11 12:15:03 GMT" }, - "legend" : { - "enabled" : "false" + "chart" : { + "type" : "column" }, "yAxis" : { "title" : { @@ -31,33 +25,39 @@ }, "series" : [ { + "dataLabels" : { + "y" : 10, + "align" : "right", + "enabled" : "true", + "rotation" : -90, + "format" : "{point.y:.0f}", + "color" : "#FFFFFF", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + } + }, "name" : "Contributions", "data" : [ [ "Blog", - 4943 + 4958 ], [ "Perl", - 14102 + 14124 ], [ "Raku", - 8180 + 8188 ] - ], - "dataLabels" : { - "format" : "{point.y:.0f}", - "rotation" : -90, - "enabled" : "true", - "y" : 10, - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "align" : "right", - "color" : "#FFFFFF" - } + ] } - ] + ], + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2024]" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 4b92427517..0cc160c3da 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,46 +1,13 @@ { - "xAxis" : { - "type" : "category" - }, - "title" : { - "text" : "The Weekly Challenge Language" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, - "legend" : { - "enabled" : "false" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2024-06-10 00:43:16 GMT" - }, - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" - }, - "chart" : { - "type" : "column" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, "series" : [ { + "name" : "The Weekly Challenge Languages", "colorByPoint" : "true", "data" : [ { - "drilldown" : "001", + "name" : "#001", "y" : 168, - "name" : "#001" + "drilldown" : "001" }, { "name" : "#002", @@ -48,139 +15,139 @@ "drilldown" : "002" }, { + "name" : "#003", "y" : 91, - "drilldown" : "003", - "name" : "#003" + "drilldown" : "003" }, { - "name" : "#004", "drilldown" : "004", - "y" : 106 + "y" : 106, + "name" : "#004" }, { - "y" : 82, "drilldown" : "005", - "name" : "#005" + "name" : "#005", + "y" : 82 }, { + "y" : 63, "name" : "#006", - "drilldown" : "006", - "y" : 63 + "drilldown" : "006" }, { "y" : 71, - "drilldown" : "007", - "name" : "#007" + "name" : "#007", + "drilldown" : "007" }, { - "name" : "#008", "drilldown" : "008", - "y" : 84 + "y" : 84, + "name" : "#008" }, { - "name" : "#009", + "drilldown" : "009", "y" : 82, - "drilldown" : "009" + "name" : "#009" }, { - "y" : 71, "drilldown" : "010", - "name" : "#010" + "name" : "#010", + "y" : 71 }, { + "name" : "#011", "y" : 91, - "drilldown" : "011", - "name" : "#011" + "drilldown" : "011" }, { - "y" : 96, "drilldown" : "012", + "y" : 96, "name" : "#012" }, { + "y" : 88, "name" : "#013", - "drilldown" : "013", - "y" : 88 + "drilldown" : "013" }, { + "name" : "#014", "y" : 104, - "drilldown" : "014", - "name" : "#014" + "drilldown" : "014" }, { + "name" : "#015", "y" : 103, - "drilldown" : "015", - "name" : "#015" + "drilldown" : "015" }, { "drilldown" : "016", - "y" : 75, - "name" : "#016" + "name" : "#016", + "y" : 75 }, { - "y" : 87, "drilldown" : "017", - "name" : "#017" + "name" : "#017", + "y" : 87 }, { "y" : 84, - "drilldown" : "018", - "name" : "#018" + "name" : "#018", + "drilldown" : "018" }, { - "y" : 105, "drilldown" : "019", - "name" : "#019" + "name" : "#019", + "y" : 105 }, { - "name" : "#020", "y" : 103, + "name" : "#020", "drilldown" : "020" }, { - "y" : 74, "drilldown" : "021", - "name" : "#021" + "name" : "#021", + "y" : 74 }, { - "drilldown" : "022", + "name" : "#022", "y" : 72, - "name" : "#022" + "drilldown" : "022" }, { - "y" : 101, "drilldown" : "023", - "name" : "#023" + "name" : "#023", + "y" : 101 }, { "name" : "#024", - "drilldown" : "024", - "y" : 77 + "y" : 77, + "drilldown" : "024" }, { "name" : "#025", - "drilldown" : "025", - "y" : 62 + "y" : 62, + "drilldown" : "025" }, { + "name" : "#026", "y" : 76, - "drilldown" : "026", - "name" : "#026" + "drilldown" : "026" }, { "drilldown" : "027", - "y" : 64, - "name" : "#027" + "name" : "#027", + "y" : 64 }, { - "drilldown" : "028", "y" : 82, - "name" : "#028" + "name" : "#028", + "drilldown" : "028" }, { + "y" : 83, "name" : "#029", - "drilldown" : "029", - "y" : 83 + "drilldown" : "029" }, { "drilldown" : "030", @@ -188,19 +155,19 @@ "name" : "#030" }, { - "y" : 93, "drilldown" : "031", + "y" : 93, "name" : "#031" }, { + "y" : 98, "name" : "#032", - "drilldown" : "032", - "y" : 98 + "drilldown" : "032" }, { + "drilldown" : "033", "name" : "#033", - "y" : 114, - "drilldown" : "033" + "y" : 114 }, { "name" : "#034", @@ -208,14 +175,14 @@ "drilldown" : "034" }, { - "name" : "#035", "drilldown" : "035", + "name" : "#035", "y" : 68 }, { "y" : 70, - "drilldown" : "036", - "name" : "#036" + "name" : "#036", + "drilldown" : "036" }, { "name" : "#037", @@ -223,144 +190,144 @@ "drilldown" : "037" }, { - "name" : "#038", "drilldown" : "038", - "y" : 74 + "y" : 74, + "name" : "#038" }, { + "y" : 68, "name" : "#039", - "drilldown" : "039", - "y" : 68 + "drilldown" : "039" }, { - "name" : "#040", "drilldown" : "040", - "y" : 77 + "y" : 77, + "name" : "#040" }, { + "y" : 80, "name" : "#041", - "drilldown" : "041", - "y" : 80 + "drilldown" : "041" }, { - "name" : "#042", "drilldown" : "042", + "name" : "#042", "y" : 98 }, { "drilldown" : "