aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2023-05-16 17:44:10 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2023-05-16 17:44:10 +0100
commitb601dc472c9ca0ce66e9dacb642d36b1fb304fe3 (patch)
tree2ec33b125d8de86e2755d7e63f5a95728bd58250
parentb03376e69cfb06500ee880f683608a70a81fa2c7 (diff)
downloadperlweeklychallenge-club-b601dc472c9ca0ce66e9dacb642d36b1fb304fe3.tar.gz
perlweeklychallenge-club-b601dc472c9ca0ce66e9dacb642d36b1fb304fe3.tar.bz2
perlweeklychallenge-club-b601dc472c9ca0ce66e9dacb642d36b1fb304fe3.zip
- Added solutions by Ulrich Rieke.
-rw-r--r--challenge-217/ulrich-rieke/cpp/ch-1.cpp34
-rw-r--r--challenge-217/ulrich-rieke/cpp/ch-2.cpp41
-rw-r--r--challenge-217/ulrich-rieke/haskell/ch-1.hs9
-rw-r--r--challenge-217/ulrich-rieke/haskell/ch-2.hs9
-rw-r--r--challenge-217/ulrich-rieke/perl/ch-1.pl17
-rw-r--r--challenge-217/ulrich-rieke/perl/ch-2.pl26
-rw-r--r--challenge-217/ulrich-rieke/raku/ch-1.raku14
-rw-r--r--challenge-217/ulrich-rieke/raku/ch-2.raku21
-rw-r--r--challenge-217/ulrich-rieke/rust/ch-1.rs27
-rw-r--r--challenge-217/ulrich-rieke/rust/ch-2.rs23
-rw-r--r--stats/pwc-current.json247
-rw-r--r--stats/pwc-language-breakdown-summary.json60
-rw-r--r--stats/pwc-language-breakdown.json2924
-rw-r--r--stats/pwc-leaders.json356
-rw-r--r--stats/pwc-summary-1-30.json40
-rw-r--r--stats/pwc-summary-121-150.json44
-rw-r--r--stats/pwc-summary-151-180.json32
-rw-r--r--stats/pwc-summary-181-210.json98
-rw-r--r--stats/pwc-summary-211-240.json106
-rw-r--r--stats/pwc-summary-241-270.json36
-rw-r--r--stats/pwc-summary-271-300.json70
-rw-r--r--stats/pwc-summary-31-60.json104
-rw-r--r--stats/pwc-summary-61-90.json50
-rw-r--r--stats/pwc-summary-91-120.json102
-rw-r--r--stats/pwc-summary.json628
25 files changed, 2679 insertions, 2439 deletions
diff --git a/challenge-217/ulrich-rieke/cpp/ch-1.cpp b/challenge-217/ulrich-rieke/cpp/ch-1.cpp
new file mode 100644
index 0000000000..9270f00d27
--- /dev/null
+++ b/challenge-217/ulrich-rieke/cpp/ch-1.cpp
@@ -0,0 +1,34 @@
+#include <iostream>
+#include <string>
+#include <vector>
+#include <algorithm>
+
+std::vector<std::string> split( const std::string & startline ,
+ const std::string & sep ) {
+ std::vector<std::string> separated ;
+ std::string::size_type start { 0 } ;
+ std::string::size_type pos ;
+ do {
+ pos = startline.find_first_of( sep , start ) ;
+ separated.push_back( startline.substr(start , pos - start )) ;
+ start = pos + 1 ;
+ } while ( pos != std::string::npos ) ;
+ return separated ;
+}
+
+int main( ) {
+ std::cout << "Enter a square matrix of n x n numbers, n >= 2. Enter end to end!\n" ;
+ std::string line ;
+ std::vector<int> allNumbers ;
+ std::getline( std::cin , line ) ;
+ while ( line != "end" ) {
+ std::vector<std::string> last_line ( split( line , " " ) ) ;
+ for ( auto num : last_line ) {
+ allNumbers.push_back( std::stoi( num ) ) ;
+ }
+ std::getline( std::cin , line ) ;
+ }
+ std::sort( allNumbers.begin( ) , allNumbers.end( ) ) ;
+ std::cout << *(allNumbers.begin( ) + 2 ) << std::endl ;
+ return 0 ;
+}
diff --git a/challenge-217/ulrich-rieke/cpp/ch-2.cpp b/challenge-217/ulrich-rieke/cpp/ch-2.cpp
new file mode 100644
index 0000000000..7a61b018c9
--- /dev/null
+++ b/challenge-217/ulrich-rieke/cpp/ch-2.cpp
@@ -0,0 +1,41 @@
+#include <iostream>
+#include <string>
+#include <vector>
+#include <algorithm>
+#include <numeric>
+
+std::vector<std::string> split( const std::string & startline ,
+ const std::string & sep ) {
+ std::vector<std::string> separated ;
+ std::string::size_type start { 0 } ;
+ std::string::size_type pos ;
+ do {
+ pos = startline.find_first_of( sep , start ) ;
+ separated.push_back( startline.substr(start , pos - start )) ;
+ start = pos + 1 ;
+ } while ( pos != std::string::npos ) ;
+ return separated ;
+}
+
+long concatenate( const std::vector<std::string> &numbers ) {
+ std::string concatenated ;
+ for ( int i = 0 ; i < numbers.size( ) ; i++ )
+ concatenated.append( numbers[ i ] ) ;
+ return std::stol( concatenated ) ;
+}
+
+int main( ) {
+ std::cout << "Please enter some numbers, separated by blanks!\n" ;
+ std::string line ;
+ std::getline( std::cin , line ) ;
+ std::vector<std::string> numberstrings ( split( line , " " ) ) ;
+ std::vector<long> results ;
+ results.push_back( concatenate( numberstrings ) ) ;
+ std::sort( numberstrings.begin( ) , numberstrings.end( ) ) ;
+ while ( std::next_permutation( numberstrings.begin( ) , numberstrings.end( ) )) {
+ results.push_back( concatenate( numberstrings )) ;
+ }
+ std::cout << *std::max_element( results.begin( ) , results.end( ) ) <<
+ std::endl ;
+ return 0 ;
+}
diff --git a/challenge-217/ulrich-rieke/haskell/ch-1.hs b/challenge-217/ulrich-rieke/haskell/ch-1.hs
new file mode 100644
index 0000000000..1e5178afab
--- /dev/null
+++ b/challenge-217/ulrich-rieke/haskell/ch-1.hs
@@ -0,0 +1,9 @@
+module Challenge217
+ where
+import Data.List ( sort , (!!) )
+
+solution :: [[Int]] -> Int
+solution list = sorted !! 2
+where
+ sorted :: [Int]
+ sorted = sort $ concat list
diff --git a/challenge-217/ulrich-rieke/haskell/ch-2.hs b/challenge-217/ulrich-rieke/haskell/ch-2.hs
new file mode 100644
index 0000000000..8a7b949d15
--- /dev/null
+++ b/challenge-217/ulrich-rieke/haskell/ch-2.hs
@@ -0,0 +1,9 @@
+module Challenge217_2
+ where
+import Data.List ( sort , permutations )
+
+concatNumbers :: [Int] -> Integer
+concatNumbers list = read $ foldl1 ( ++ ) $ map show list
+
+solution :: [Int] -> Integer
+solution list = maximum $ map concatNumbers $ permutations list
diff --git a/challenge-217/ulrich-rieke/perl/ch-1.pl b/challenge-217/ulrich-rieke/perl/ch-1.pl
new file mode 100644
index 0000000000..6e99b59ed1
--- /dev/null
+++ b/challenge-217/ulrich-rieke/perl/ch-1.pl
@@ -0,0 +1,17 @@
+#!/usr/bin/perl ;
+use strict ;
+use warnings ;
+use feature 'say' ;
+
+say "Enter a square matrix of n x n elements, n > 2 , end to end input!" ;
+my @allNumbers ;
+my $line = <STDIN> ;
+chomp $line ;
+while ( $line ne "end" ) {
+ my @numbers = split( /\s/ , $line ) ;
+ map { push @allNumbers , $_ } @numbers ;
+ $line = <STDIN> ;
+ chomp $line ;
+}
+my @sorted = sort { $a <=> $b } @allNumbers ;
+say $sorted[ 2 ] ;
diff --git a/challenge-217/ulrich-rieke/perl/ch-2.pl b/challenge-217/ulrich-rieke/perl/ch-2.pl
new file mode 100644
index 0000000000..6cee081452
--- /dev/null
+++ b/challenge-217/ulrich-rieke/perl/ch-2.pl
@@ -0,0 +1,26 @@
+#!/usr/bin/perl ;
+use strict ;
+use warnings ;
+use feature 'say' ;
+use Algorithm::Combinatorics qw ( permutations ) ;
+
+sub concatenate {
+ my $numbers = shift ;
+ my $concatenated ;
+ for my $num ( @{$numbers} ) {
+ $concatenated .= $num ;
+ }
+ return $concatenated ;
+}
+
+say "Enter some numbers, separated by blanks!" ;
+my $line = <STDIN> ;
+chomp $line ;
+my @numbers = split( /\s/ , $line ) ;
+my $iter = permutations( \@numbers ) ;
+my @results ;
+while ( my $c = $iter->next ) {
+ push @results , concatenate( $c ) ;
+}
+my @sorted = sort { $b <=> $a } @results ;
+say $sorted[ 0 ] ;
diff --git a/challenge-217/ulrich-rieke/raku/ch-1.raku b/challenge-217/ulrich-rieke/raku/ch-1.raku
new file mode 100644
index 0000000000..b7e24202af
--- /dev/null
+++ b/challenge-217/ulrich-rieke/raku/ch-1.raku
@@ -0,0 +1,14 @@
+use v6 ;
+
+say "Enter a square matrix of n x n elements, n >= 2 , end to end!" ;
+my @allNumbers ;
+my $line = $*IN.get ;
+while ( $line ne "end" ) {
+ my @numbers = $line.words ;
+ for @numbers -> $num {
+ @allNumbers.push( +$num ) ;
+ }
+ $line = $*IN.get ;
+}
+my @sorted = @allNumbers.sort( { $^a <=> $^b } ) ;
+say @sorted[ 2 ] ;
diff --git a/challenge-217/ulrich-rieke/raku/ch-2.raku b/challenge-217/ulrich-rieke/raku/ch-2.raku
new file mode 100644
index 0000000000..fa2ee36eb4
--- /dev/null
+++ b/challenge-217/ulrich-rieke/raku/ch-2.raku
@@ -0,0 +1,21 @@
+use v6 ;
+
+sub concatenate( $aSequence ) {
+ my $number = "";
+ my $len = $aSequence.elems ;
+ for (0..$len - 1 ) -> $n {
+ $number ~= $aSequence[ $n ] ;
+ }
+ return $number.Int ;
+}
+
+say "Enter some numbers, separated by blanks!" ;
+my $line = $*IN.get ;
+my @numbers = $line.words ;
+my $len = @numbers.elems ;
+my $allPermus = @numbers.permutations ;
+my @results ;
+for (0 .. $allPermus.elems - 1 ) -> $n {
+ @results.push( concatenate( $allPermus[ $n ] )) ;
+}
+say @results.max ;
diff --git a/challenge-217/ulrich-rieke/rust/ch-1.rs b/challenge-217/ulrich-rieke/rust/ch-1.rs
new file mode 100644
index 0000000000..f76d8ed075
--- /dev/null
+++ b/challenge-217/ulrich-rieke/rust/ch-1.rs
@@ -0,0 +1,27 @@
+use std::io ;
+use std::io::BufRead ;
+
+fn main() {
+ println!("Enter at least 2 lines of a matrix with at least 2 numbers each!");
+ println!( "Enter end to end!" ) ;
+ let mut all_numbers : Vec<String> = Vec::new( ) ;
+ for line in io::stdin( ).lock( ).lines( ) {
+ let inline : String = line.unwrap( ) ;
+ if inline != "end" {
+ all_numbers.push( inline ) ;
+ }
+ else {
+ break ;
+ }
+ }
+ let mut numbers : Vec<i32> = Vec::new( ) ;
+ for s in all_numbers {
+ let nums : Vec<i32> = s.as_str( ).split_whitespace( ).map( | s |
+ s.parse::<i32>( ).unwrap( )).collect( ) ;
+ for i in nums {
+ numbers.push( i ) ;
+ }
+ }
+ numbers.sort( ) ;
+ println!("{}" , numbers[2] ) ;
+}
diff --git a/challenge-217/ulrich-rieke/rust/ch-2.rs b/challenge-217/ulrich-rieke/rust/ch-2.rs
new file mode 100644
index 0000000000..f4be537241
--- /dev/null
+++ b/challenge-217/ulrich-rieke/rust/ch-2.rs
@@ -0,0 +1,23 @@
+use std::io ;
+use itertools::Itertools ;
+
+fn concatenate_permu( numberstrings : Vec<String> ) -> i64 {
+ let concatenated = numberstrings.into_iter( ).reduce( | akk , s |
+ akk.to_owned( ) + &s ).unwrap( ) ;
+ concatenated.as_str( ).parse::<i64>( ).unwrap( )
+}
+
+fn main() {
+ println!("Please enter some numbers, separated by blanks!");
+ let mut inline : String = String::new( ) ;
+ io::stdin( ).read_line( &mut inline ).unwrap( ) ;
+ let entered_line : &str = &*inline ;
+ let numberstrings : Vec<String> = entered_line.split_whitespace( ).
+ map ( | s | s.to_string( ) ).collect( ) ;
+ let len = numberstrings.len( ) ;
+ let mut all_numbers : Vec<i64> = Vec::new( ) ;
+ for a_vec in numberstrings.into_iter().permutations( len ) {
+ all_numbers.push( concatenate_permu( a_vec ) ) ;
+ }
+ println!("{}" , all_numbers.iter( ).max( ).unwrap( ) ) ;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index af2beebca6..c84034bff8 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,87 +1,18 @@
{
+ "title" : {
+ "text" : "The Weekly Challenge - 217"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "series" : [
- {
- "name" : "The Weekly Challenge - 217",
- "colorByPoint" : 1,
- "data" : [
- {
- "drilldown" : "Ali Moradi",
- "y" : 4,
- "name" : "Ali Moradi"
- },
- {
- "name" : "David Ferrone",
- "drilldown" : "David Ferrone",
- "y" : 2
- },
- {
- "name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld",
- "y" : 5
- },
- {
- "drilldown" : "Leo Manfredi",
- "y" : 1,
- "name" : "Leo Manfredi"
- },
- {
- "drilldown" : "Lubos Kolouch",
- "y" : 2,
- "name" : "Lubos Kolouch"
- },
- {
- "name" : "Luca Ferrari",
- "y" : 8,
- "drilldown" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "y" : 2,
- "drilldown" : "Mark Anderson"
- },
- {
- "drilldown" : "Niels van Dijke",
- "y" : 2,
- "name" : "Niels van Dijke"
- },
- {
- "y" : 3,
- "drilldown" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith"
- },
- {
- "drilldown" : "Robert DiCicco",
- "y" : 4,
- "name" : "Robert DiCicco"
- },
- {
- "y" : 3,
- "drilldown" : "Stephen G. Lynn",
- "name" : "Stephen G. Lynn"
- },
- {
- "name" : "Thomas Kohler",
- "drilldown" : "Thomas Kohler",
- "y" : 4
- },
- {
- "drilldown" : "W. Luis Mochan",
- "y" : 3,
- "name" : "W. Luis Mochan"
- }
- ]
- }
- ],
"drilldown" : {
"series" : [
{
- "name" : "Ali Moradi",
- "id" : "Ali Moradi",
"data" : [
[
"Perl",
@@ -91,20 +22,21 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Ali Moradi",
+ "name" : "Ali Moradi"
},
{
+ "name" : "David Ferrone",
"id" : "David Ferrone",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "David Ferrone"
+ ]
},
{
- "name" : "Laurent Rosenfeld",
"id" : "Laurent Rosenfeld",
"data" : [
[
@@ -119,30 +51,32 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Laurent Rosenfeld"
},
{
- "name" : "Leo Manfredi",
+ "id" : "Leo Manfredi",
"data" : [
[
"Perl",
1
]
],
- "id" : "Leo Manfredi"
+ "name" : "Leo Manfredi"
},
{
"name" : "Lubos Kolouch",
- "id" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Lubos Kolouch"
},
{
"name" : "Luca Ferrari",
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -152,8 +86,7 @@
"Blog",
6
]
- ],
- "id" : "Luca Ferrari"
+ ]
},
{
"name" : "Mark Anderson",
@@ -166,13 +99,13 @@
]
},
{
+ "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
],
- "id" : "Niels van Dijke",
"name" : "Niels van Dijke"
},
{
@@ -190,7 +123,7 @@
"id" : "Peter Campbell Smith"
},
{
- "name" : "Robert DiCicco",
+ "id" : "Robert DiCicco",
"data" : [
[
"Perl",
@@ -201,10 +134,11 @@
2
]
],
- "id" : "Robert DiCicco"
+ "name" : "Robert DiCicco"
},
{
"name" : "Stephen G. Lynn",
+ "id" : "Stephen G. Lynn",
"data" : [
[
"Perl",
@@ -214,11 +148,9 @@
"Blog",
1
]
- ],
- "id" : "Stephen G. Lynn"
+ ]
},
{
- "name" : "Thomas Kohler",
"id" : "Thomas Kohler",
"data" : [
[
@@ -229,10 +161,25 @@
"Blog",
2
]
- ]
+ ],
+ "name" : "Thomas Kohler"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ]
+ ],
+ "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
},
{
- "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -243,12 +190,101 @@
1
]
],
- "id" : "W. Luis Mochan"
+ "name" : "W. Luis Mochan"
}
]
},
- "legend" : {
- "enabled" : 0
+ "subtitle" : {
+ "text" : "[Champions: 14] Last updated at 2023-05-16 16:40:07 GMT"
+ },
+ "series" : [
+ {
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 217",
+ "data" : [
+ {
+ "drilldown" : "Ali Moradi",
+ "y" : 4,
+ "name" : "Ali Moradi"
+ },
+ {
+ "drilldown" : "David Ferrone",
+ "y" : 2,
+ "name" : "David Ferrone"
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5,
+ "name" : "Laurent Rosenfeld"
+ },
+ {
+ "name" : "Leo Manfredi",
+ "y" : 1,
+ "drilldown" : "Leo Manfredi"
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch",
+ "y" : 2
+ },
+ {
+ "y" : 8,
+ "drilldown" : "Luca Ferrari",
+ "name" : "Luca Ferrari"
+ },
+ {
+ "name" : "Mark Anderson",
+ "y" : 2,
+ "drilldown" : "Mark Anderson"
+ },
+ {
+ "drilldown" : "Niels van Dijke",
+ "y" : 2,
+ "name" : "Niels van Dijke"
+ },
+ {
+ "name" : "Peter Campbell Smith",
+ "y" : 3,
+ "drilldown" : "Peter Campbell Smith"
+ },
+ {
+ "name" : "Robert DiCicco",
+ "drilldown" : "Robert DiCicco",
+ "y" : 4
+ },
+ {
+ "name" : "Stephen G. Lynn",
+ "drilldown" : "Stephen G. Lynn",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Thomas Kohler",
+ "y" : 4,
+ "name" : "Thomas Kohler"
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
+ },
+ {
+ "name" : "W. Luis Mochan",
+ "y" : 3,
+ "drilldown" : "W. Luis Mochan"
+ }
+ ]
+ }
+ ],
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : 1,
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
+ },
+ "xAxis" : {
+ "type" : "category"
},
"plotOptions" : {
"series" : {
@@ -258,22 +294,5 @@
},
"borderWidth" : 0
}
- },
- "xAxis" : {
- "type" : "category"
- },
- "subtitle" : {
- "text" : "[Champions: 13] Last updated at 2023-05-16 15:03:39 GMT"
- },
- "title" : {
- "text" : "The Weekly Challenge - 217"
- },
- "chart" : {
- "type" : "column"
- },
- "tooltip" : {
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : 1
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 920f9d56c2..02825625dc 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,39 +1,29 @@
{
- "chart" : {
- "type" : "column"
- },
"title" : {
"text" : "The Weekly Challenge Contributions [2019 - 2023]"
},
- "subtitle" : {
- "text" : "Last updated at 2023-05-16 15:03:39 GMT"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
+ }
},
- "xAxis" : {
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- },
- "type" : "category"
+ "legend" : {
+ "enabled" : "false"
},
"series" : [
{
- "name" : "Contributions",
"dataLabels" : {
"format" : "{point.y:.0f}",
- "y" : 10,
"color" : "#FFFFFF",
- "align" : "right",
- "enabled" : "true",
+ "y" : 10,
"style" : {
"fontSize" : "13px",
"fontFamily" : "Verdana, sans-serif"
},
- "rotation" : -90
+ "rotation" : -90,
+ "align" : "right",
+ "enabled" : "true"
},
"data" : [
[
@@ -42,22 +32,32 @@
],
[
"Perl",
- 11045
+ 11047
],
[
"Raku",
- 6399
+ 6401
]
- ]
+ ],
+ "name" : "Contributions"
}
],
- "yAxis" : {
- "title" : {
- "text" : null
+ "subtitle" : {
+ "text" : "Last updated at 2023-05-16 16:40:07 GMT"
+ },
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
},
- "min" : 0
+ "type" : "category"
},
- "legend" : {
- "enabled" : "false"
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index e3adc000c1..1b889a60bb 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,1118 +1,8 @@
{
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
- "xAxis" : {
- "type" : "category"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "series" : [
- {
- "name" : "The Weekly Challenge Languages",
- "colorByPoint" : "true",
- "data" : [
- {
- "name" : "#001",
- "drilldown" : "001",
- "y" : 163
- },
- {
- "drilldown" : "002",
- "y" : 129,
- "name" : "#002"
- },
- {
- "drilldown" : "003",
- "y" : 87,
- "name" : "#003"
- },
- {
- "name" : "#004",
- "drilldown" : "004",
- "y" : 103
- },
- {
- "name" : "#005",
- "y" : 80,
- "drilldown" : "005"
- },
- {
- "name" : "#006",
- "y" : 61,
- "drilldown" : "006"
- },
- {
- "drilldown" : "007",
- "y" : 69,
- "name" : "#007"
- },
- {
- "y" : 82,
- "drilldown" : "008",
- "name" : "#008"
- },
- {
- "name" : "#009",
- "drilldown" : "009",
- "y" : 80
- },
- {
- "name" : "#010",
- "y" : 69,
- "drilldown" : "010"
- },
- {
- "name" : "#011",
- "drilldown" : "011",
- "y" : 89
- },
- {
- "drilldown" : "012",
- "y" : 92,
- "name" : "#012"
- },
- {
- "name" : "#013",
- "y" : 87,
- "drilldown" : "013"
- },
- {
- "name" : "#014",
- "drilldown" : "014",
- "y" : 102
- },
- {
- "name" : "#015",
- "y" : 101,
- "drilldown" : "015"
- },
- {
- "drilldown" : "016",
- "y" : 75,
- "name" : "#016"
- },
- {
- "name" : "#017",
- "y" : 86,
- "drilldown" : "017"
- },
- {
- "name" : "#018",
- "drilldown" : "018",
- "y" : 83
- },
- {
- "y" : 105,
- "drilldown" : "019",
- "name" : "#019"
- },
- {
- "name" : "#020",
- "y" : 103,
- "drilldown" : "020"
- },
- {
- "name" : "#021",
- "drilldown" : "021",
- "y" : 74
- },
- {
- "name" : "#022",
- "y" : 72,
- "drilldown" : "022"
- },
- {
- "name" : "#023",
- "drilldown" : "023",
- "y" : 101
- },
- {
- "name" : "#024",
- "y" : 77,
- "drilldown" : "024"
- },
- {
- "drilldown" : "025",
- "y" : 62,
- "name" : "#025"
- },
- {
- "y" : 76,
- "drilldown" : "026",
- "name" : "#026"
- },
- {
- "name" : "#027",
- "y" : 64,
- "drilldown" : "027"
- },
- {
- "name" : "#028",
- "drilldown" : "028",
- "y" : 82
- },
- {
- "name" : "#029",
- "drilldown" : "029",
- "y" : 83
- },
- {
- "y" : 121,
- "drilldown" : "030",
- "name" : "#030"
- },
- {
- "y" : 93,
- "drilldown" : "031",
- "name" : "#031"
- },
- {
- "y" : 98,
- "drilld