aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-226/robert-dicicco/julia/ch-2.jl91
-rw-r--r--challenge-226/robert-dicicco/perl/ch-2.pl90
-rw-r--r--challenge-226/robert-dicicco/python/ch-2.py84
-rw-r--r--challenge-226/robert-dicicco/raku/ch-2.raku91
-rw-r--r--challenge-226/robert-dicicco/ruby/ch-2.rb91
-rw-r--r--stats/pwc-current.json387
-rw-r--r--stats/pwc-language-breakdown-summary.json56
-rw-r--r--stats/pwc-language-breakdown.json3144
-rw-r--r--stats/pwc-leaders.json380
-rw-r--r--stats/pwc-summary-1-30.json106
-rw-r--r--stats/pwc-summary-121-150.json32
-rw-r--r--stats/pwc-summary-151-180.json120
-rw-r--r--stats/pwc-summary-181-210.json50
-rw-r--r--stats/pwc-summary-211-240.json122
-rw-r--r--stats/pwc-summary-241-270.json100
-rw-r--r--stats/pwc-summary-271-300.json98
-rw-r--r--stats/pwc-summary-31-60.json112
-rw-r--r--stats/pwc-summary-61-90.json128
-rw-r--r--stats/pwc-summary-91-120.json106
-rw-r--r--stats/pwc-summary.json642
20 files changed, 3252 insertions, 2778 deletions
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" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
- },
- "legend" : {
- "enabled" : 0
+ "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/>"
},
- "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" : "<b>{point.y:.0f}</b>"
},
+ "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
],
[