From ee8fd7a300003228dee8b0d533d09dbee5784d66 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Thu, 20 Jul 2023 23:33:22 +0100 Subject: - Added solutions by Bob Lied. - Added solutions by Flavio Poletti. - Added solutions by Robert DiCicco. --- challenge-226/robert-dicicco/julia/ch-2.jl | 91 + challenge-226/robert-dicicco/perl/ch-2.pl | 90 + challenge-226/robert-dicicco/python/ch-2.py | 84 + challenge-226/robert-dicicco/raku/ch-2.raku | 91 + challenge-226/robert-dicicco/ruby/ch-2.rb | 91 + stats/pwc-current.json | 387 +- stats/pwc-language-breakdown-summary.json | 56 +- stats/pwc-language-breakdown.json | 8778 +++++++++++++-------------- stats/pwc-leaders.json | 380 +- stats/pwc-summary-1-30.json | 106 +- stats/pwc-summary-121-150.json | 32 +- stats/pwc-summary-151-180.json | 120 +- stats/pwc-summary-181-210.json | 50 +- stats/pwc-summary-211-240.json | 122 +- stats/pwc-summary-241-270.json | 100 +- stats/pwc-summary-271-300.json | 98 +- stats/pwc-summary-31-60.json | 112 +- stats/pwc-summary-61-90.json | 128 +- stats/pwc-summary-91-120.json | 106 +- stats/pwc-summary.json | 642 +- 20 files changed, 6069 insertions(+), 5595 deletions(-) create mode 100644 challenge-226/robert-dicicco/julia/ch-2.jl create mode 100644 challenge-226/robert-dicicco/perl/ch-2.pl create mode 100644 challenge-226/robert-dicicco/python/ch-2.py create mode 100644 challenge-226/robert-dicicco/raku/ch-2.raku create mode 100644 challenge-226/robert-dicicco/ruby/ch-2.rb diff --git a/challenge-226/robert-dicicco/julia/ch-2.jl b/challenge-226/robert-dicicco/julia/ch-2.jl new file mode 100644 index 0000000000..5ed1eb4607 --- /dev/null +++ b/challenge-226/robert-dicicco/julia/ch-2.jl @@ -0,0 +1,91 @@ +#!/usr/bin/env julia +#= +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-07-20 +Challenge 226 Task 2 Zero Array ( Julia) +-------------------------------------- +=# +using Printf + +ints = [[1, 5, 0, 3, 5],[0],[2, 1, 4, 0, 3]] +flag = 1 + +function GetMinint(x) + cnt = 1 + minint = 100 + while cnt <= length(x) + if x[cnt] > 0 && x[cnt] < minint + minint = x[cnt] + end + cnt += 1 + end + return minint +end + +cycle = 1 +for nts in ints + global flag, cycle + while flag == 1 + if (cycle == 1) + @printf("Input: ints = %s\n",nts) + end + cnt = 1 + + if length(nts) == 1 && nts[1] == 0 + #last + break + end + + #### find min of array ( not including zero ) + minint = GetMinint(nts) + + cnt = 1 + while cnt <= length(nts) + if nts[cnt] > 0 + nts[cnt] -= minint + end + cnt += 1 + end + + @printf("operation cycle: pick %d %s\n",minint, nts) + cycle +=1 + + cnt = 1 + flag = 0 + while cnt <= length(nts) + if (nts[cnt] > 0) + flag = 1 + end + cnt += 1 + end + end + cycle -= 1 + @printf("Output: %d\n\n",cycle) + flag = 1 + cycle = 1 +end +#= +-------------------------------------- +SAMPLE OUTPUT +julia .\ZeroArray.jl + +Input: ints = [1, 5, 0, 3, 5] +operation cycle: pick 1 [0, 4, 0, 2, 4] +operation cycle: pick 2 [0, 2, 0, 0, 2] +operation cycle: pick 2 [0, 0, 0, 0, 0] +Output: 3 + +Input: ints = [0] +Output: 0 + +Input: ints = [2, 1, 4, 0, 3] +operation cycle: pick 1 [1, 0, 3, 0, 2] +operation cycle: pick 1 [0, 0, 2, 0, 1] +operation cycle: pick 1 [0, 0, 1, 0, 0] +operation cycle: pick 1 [0, 0, 0, 0, 0] +Output: 4 +-------------------------------------- +=# + + diff --git a/challenge-226/robert-dicicco/perl/ch-2.pl b/challenge-226/robert-dicicco/perl/ch-2.pl new file mode 100644 index 0000000000..0a472fc81a --- /dev/null +++ b/challenge-226/robert-dicicco/perl/ch-2.pl @@ -0,0 +1,90 @@ +#!/usr/bin/env perl +=begin comment +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-07-20 +Challenge 226 Task 2 Zero Array ( Perl ) +-------------------------------------- +=cut +use v5.38; +use strict; +use warnings; + +my @ints = ([1, 5, 0, 3, 5],[0],[2, 1, 4, 0, 3]); +my $flag = 1; +my $cnt; + +sub GetMinint(@x) { + my $cnt = 0; + my $minint = 100; + while ($cnt < scalar @x) { + if ( $x[$cnt] > 0 and $x[$cnt] < $minint) { + $minint = $x[$cnt]; + } + $cnt++; + } + return $minint; +} + +my $cycle = 1; +for my $nts (@ints) { + while ($flag == 1) { + if ($cycle == 1) { + say "Input: \@ints = (@$nts)"; + } + $cnt = 0; + + if (scalar @$nts == 1 and $nts->[0] == 0) { + last; + } + + #### find min of array ( not including zero ) + my $minint = GetMinint(@$nts); + + $cnt = 0; + while ($cnt < scalar @$nts) { + if ($nts->[$cnt] > 0) { + $nts->[$cnt] -= $minint; + } + $cnt++; + } + + say "operation $cycle: pick $minint (@$nts)"; + $cycle++; + + $cnt = 0; + $flag = 0; + while ( $cnt < scalar @$nts) { + if ($nts->[$cnt] > 0) { + $flag = 1; + } + $cnt++; + } + } + print("Output: ",$cycle - 1,"\n"); + print("\n"); + $flag = 1; + $cycle = 1; +} +=begin comment +-------------------------------------- +SAMPLE OUTPUT +perl .\ZeroArray.pl + +Input: @ints = (1 5 0 3 5) +operation 1: pick 1 (0 4 0 2 4) +operation 2: pick 2 (0 2 0 0 2) +operation 3: pick 2 (0 0 0 0 0) +Output: 3 + +Input: @ints = (0) +Output: 0 + +Input: @ints = (2 1 4 0 3) +operation 1: pick 1 (1 0 3 0 2) +operation 2: pick 1 (0 0 2 0 1) +operation 3: pick 1 (0 0 1 0 0) +operation 4: pick 1 (0 0 0 0 0) +Output: 4 +-------------------------------------- +=cut diff --git a/challenge-226/robert-dicicco/python/ch-2.py b/challenge-226/robert-dicicco/python/ch-2.py new file mode 100644 index 0000000000..979069c1a6 --- /dev/null +++ b/challenge-226/robert-dicicco/python/ch-2.py @@ -0,0 +1,84 @@ +#!/usr/bin/env python +''' +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-07-20 +Challenge 226 Task 2 Zero Array ( Python ) +-------------------------------------- +''' + +ints = [[1, 5, 0, 3, 5],[0],[2, 1, 4, 0, 3]] +flag = 1 + +def GetMinint(x): + cnt = 0 + minint = 100 + while cnt < len(x): + if x[cnt] > 0 and x[cnt] < minint: + minint = x[cnt] + cnt += 1 + return minint + +cycle = 1 +for nts in ints: + while flag == 1: + if (cycle == 1): + print(f"Input: ints = {nts}") + + cnt = 0 + + if len(nts) == 1 and nts[0] == 0 : + break + + #### find min of array ( not including zero ) + minint = GetMinint(nts) + + cnt = 0 + while cnt < len(nts): + if nts[cnt] > 0 : + nts[cnt] -= minint + + cnt += 1 + + + print(f"operation cycle: pick {minint} {nts}") + cycle +=1 + + cnt = 0 + flag = 0 + while cnt < len(nts) : + if (nts[cnt] > 0) : + flag = 1 + + cnt += 1 + + + cycle -= 1 + print(f"Output: {cycle}\n") + flag = 1 + cycle = 1 + +''' +-------------------------------------- +SAMPLE OUTPUT +python .\ZeroArray.py +Input: ints = [1, 5, 0, 3, 5] +operation cycle: pick 1 [0, 4, 0, 2, 4] +operation cycle: pick 2 [0, 2, 0, 0, 2] +operation cycle: pick 2 [0, 0, 0, 0, 0] +Output: 3 + +Input: ints = [0] +Output: 0 + +Input: ints = [2, 1, 4, 0, 3] +operation cycle: pick 1 [1, 0, 3, 0, 2] +operation cycle: pick 1 [0, 0, 2, 0, 1] +operation cycle: pick 1 [0, 0, 1, 0, 0] +operation cycle: pick 1 [0, 0, 0, 0, 0] +Output: 4 +-------------------------------------- +''' + + + diff --git a/challenge-226/robert-dicicco/raku/ch-2.raku b/challenge-226/robert-dicicco/raku/ch-2.raku new file mode 100644 index 0000000000..20659a23c4 --- /dev/null +++ b/challenge-226/robert-dicicco/raku/ch-2.raku @@ -0,0 +1,91 @@ +#!/usr/bin/nev raku +use v6; +=begin comment +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-07-20 +Challenge 226 Task 2 Zero Array ( Raku ) +-------------------------------------- +=end comment + +my @ints = ([1, 5, 0, 3, 5],[0],[2, 1, 4, 0, 3]); +my $flag = 1; +my $cnt; + +sub GetMinint(@x) { + my $cnt = 0; + my $minint = 100; + while $cnt < @x.elems { + if @x[$cnt] > 0 and @x[$cnt] < $minint { + $minint = @x[$cnt]; + } + $cnt++; + } + return $minint; +} + +my $cycle = 1; +for (@ints) -> @nts { + while $flag == 1 { + if ($cycle == 1) { + say "Input: \@ints = ",@nts; + } + $cnt = 0; + + if @nts.elems == 1 and @nts[0] == 0 { + last; + } + + #### find min of array ( not including zero ) + my $minint = GetMinint(@nts); + + $cnt = 0; + while $cnt < @nts.elems { + if @nts[$cnt] > 0 { + @nts[$cnt] -= $minint; + } + $cnt++; + } + + say "operation $cycle: pick $minint ",@nts; + $cycle++; + + $cnt = 0; + $flag = 0; + while $cnt < @nts.elems { + if (@nts[$cnt] > 0) { + $flag = 1; + } + $cnt++; + } + } + print("Output: ",$cycle - 1,"\n"); + print("\n"); + $flag = 1; + $cycle = 1; +} + +=begin comment +-------------------------------------- +SAMPLE OUTPUT +raku .\ZeroArray.rk + +Input: @ints = [1 5 0 3 5] +operation 1: pick 1 [0 4 0 2 4] +operation 2: pick 2 [0 2 0 0 2] +operation 3: pick 2 [0 0 0 0 0] +Output: 3 + +Input: @ints = [0] +Output: 0 + +Input: @ints = [2 1 4 0 3] +operation 1: pick 1 [1 0 3 0 2] +operation 2: pick 1 [0 0 2 0 1] +operation 3: pick 1 [0 0 1 0 0] +operation 4: pick 1 [0 0 0 0 0] +Output: 4 +-------------------------------------- +=end comment + + diff --git a/challenge-226/robert-dicicco/ruby/ch-2.rb b/challenge-226/robert-dicicco/ruby/ch-2.rb new file mode 100644 index 0000000000..ad8c3035a1 --- /dev/null +++ b/challenge-226/robert-dicicco/ruby/ch-2.rb @@ -0,0 +1,91 @@ +#!/usr/bin/env ruby +=begin +-------------------------------------- +AUTHOR: Robert DiCicco +DATE : 2023-07-20 +Challenge 226 Task 2 Zero Array ( Ruby ) +-------------------------------------- +=end + +ints = [[1, 5, 0, 3, 5],[0],[2, 1, 4, 0, 3]] +flag = 1 + +def GetMinint(x) + cnt = 0 + minint = 100 + while cnt < x.length() + if x[cnt] > 0 and x[cnt] < minint + minint = x[cnt] + end + cnt += 1 + end + return minint +end + +cycle = 1 +ints.each do |nts| + while flag == 1 + if (cycle == 1) + puts("Input: ints = #{nts}") + end + cnt = 0 + + if nts.length() == 1 and nts[0] == 0 + #last + break + end + + #### find min of array ( not including zero ) + minint = GetMinint(nts) + + cnt = 0 + while cnt < nts.length() + if nts[cnt] > 0 + nts[cnt] -= minint + end + cnt += 1 + end + + puts("operation cycle: pick #{minint} #{nts}") + cycle +=1 + + cnt = 0 + flag = 0 + while cnt < nts.length() + if (nts[cnt] > 0) + flag = 1 + end + cnt += 1 + end + end + cycle -= 1 + puts("Output: #{cycle}\n\n") + flag = 1 + cycle = 1 +end + +=begin +-------------------------------------- +SAMPLE OUTPUT +ruby .\ZeroArray.rb + +Input: ints = [1, 5, 0, 3, 5] +operation cycle: pick 1 [0, 4, 0, 2, 4] +operation cycle: pick 2 [0, 2, 0, 0, 2] +operation cycle: pick 2 [0, 0, 0, 0, 0] +Output: 3 + +Input: ints = [0] +Output: 0 + +Input: ints = [2, 1, 4, 0, 3] +operation cycle: pick 1 [1, 0, 3, 0, 2] +operation cycle: pick 1 [0, 0, 2, 0, 1] +operation cycle: pick 1 [0, 0, 1, 0, 0] +operation cycle: pick 1 [0, 0, 0, 0, 0] +Output: 4 +-------------------------------------- +=end + + + diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 876ae160ab..5cc330afaa 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,29 +1,163 @@ { + "series" : [ + { + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 226", + "data" : [ + { + "y" : 2, + "drilldown" : "Adriaan Dens", + "name" : "Adriaan Dens" + }, + { + "name" : "Andreas Voegele", + "y" : 2, + "drilldown" : "Andreas Voegele" + }, + { + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer", + "y" : 3 + }, + { + "name" : "Bob Lied", + "drilldown" : "Bob Lied", + "y" : 3 + }, + { + "y" : 3, + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby" + }, + { + "name" : "David Ferrone", + "drilldown" : "David Ferrone", + "y" : 2 + }, + { + "name" : "Flavio Poletti", + "y" : 6, + "drilldown" : "Flavio Poletti" + }, + { + "y" : 5, + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" + }, + { + "name" : "Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld", + "y" : 6 + }, + { + "name" : "Lubos Kolouch", + "y" : 2, + "drilldown" : "Lubos Kolouch" + }, + { + "y" : 8, + "drilldown" : "Luca Ferrari", + "name" : "Luca Ferrari" + }, + { + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson", + "y" : 2 + }, + { + "name" : "Niels van Dijke", + "drilldown" : "Niels van Dijke", + "y" : 2 + }, + { + "name" : "Packy Anderson", + "y" : 4, + "drilldown" : "Packy Anderson" + }, + { + "name" : "Peter Campbell Smith", + "drilldown" : "Peter Campbell Smith", + "y" : 3 + }, + { + "y" : 2, + "drilldown" : "PokGoPun", + "name" : "PokGoPun" + }, + { + "drilldown" : "Robbie Hatley", + "y" : 3, + "name" : "Robbie Hatley" + }, + { + "drilldown" : "Robert DiCicco", + "y" : 4, + "name" : "Robert DiCicco" + }, + { + "y" : 4, + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "name" : "Steven Wilson", + "y" : 1, + "drilldown" : "Steven Wilson" + }, + { + "drilldown" : "Ulrich Rieke", + "y" : 4, + "name" : "Ulrich Rieke" + }, + { + "y" : 3, + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan" + } + ] + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } + } + }, + "title" : { + "text" : "The Weekly Challenge - 226" + }, "drilldown" : { "series" : [ { + "id" : "Adriaan Dens", "data" : [ [ "Perl", 2 ] ], - "name" : "Adriaan Dens", - "id" : "Adriaan Dens" + "name" : "Adriaan Dens" }, { - "name" : "Andreas Voegele", - "id" : "Andreas Voegele", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Andreas Voegele", + "name" : "Andreas Voegele" }, { "name" : "Arne Sommer", - "id" : "Arne Sommer", "data" : [ [ "Raku", @@ -33,20 +167,24 @@ "Blog", 1 ] - ] + ], + "id" : "Arne Sommer" }, { "data" : [ [ "Perl", 2 + ], + [ + "Blog", + 1 ] ], - "name" : "Bob Lied", - "id" : "Bob Lied" + "id" : "Bob Lied", + "name" : "Bob Lied" }, { - "name" : "Dave Jacoby", "id" : "Dave Jacoby", "data" : [ [ @@ -57,20 +195,38 @@ "Blog", 1 ] + ], + "name" : "Dave Jacoby" + }, + { + "name" : "David Ferrone", + "id" : "David Ferrone", + "data" : [ + [ + "Perl", + 2 + ] ] }, { + "id" : "Flavio Poletti", "data" : [ [ "Perl", 2 + ], + [ + "Raku", + 2 + ], + [ + "Blog", + 2 ] ], - "name" : "David Ferrone", - "id" : "David Ferrone" + "name" : "Flavio Poletti" }, { - "id" : "Jaldhar H. Vyas", "name" : "Jaldhar H. Vyas", "data" : [ [ @@ -85,11 +241,10 @@ "Blog", 1 ] - ] + ], + "id" : "Jaldhar H. Vyas" }, { - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -103,19 +258,22 @@ "Blog", 2 ] - ] + ], + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" }, { + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] - ], - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch" + ] }, { + "name" : "Luca Ferrari", "data" : [ [ "Raku", @@ -126,8 +284,7 @@ 6 ] ], - "id" : "Luca Ferrari", - "name" : "Luca Ferrari" + "id" : "Luca Ferrari" }, { "name" : "Mark Anderson", @@ -150,6 +307,8 @@ "name" : "Niels van Dijke" }, { + "name" : "Packy Anderson", + "id" : "Packy Anderson", "data" : [ [ "Perl", @@ -159,9 +318,7 @@ "Raku", 2 ] - ], - "name" : "Packy Anderson", - "id" : "Packy Anderson" + ] }, { "data" : [ @@ -174,12 +331,12 @@ 1 ] ], - "name" : "Peter Campbell Smith", - "id" : "Peter Campbell Smith" + "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith" }, { - "id" : "PokGoPun", "name" : "PokGoPun", + "id" : "PokGoPun", "data" : [ [ "Perl", @@ -188,8 +345,8 @@ ] }, { - "id" : "Robbie Hatley", "name" : "Robbie Hatley", + "id" : "Robbie Hatley", "data" : [ [ "Perl", @@ -202,20 +359,21 @@ ] }, { + "name" : "Robert DiCicco", "data" : [ [ "Perl", - 1 + 2 ], [ "Raku", - 1 + 2 ] ], - "id" : "Robert DiCicco", - "name" : "Robert DiCicco" + "id" : "Robert DiCicco" }, { + "name" : "Roger Bell_West", "data" : [ [ "Perl", @@ -226,20 +384,20 @@ 2 ] ], - "id" : "Roger Bell_West", - "name" : "Roger Bell_West" + "id" : "Roger Bell_West" }, { "name" : "Steven Wilson", - "id" : "Steven Wilson", "data" : [ [ "Perl", 1 ] - ] + ], + "id" : "Steven Wilson" }, { + "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -250,11 +408,9 @@ 2 ] ], - "name" : "Ulrich Rieke", "id" : "Ulrich Rieke" }, { - "name" : "W. Luis Mochan", "id" : "W. Luis Mochan", "data" : [ [ @@ -265,155 +421,26 @@ "Blog", 1 ] - ] + ], + "name" : "W. Luis Mochan" } ] }, - "title" : { - "text" : "The Weekly Challenge - 226" - }, - "xAxis" : { - "type" : "category" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } + "chart" : { + "type" : "column" }, - "subtitle" : { - "text" : "[Champions: 21] Last updated at 2023-07-20 09:29:43 GMT" + "legend" : { + "enabled" : 0 }, "tooltip" : { "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" - }, - "legend" : { - "enabled" : 0 + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "xAxis" : { + "type" : "category" }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "The Weekly Challenge - 226", - "data" : [ - { - "y" : 2, - "drilldown" : "Adriaan Dens", - "name" : "Adriaan Dens" - }, - { - "y" : 2, - "drilldown" : "Andreas Voegele", - "name" : "Andreas Voegele" - }, - { - "y" : 3, - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer" - }, - { - "drilldown" : "Bob Lied", - "y" : 2, - "name" : "Bob Lied" - }, - { - "name" : "Dave Jacoby", - "drilldown" : "Dave Jacoby", - "y" : 3 - }, - { - "name" : "David Ferrone", - "drilldown" : "David Ferrone", - "y" : 2 - }, - { - "name" : "Jaldhar H. Vyas", - "y" : 5, - "drilldown" : "Jaldhar H. Vyas" - }, - { - "y" : 6, - "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" - }, - { - "name" : "Lubos Kolouch", - "drilldown" : "Lubos Kolouch", - "y" : 2 - }, - { - "name" : "Luca Ferrari", - "y" : 8, - "drilldown" : "Luca Ferrari" - }, - { - "name" : "Mark Anderson", - "drilldown" : "Mark Anderson", - "y" : 2 - }, - { - "drilldown" : "Niels van Dijke", - "y" : 2, - "name" : "Niels van Dijke" - }, - { - "name" : "Packy Anderson", - "y" : 4, - "drilldown" : "Packy Anderson" - }, - { - "name" : "Peter Campbell Smith", - "drilldown" : "Peter Campbell Smith", - "y" : 3 - }, - { - "name" : "PokGoPun", - "y" : 2, - "drilldown" : "PokGoPun" - }, - { - "name" : "Robbie Hatley", - "drilldown" : "Robbie Hatley", - "y" : 3 - }, - { - "drilldown" : "Robert DiCicco", - "y" : 2, - "name" : "Robert DiCicco" - }, - { - "y" : 4, - "drilldown" : "Roger Bell_West", - "name" : "Roger Bell_West" - }, - { - "name" : "Steven Wilson", - "drilldown" : "Steven Wilson", - "y" : 1 - }, - { - "drilldown" : "Ulrich Rieke", - "y" : 4, - "name" : "Ulrich Rieke" - }, - { - "y" : 3, - "drilldown" : "W. Luis Mochan", - "name" : "W. Luis Mochan" - } - ] - } - ], - "chart" : { - "type" : "column" + "subtitle" : { + "text" : "[Champions: 22] Last updated at 2023-07-20 22:26:05 GMT" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 2cf7ae38b5..4291ae93b3 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,9 +1,18 @@ { + "title" : { + "text" : "The Weekly Challenge Contributions [2019 - 2023]" + }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, "subtitle" : { - "text" : "Last updated at 2023-07-20 09:29:43 GMT" + "text" : "Last updated at 2023-07-20 22:26:05 GMT" }, "xAxis" : { "type" : "category", @@ -14,50 +23,41 @@ } } }, - "title" : { - "text" : "The Weekly Challenge Contributions [2019 - 2023]" - }, "series" : [ { "name" : "Contributions", + "dataLabels" : { + "format" : "{point.y:.0f}", + "enabled" : "true", + "color" : "#FFFFFF", + "align" : "right", + "rotation" : -90, + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "y" : 10 + }, "data" : [ [ "Blog", - 3756 + 3759 ], [ "Perl", - 11554 + 11557 ], [ "Raku", - 6647 + 6650 ] - ], - "dataLabels" : { - "enabled" : "true", - "rotation" : -90, - "align" : "right", - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "y" : 10, - "format" : "{point.y:.0f}", - "color" : "#FFFFFF" - } + ] } ], - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : "false" - }, "yAxis" : { + "min" : 0, "title" : { "text" : null - }, - "min" : 0 + } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index d7f68afc62..5cf65d425d 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,4120 +1,17 @@ { - "drilldown" : { - "series" : [ - { - "name" : "001", - "id" : "001", - "data" : [ - [ - "Perl", - 105 - ], - [ - "Raku", - 47 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 83 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ], - "id" : "002", - "name" : "002" - }, - { - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "003", - "id" : "003" - }, - { - "name" : "004", - "id" : "004", - "data" : [ - [ - "Perl", - 60 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "005", - "id" : "005", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 7 - ] - ], - "id" : "006", - "name" : "006" - }, - { - "name" : "007", - "id" : "007", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "id" : "008", - "name" : "008", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ], - "id" : "009", - "name" : "009" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "id" : "010", - "name" : "010" - }, - { - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 10 - ] - ], - "name" : "011", - "id" : "011" - }, - { - "id" : "012", - "name" : "012", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 13 - ] - ], - "id" : "013", - "name" : "013" - }, - { - "id" : "014", - "name" : "014", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "name" : "015", - "id" : "015", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "name" : "016", - "id" : "016", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "name" : "017", - "id" : "017", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "018", - "id" : "018", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "id" : "019", - "name" : "019" - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 13 - ] - ], - "id" : "020", - "name" : "020" - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "name" : "021", - "id" : "021" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "name" : "022", - "id" : "022" - }, - { - "id" : "023", - "name" : "023", - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 11 - ] - ], - "id" : "024", - "name" : "024" - }, - { - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "name" : "025", - "id" : "025" - }, - { - "id" : "026", - "name" : "026", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "name" : "027", - "id" : "027" - }, - { - "name" : "028", - "id" : "028", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "id" : "029", - "name" : "029" - }, - { - "data" : [ - [ - "Perl", - 78 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "030", - "id" : "030" - }, - { - "name" : "031", - "id" : "031", - "data" : [ - [ - "Perl", - 54 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 61 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "name" : "032", - "id" : "032" - }, - { - "data" : [ - [ - "Perl", - 66 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 10 - ] - ], - "name" : "033", - "id" : "033" - }, - { - "id" : "034", - "name" : "034", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ], - "name" : "035", - "id" : "035" - }, - { - "name" : "036", - "id" : "036", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "037", - "id" : "037", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ], - "id" : "038", - "name" : "038" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "name" : "039", - "id" : "039" - }, - { - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "id" : "040", - "name" : "040" - }, - { - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "id" : "041", - "name" : "041" - }, - { - "id" : "042", - "name" : "042", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "043", - "id" : "043", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ], - "id" : "044", - "name" : "044" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 11 - ] - ], - "id" : "045", - "name" : "045" - }, - { - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "id" : "046", - "name" : "046" - }, - { - "name" : "047", - "id" : "047", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 12 - ] - ], - "name" : "048", - "id" : "048" - }, - { - "name" : "049", - "id" : "049", - "data" : [ - [ - "Perl", - 54 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "050", - "id" : "050", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "id" : "051", - "name" : "051", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "id" : "052", - "name" : "052", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 15 - ] - ], - "name" : "053", - "id" : "053" - }, - { - "name" : "054", - "id" : "054", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "id" : "055", - "name" : "055", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 17 - ] - ], - "id" : "056", - "name" : "056" - }, - { - "name" : "057", - "id" : "057", - "data" : [ - [ - "Perl", - 45 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 13 - ] - ], - "id" : "058", - "name" : "058" - }, - { - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 16 - ] - ], - "name" : "059", - "id" : "059" - }, - { - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ], - "name" : "060", - "id" : "060" - }, - { - "id" : "061", - "name" : "061", - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "062", - "id" : "062", - "data" : [ - [ - "Perl", - 32 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ] - }, - { - "name" : "063", - "id" : "063", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "name" : "064", - "id" : "064", - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "name" : "065", - "id" : "065", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "id" : "066", - "name" : "066", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "name" : "067", - "id" : "067", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 18 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 13 - ] - ], - "name" : "068", - "id" : "068" - }, - { - "name" : "069", - "id" : "069", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ], - "id" : "070", - "name" : "070" - }, - { - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 15 - ] - ], - "name" : "071", - "id" : "071" - }, - { - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 42 - ], - [ - "Blog", - 19 - ] - ], - "id" : "072", - "name" : "072" - }, - { - "id" : "073", - "name" : "073", - "data" : [ - [ - "Perl", - 55 - ], - [ - "Raku", - 40 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 20 - ] - ], - "id" : "074", - "name" : "074" - }, - { - "name" : "075", - "id" : "075", - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 20 - ] - ] - }, - { - "id" : "076", - "name" : "076", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "id" : "077", - "name" : "077", - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 14 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 41 - ], - [ - "Blog", - 18 - ] - ], - "id" : "078", - "name" : "078" - }, - { - "data" : [ - [ - "Perl", - 68 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 17 - ] - ], - "name" : "079", - "id" : "079" - }, - { - "data" : [ - [ - "Perl", - 75 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ], - "name" : "080", - "id" : "080" - }, - { - "name" : "081", - "id" : "081", - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 15 - ] - ] - }, - { - "name" : "082", - "id" : "082", - "data" : [ - [ - "Perl", - 62 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 17 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 73 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 16 - ] - ], - "id" : "083", - "name" : "083" - }, - { - "id" : "084", - "name" : "084", - "data" : [ - [ - "Perl", - 71 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 64 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 18 - ] - ], - "name" : "085", - "id" : "085" - }, - { - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "name" : "086", - "id" : "086" - }, - { - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "087", - "name" : "087" - }, - { - "id" : "088", - "name" : "088", - "data" : [ - [ - "Perl", - 65 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 20 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 59 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 20 - ] - ], - "name" : "089", - "id" : "089" - }, - { - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 39 - ], - [ - "Blog", - 17 - ] - ], - "id" : "090", - "name" : "090" - }, - { - "name" : "091", - "id" : "091", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 16 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 52 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 16 - ] - ], - "name" : "092", - "id" : "092" - }, - { - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 16 - ] - ], - "id" : "093", - "name" : "093" - }, - { - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 17 - ] - ], - "name" : "094", - "id" : "094" - }, - { - "name" : "095", - "id" : "095", - "data" : [ - [ - "Perl", -