aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2023-05-02 23:29:20 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2023-05-02 23:29:20 +0100
commitdeeb51ac8e3a8cf29e105c2e09467b04dd3d18eb (patch)
treed5f4e59522016e28e061ff4a970791000eb925db
parentc2bcc8ac11ed87ca49a85282480c8c20b7cf323a (diff)
downloadperlweeklychallenge-club-deeb51ac8e3a8cf29e105c2e09467b04dd3d18eb.tar.gz
perlweeklychallenge-club-deeb51ac8e3a8cf29e105c2e09467b04dd3d18eb.tar.bz2
perlweeklychallenge-club-deeb51ac8e3a8cf29e105c2e09467b04dd3d18eb.zip
- Added solutions by Jorg Sommrey.
- Added solutions by Robert DiCicco.
-rw-r--r--challenge-215/robert-dicicco/perl/ch-2.pl72
-rw-r--r--challenge-215/robert-dicicco/raku/ch-2.raku71
-rw-r--r--stats/pwc-challenge-184.json315
-rw-r--r--stats/pwc-current.json128
-rw-r--r--stats/pwc-language-breakdown-summary.json64
-rw-r--r--stats/pwc-language-breakdown.json1372
-rw-r--r--stats/pwc-leaders.json358
-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.json114
-rw-r--r--stats/pwc-summary-181-210.json110
-rw-r--r--stats/pwc-summary-211-240.json40
-rw-r--r--stats/pwc-summary-241-270.json124
-rw-r--r--stats/pwc-summary-271-300.json82
-rw-r--r--stats/pwc-summary-31-60.json34
-rw-r--r--stats/pwc-summary-61-90.json46
-rw-r--r--stats/pwc-summary-91-120.json102
-rw-r--r--stats/pwc-summary.json48
18 files changed, 1688 insertions, 1530 deletions
diff --git a/challenge-215/robert-dicicco/perl/ch-2.pl b/challenge-215/robert-dicicco/perl/ch-2.pl
new file mode 100644
index 0000000000..2a247a48c3
--- /dev/null
+++ b/challenge-215/robert-dicicco/perl/ch-2.pl
@@ -0,0 +1,72 @@
+#!/usr/bin/env perl
+=begin pod
+-----------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-05-02
+Challenge 215 Number Placement ( Perl )
+-----------------------------------------
+=cut
+use strict;
+use warnings;
+use feature 'say';
+use IO::Prompter;
+
+sub CheckZeroes {
+ my $arr = shift;
+ my $cnt = shift;
+ my $zcnt = $cnt * 2;
+ while($zcnt < scalar @$arr - 1) {
+ if ((@$arr[$zcnt] == 0) && (@$arr[$zcnt-1] != 1)) {
+ @$arr[$zcnt] = 1;
+ }
+ $zcnt++;
+ }
+ say "Output: 1 = ",@$arr;
+}
+
+sub HowManyZeroes {
+ my $arr = shift;
+ my $z = 0;
+ my $zcnt = 0;
+ while ($z < scalar @$arr - 1) {
+ if (@$arr[$z] == 0) {
+ $zcnt++;
+ }
+ $z++;
+ }
+ return $zcnt;
+}
+my $testarr = prompt -num, 'Enter an array as a string of numbers ';
+my @numbers = split(//,$testarr);
+chomp(@numbers);
+
+my $count = prompt -num, 'Enter count ';
+
+#say "Input: \@numbers = ",@numbers;
+#say "Count = ",$count;
+my $zeroes = HowManyZeroes(\@numbers);
+if ($zeroes < $count * 2) {
+ say "Output: 0";
+} else {
+ CheckZeroes(\@numbers,$count-1);
+}
+
+=begin pod
+-----------------------------------------
+SAMPLE OUTPUT
+perl .\NumberPlacement.pl
+Enter an array as a string of numbers 10001
+Enter count 1
+Output: 1 = 10101
+
+perl .\NumberPlacement.pl
+Enter an array as a string of numbers 10001
+Enter count 2
+Output: 0
+
+perl .\NumberPlacement.pl
+Enter an array as a string of numbers 101000001
+Enter count 3
+Output: 1 = 101010101
+-----------------------------------------
+=cut
diff --git a/challenge-215/robert-dicicco/raku/ch-2.raku b/challenge-215/robert-dicicco/raku/ch-2.raku
new file mode 100644
index 0000000000..da1a5ce11c
--- /dev/null
+++ b/challenge-215/robert-dicicco/raku/ch-2.raku
@@ -0,0 +1,71 @@
+#!/usr/bin/env raku
+#`{
+-----------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-05-02
+Challenge 215 Number Placement ( Raku )
+
+When entering, the first digit is the count, the remainder is the array
+For example, the first example would be 1 1 0 0 0 1
+which stands for a count of one, with array 1 0 0 0 1
+-----------------------------------------
+}
+use v6;
+
+sub CheckZeroes(@arr is copy, $cnt) {
+ my $zcnt = $cnt * 2;
+ while $zcnt < @arr.elems - 1 {
+ if ((@arr[$zcnt] == 0) && (@arr[$zcnt-1] != 1)) {
+ @arr[$zcnt] = 1;
+ }
+ $zcnt++;
+ }
+ say "Output: 1 = ",@arr;
+}
+
+sub HowManyZeroes(@arr) {
+ my $z = 0;
+ my $zcnt = 0;
+ while $z < (@arr.elems) - 1 {
+ if (@arr[$z] == 0) {
+ $zcnt++;
+ }
+ $z++;
+ }
+ return $zcnt;
+}
+
+unit sub MAIN ($count where 0 <= $count <= 9, *@numbers where @numbers.elems > 0 && all(@numbers) ~~ UInt);
+say "Input: \@numbers = ", @numbers;
+say "Count = $count";
+
+my $test = HowManyZeroes(@numbers);
+
+my $zeroes = HowManyZeroes(@numbers);
+
+if ($zeroes < $count * 2) {
+ say "Output: 0";
+} else {
+ CheckZeroes(@numbers,$count-1);
+}
+
+
+#`{
+-----------------------------------------
+SAMPLE OUTPUT
+raku .\NumberPlacement.rk 1 1 0 0 0 1
+Input: @numbers = [1 0 0 0 1]
+Count = 1
+Output: 1 = [1 0 1 0 1]
+
+PS G:\Projects\Perl\Challenges> raku .\NumberPlacement.rk 2 1 0 0 0 1
+Input: @numbers = [1 0 0 0 1]
+Count = 2
+Output: 0
+
+PS G:\Projects\Perl\Challenges> raku .\NumberPlacement.rk 3 1 0 1 0 0 0 0 0 1
+Input: @numbers = [1 0 1 0 0 0 0 0 1]
+Count = 3
+Output: 1 = [1 0 1 0 1 0 1 0 1]
+-----------------------------------------
+}
diff --git a/stats/pwc-challenge-184.json b/stats/pwc-challenge-184.json
index 88f279c25f..6accbd31a6 100644
--- a/stats/pwc-challenge-184.json
+++ b/stats/pwc-challenge-184.json
@@ -1,63 +1,52 @@
{
- "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/>"
- },
- "legend" : {
- "enabled" : 0
- },
- "subtitle" : {
- "text" : "[Champions: 37] Last updated at 2023-04-03 00:46:09 GMT"
- },
"xAxis" : {
"type" : "category"
},
- "chart" : {
- "type" : "column"
+ "legend" : {
+ "enabled" : 0
},
"series" : [
{
"data" : [
{
"drilldown" : "Arne Sommer",
- "name" : "Arne Sommer",
- "y" : 5
+ "y" : 5,
+ "name" : "Arne Sommer"
},
{
"drilldown" : "Athanasius",
- "name" : "Athanasius",
- "y" : 4
+ "y" : 4,
+ "name" : "Athanasius"
},
{
- "y" : 2,
"name" : "Bob Lied",
- "drilldown" : "Bob Lied"
+ "drilldown" : "Bob Lied",
+ "y" : 2
},
{
- "name" : "Branislav Zahradnik",
+ "y" : 2,
"drilldown" : "Branislav Zahradnik",
- "y" : 2
+ "name" : "Branislav Zahradnik"
},
{
+ "drilldown" : "Bruce Gray",
"y" : 2,
- "name" : "Bruce Gray",
- "drilldown" : "Bruce Gray"
+ "name" : "Bruce Gray"
},
{
+ "name" : "Cheok-Yin Fung",
"y" : 2,
- "drilldown" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung"
+ "drilldown" : "Cheok-Yin Fung"
},
{
"drilldown" : "Colin Crain",
- "name" : "Colin Crain",
- "y" : 3
+ "y" : 3,
+ "name" : "Colin Crain"
},
{
- "y" : 2,
"name" : "Dario Mazzeo",
- "drilldown" : "Dario Mazzeo"
+ "drilldown" : "Dario Mazzeo",
+ "y" : 2
},
{
"y" : 2,
@@ -65,19 +54,19 @@
"name" : "Dave Cross"
},
{
+ "drilldown" : "Duncan C. White",
"y" : 2,
- "name" : "Duncan C. White",
- "drilldown" : "Duncan C. White"
+ "name" : "Duncan C. White"
},
{
+ "y" : 2,
"drilldown" : "E. Choroba",
- "name" : "E. Choroba",
- "y" : 2
+ "name" : "E. Choroba"
},
{
+ "name" : "Flavio Poletti",
"y" : 6,
- "drilldown" : "Flavio Poletti",
- "name" : "Flavio Poletti"
+ "drilldown" : "Flavio Poletti"
},
{
"name" : "Humberto Massa",
@@ -85,109 +74,114 @@
"y" : 2
},
{
- "y" : 5,
+ "name" : "Jaldhar H. Vyas",
"drilldown" : "Jaldhar H. Vyas",
- "name" : "Jaldhar H. Vyas"
+ "y" : 5
},
{
- "y" : 2,
"name" : "James Raspass",
- "drilldown" : "James Raspass"
+ "drilldown" : "James Raspass",
+ "y" : 2
},
{
- "drilldown" : "James Smith",
"name" : "James Smith",
+ "drilldown" : "James Smith",
"y" : 3
},
{
- "y" : 2,
+ "name" : "Jan Krnavek",
"drilldown" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ "y" : 2
+ },
+ {
+ "drilldown" : "Jorg Sommrey",
+ "y" : 2,
+ "name" : "Jorg Sommrey"
},
{
+ "name" : "Julien Fiegehenn",
"y" : 2,
- "drilldown" : "Julien Fiegehenn",
- "name" : "Julien Fiegehenn"
+ "drilldown" : "Julien Fiegehenn"
},
{
- "drilldown" : "Kjetil Skotheim",
"name" : "Kjetil Skotheim",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Kjetil Skotheim"
},
{
+ "name" : "Kueppo Wesley",
"y" : 2,
- "drilldown" : "Kueppo Wesley",
- "name" : "Kueppo Wesley"
+ "drilldown" : "Kueppo Wesley"
},
{
- "y" : 5,
"name" : "Laurent Rosenfeld",
+ "y" : 5,
"drilldown" : "Laurent Rosenfeld"
},
{
- "drilldown" : "Lubos Kolouch",
"name" : "Lubos Kolouch",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Lubos Kolouch"
},
{
"drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari",
- "y" : 8
+ "y" : 8,
+ "name" : "Luca Ferrari"
},
{
"y" : 2,
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson"
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson"
},
{
"name" : "Marton Polgar",
- "drilldown" : "Marton Polgar",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Marton Polgar"
},
{
- "drilldown" : "Matthew Neleigh",
"name" : "Matthew Neleigh",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Matthew Neleigh"
},
{
- "y" : 2,
"drilldown" : "Mohammad S Anwar",
+ "y" : 2,
"name" : "Mohammad S Anwar"
},
{
- "y" : 2,
"drilldown" : "Niels van Dijke",
+ "y" : 2,
"name" : "Niels van Dijke"
},
{
+ "name" : "Paulo Custodio",
"y" : 2,
- "drilldown" : "Paulo Custodio",
- "name" : "Paulo Custodio"
+ "drilldown" : "Paulo Custodio"
},
{
"name" : "Peter Campbell Smith",
- "drilldown" : "Peter Campbell Smith",
- "y" : 3
+ "y" : 3,
+ "drilldown" : "Peter Campbell Smith"
},
{
- "drilldown" : "Robert DiCicco",
"name" : "Robert DiCicco",
- "y" : 2
+ "y" : 2,
+ "drilldown" : "Robert DiCicco"
},
{
+ "drilldown" : "Robert Ransbottom",
"y" : 2,
- "name" : "Robert Ransbottom",
- "drilldown" : "Robert Ransbottom"
+ "name" : "Robert Ransbottom"
},
{
- "drilldown" : "Roger Bell_West",
"name" : "Roger Bell_West",
- "y" : 5
+ "y" : 5,
+ "drilldown" : "Roger Bell_West"
},
{
+ "name" : "Solathian",
"y" : 2,
- "drilldown" : "Solathian",
- "name" : "Solathian"
+ "drilldown" : "Solathian"
},
{
"name" : "Stephen G. Lynn",
@@ -200,34 +194,33 @@
"name" : "Ulrich Rieke"
},
{
- "y" : 3,
"name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
+ "drilldown" : "W. Luis Mochan",
+ "y" : 3
}
],
- "name" : "The Weekly Challenge - 184",
- "colorByPoint" : 1
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 184"
}
],
+ "chart" : {
+ "type" : "column"
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
+ "title" : {
+ "text" : "The Weekly Challenge - 184"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 38] Last updated at 2023-05-02 22:12:39 GMT"
},
"drilldown" : {
"series" : [
{
"name" : "Arne Sommer",
- "id" : "Arne Sommer",
"data" : [
[
"Perl",
@@ -241,9 +234,11 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Arne Sommer"
},
{
+ "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -254,38 +249,37 @@
2
]
],
- "id" : "Athanasius",
"name" : "Athanasius"
},
{
+ "id" : "Bob Lied",
"data" : [
[
"Perl",
2
]
],
- "name" : "Bob Lied",
- "id" : "Bob Lied"
+ "name" : "Bob Lied"
},
{
+ "name" : "Branislav Zahradnik",
+ "id" : "Branislav Zahradnik",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Branislav Zahradnik",
- "id" : "Branislav Zahradnik"
+ ]
},
{
- "id" : "Bruce Gray",
"name" : "Bruce Gray",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Bruce Gray"
},
{
"name" : "Cheok-Yin Fung",
@@ -298,8 +292,6 @@
]
},
{
- "id" : "Colin Crain",
- "name" : "Colin Crain",
"data" : [
[
"Perl",
@@ -309,16 +301,18 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Colin Crain",
+ "name" : "Colin Crain"
},
{
+ "name" : "Dario Mazzeo",
"data" : [
[
"Perl",
2
]
],
- "name" : "Dario Mazzeo",
"id" : "Dario Mazzeo"
},
{
@@ -338,8 +332,8 @@
2
]
],
- "name" : "Duncan C. White",
- "id" : "Duncan C. White"
+ "id" : "Duncan C. White",
+ "name" : "Duncan C. White"
},
{
"name" : "E. Choroba",
@@ -366,8 +360,8 @@
2
]
],
- "name" : "Flavio Poletti",
- "id" : "Flavio Poletti"
+ "id" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
},
{
"name" : "Humberto Massa",
@@ -398,16 +392,18 @@
]
},
{
+ "name" : "James Raspass",
+ "id" : "James Raspass",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "James Raspass",
- "id" : "James Raspass"
+ ]
},
{
+ "name" : "James Smith",
+ "id" : "James Smith",
"data" : [
[
"Perl",
@@ -417,52 +413,59 @@
"Blog",
1
]
- ],
- "name" : "James Smith",
- "id" : "James Smith"
+ ]
},
{
+ "id" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
],
- "id" : "Jan Krnavek",
"name" : "Jan Krnavek"
},
{
- "id" : "Julien Fiegehenn",
+ "id" : "Jorg Sommrey",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "name" : "Jorg Sommrey"
+ },
+ {
"name" : "Julien Fiegehenn",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Julien Fiegehenn"
},
{
"id" : "Kjetil Skotheim",
- "name" : "Kjetil Skotheim",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Kjetil Skotheim"
},
{
- "id" : "Kueppo Wesley",
- "name" : "Kueppo Wesley",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Kueppo Wesley",
+ "name" : "Kueppo Wesley"
},
{
- "id" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld",
"data" : [
[
@@ -477,21 +480,20 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Laurent Rosenfeld"
},
{
- "id" : "Lubos Kolouch",
"name" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Lubos Kolouch"
},
{
- "name" : "Luca Ferrari",
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -501,56 +503,58 @@
"Blog",
6
]
- ]
+ ],
+ "id" : "Luca Ferrari",
+ "name" : "Luca Ferrari"
},
{
+ "name" : "Mark Anderson",
+ "id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Mark Anderson",
- "name" : "Mark Anderson"
+ ]
},
{
- "id" : "Marton Polgar",
"name" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Marton Polgar"
},
{
+ "name" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
],
- "name" : "Matthew Neleigh",
"id" : "Matthew Neleigh"
},
{
"name" : "Mohammad S Anwar",
- "id" : "Mohammad S Anwar",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Mohammad S Anwar"
},
{
+ "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
],
- "id" : "Niels van Dijke",
"name" : "Niels van Dijke"
},
{
@@ -564,8 +568,6 @@
"name" : "Paulo Custodio"
},
{
- "name" : "Peter Campbell Smith",
- "id" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -575,7 +577,9 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith"
},
{
"data" : [
@@ -588,21 +592,20 @@
1
]
],
- "name" : "Robert DiCicco",
- "id" : "Robert DiCicco"
+ "id" : "Robert DiCicco",
+ "name" : "Robert DiCicco"
},
{
+ "name" : "Robert Ransbottom",
+ "id" : "Robert Ransbottom",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Robert Ransbottom",
- "name" : "Robert Ransbottom"
+ ]
},
{
- "id" : "Roger Bell_West",
"name" : "Roger Bell_West",
"data" : [
[
@@ -617,7 +620,8 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Roger Bell_West"
},
{
"data" : [
@@ -648,6 +652,8 @@
"name" : "Stephen G. Lynn"
},
{
+ "name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -657,9 +663,7 @@
"Raku",
2
]
- ],
- "id" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
+ ]
},
{
"data" : [
@@ -672,12 +676,23 @@
1
]
],
- "name" : "W. Luis Mochan",
- "id" : "W. Luis Mochan"
+ "id" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
}
]
},
- "title" : {
- "text" : "The Weekly Challenge - 184"
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "tooltip" : {
+ "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/>",
+ "followPointer" : 1
}
}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 1739b90695..9add4ded32 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,93 +1,84 @@
{
"series" : [
{
- "colorByPoint" : 1,
"name" : "The Weekly Challenge - 215",
"data" : [
{
- "drilldown" : "Carlos Oliveira",
"y" : 2,
- "name" : "Carlos Oliveira"
+ "name" : "Carlos Oliveira",
+ "drilldown" : "Carlos Oliveira"
},
{
- "drilldown" : "David Ferrone",
"y" : 2,
+ "drilldown" : "David Ferrone",
"name" : "David Ferrone"
},
{
- "y" : 2,
"drilldown" : "E. Choroba",
- "name" : "E. Choroba"
+ "name" : "E. Choroba",
+ "y" : 2
},
{
- "drilldown" : "James Smith",
"y" : 3,
- "name" : "James Smith"
+ "name" : "James Smith",
+ "drilldown" : "James Smith"
},
{
- "y" : 2,
"drilldown" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
+ "name" : "Lubos Kolouch",
+ "y" : 2
},
{
- "name" : "Mark Anderson",
"y" : 2,
+ "name" : "Mark Anderson",
"drilldown" : "Mark Anderson"
},
{
- "name" : "Niels van Dijke",
+ "y" : 2,
"drilldown" : "Niels van Dijke",
- "y" : 2
+ "name" : "Niels van Dijke"
},
{
- "drilldown" : "Peter Campbell Smith",
"y" : 3,
+ "drilldown" : "Peter Campbell Smith",
"name" : "Peter Campbell Smith"
},
{
- "name" : "Robert DiCicco",
"drilldown" : "Robert DiCicco",
- "y" : 2
+ "name" : "Robert DiCicco",
+ "y" : 4
},
{
- "drilldown" : "Stephen G. Lynn",
"y" : 2,
- "name" : "Stephen G. Lynn"
+ "name" : "Stephen G. Lynn",
+ "drilldown" : "Stephen G. Lynn"
},
{
"y" : 4,
- "drilldown" : "Thomas Kohler",
- "name" : "Thomas Kohler"
+ "name" : "Thomas Kohler",
+ "drilldown" : "Thomas Kohler"
},
{
- "name" : "Ulrich Rieke",
"y" : 4,
+ "name" : "Ulrich Rieke",
"drilldown" : "Ulrich Rieke"
},
{
- "name" : "W. Luis Mochan",
"drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan",
"y" : 3
}
- ]
+ ],
+ "colorByPoint" : 1
}
],
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
+ "title" : {
+ "text" : "The Weekly Challenge - 215"
},
"tooltip" : {
- "followPointer" : 1,
+ "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/>",
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
- },
- "xAxis" : {
- "type" : "category"
+ "followPointer" : 1
},
"drilldown" : {
"series" : [
@@ -102,28 +93,27 @@
"name" : "Carlos Oliveira"
},
{
- "id" : "David Ferrone",
"data" : [
[
"Perl",
2
]
],
- "name" : "David Ferrone"
+ "name" : "David Ferrone",
+ "id" : "David Ferrone"
},
{
- "name" : "E. Choroba",
+ "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
- "id" : "E. Choroba"
+ "name" : "E. Choroba"
},
{
"id" : "James Smith",
- "name" : "James Smith",
"data" : [
[
"Perl",
@@ -133,7 +123,8 @@
"Blog",
1
]
- ]
+ ],