diff options
| -rw-r--r-- | challenge-033/fabrizio-poggi/perl5/ch-1.pl | 77 | ||||
| -rw-r--r-- | challenge-033/fabrizio-poggi/perl5/ch-2.pl | 25 | ||||
| -rw-r--r-- | stats/pwc-current.json | 563 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 54 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 244 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 560 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 26 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 82 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 42 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 26 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 46 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 344 |
12 files changed, 1103 insertions, 986 deletions
diff --git a/challenge-033/fabrizio-poggi/perl5/ch-1.pl b/challenge-033/fabrizio-poggi/perl5/ch-1.pl new file mode 100644 index 0000000000..2435bde099 --- /dev/null +++ b/challenge-033/fabrizio-poggi/perl5/ch-1.pl @@ -0,0 +1,77 @@ +use strict;
+use warnings;
+
+my ($tota, $totb, $totc, $totd, $tote, $totf, $totg, $toth, $toti, $totj, $totk, $totl, $totm, $totn, $toto, $totp, $totq, $totr, $tots, $tott, $totu, $totv, $totx, $toty, $totw, $totz) = 0;
+
+my ($a, $b, $c, $d, $e, $f, $g, $h, $i, $j, $k, $l, $m, $n, $o, $p, $q, $r, $s, $t, $u, $v, $x, $y, $w, $z) = 0;
+
+my $file;
+my $fh;
+my @files;
+
+if (@ARGV) {
+(@files) = @ARGV;
+} else {
+die "Use: perl alphabet.pl file1 [file2] [..] $!\n";
+}
+
+for $file (@files){
+ open ($fh, "<", $file)
+ or die "Cannot open < text1: $!";
+ while (my $row = <$fh>) {
+ chomp $row;
+ $tota += $a = ($row =~ tr/a|A//);
+ $totb += $b = ($row =~ tr/b|B//);
+ $totc += $c = ($row =~ tr/c|C//);
+ $totd += $d = ($row =~ tr/d|D//);
+ $tote += $e = ($row =~ tr/e|E//);
+ $totf += $f = ($row =~ tr/f|F//);
+ $totg += $g = ($row =~ tr/g|G//);
+ $toth += $h = ($row =~ tr/h|H//);
+ $toti += $i = ($row =~ tr/i|I//);
+ $totj += $j = ($row =~ tr/j|J//);
+ $totk += $k = ($row =~ tr/k|K//);
+ $totl += $l = ($row =~ tr/l|L//);
+ $totm += $m = ($row =~ tr/m|M//);
+ $totn += $n = ($row =~ tr/n|N//);
+ $toto += $o = ($row =~ tr/o|O//);
+ $totp += $p = ($row =~ tr/p|P//);
+ $totq += $q = ($row =~ tr/q|Q//);
+ $totr += $r = ($row =~ tr/r|R//);
+ $tots += $s = ($row =~ tr/s|S//);
+ $tott += $t = ($row =~ tr/t|T//);
+ $totu += $u = ($row =~ tr/u|U//);
+ $totv += $v = ($row =~ tr/v|V//);
+ $totw += $w = ($row =~ tr/w|W//);
+ $totx += $x = ($row =~ tr/x|X//);
+ $toty += $y = ($row =~ tr/y|Y//);
+ $totz += $z = ($row =~ tr/z|Z//);
+ }
+}
+print "a: $tota \n";
+print "b: $totb \n";
+print "c: $totc \n";
+print "d: $totd \n";
+print "e: $tote \n";
+print "f: $totf \n";
+print "g: $totg \n";
+print "h: $toth \n";
+print "i: $toti \n";
+print "j: $totj \n";
+print "k: $totk \n";
+print "l: $totl \n";
+print "m: $totm \n";
+print "n: $totn \n";
+print "o: $toto \n";
+print "p: $totp \n";
+print "q: $totq \n";
+print "r: $totr \n";
+print "s: $tots \n";
+print "t: $tott \n";
+print "u: $totu \n";
+print "v: $totv \n";
+print "w: $totw \n";
+print "x: $totx \n";
+print "y: $toty \n";
+print "z: $totz \n";
+close $fh;
diff --git a/challenge-033/fabrizio-poggi/perl5/ch-2.pl b/challenge-033/fabrizio-poggi/perl5/ch-2.pl new file mode 100644 index 0000000000..8e81dba7cc --- /dev/null +++ b/challenge-033/fabrizio-poggi/perl5/ch-2.pl @@ -0,0 +1,25 @@ +#!/usr/bin/perl
+use strict;
+use warnings;
+
+my $i=0;
+my $j=0;
+my $sep="|";
+my $res=0;
+my $spa=" ";
+
+print " x | 1 2 3 4 5 6 7 8 9 10 11\n";
+print "------------------------------------------------\n";
+
+for ($i=1; $i<12;$i++){
+ printf ("%2d %s",$i,$sep);
+ for ($j=1; $j<12; $j++) {
+ $res=$i*$j;
+ if($j<=$i-1){
+ print $spa;
+ }else{
+ printf (" %3d",$res);
+ }
+ }
+print "\n";
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 1dd5206a10..d9c13a5021 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,28 +1,209 @@ { "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/>", - "followPointer" : 1 + "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 + "series" : [ + { + "name" : "Perl Weekly Challenge - 033", + "colorByPoint" : 1, + "data" : [ + { + "name" : "Adam Russell", + "y" : 5, + "drilldown" : "Adam Russell" + }, + { + "name" : "Andrezgz", + "y" : 2, + "drilldown" : "Andrezgz" + }, + { + "name" : "Arne Sommer", + "y" : 3, + "drilldown" : "Arne Sommer" + }, + { + "name" : "Athanasius", + "drilldown" : "Athanasius", + "y" : 4 + }, + { + "drilldown" : "Bruce Van Allen", + "y" : 2, + "name" : "Bruce Van Allen" + }, + { + "y" : 3, + "drilldown" : "Burkhard Nickels", + "name" : "Burkhard Nickels" + }, + { + "y" : 2, + "drilldown" : "Colin Crain", + "name" : "Colin Crain" + }, + { + "drilldown" : "Daniel Mita", + "y" : 2, + "name" : "Daniel Mita" + }, + { + "name" : "Darren Bottin", + "y" : 2, + "drilldown" : "Darren Bottin" + }, + { + "drilldown" : "Dave Cross", + "y" : 2, + "name" : "Dave Cross" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 2, + "name" : "Dave Jacoby" + }, + { + "drilldown" : "Dr James A. Smith", + "y" : 2, + "name" : "Dr James A. Smith" + }, + { + "drilldown" : "Duane Powell", + "y" : 2, + "name" : "Duane Powell" + }, + { + "name" : "Duncan C. White", + "y" : 2, + "drilldown" : "Duncan C. White" + }, + { + "y" : 3, + "drilldown" : "E. Choroba", + "name" : "E. Choroba" + }, + { + "name" : "Fabrizio Poggi", + "y" : 2, + "drilldown" : "Fabrizio Poggi" + }, + { + "name" : "Jaldhar H. Vyas", + "drilldown" : "Jaldhar H. Vyas", + "y" : 5 + }, + { + "name" : "Javier Luque", + "y" : 5, + "drilldown" : "Javier Luque" + }, + { + "name" : "Joelle Maslak", + "drilldown" : "Joelle Maslak", + "y" : 4 + }, + { + "drilldown" : "Kevin Colyer", + "y" : 2, + "name" : "Kevin Colyer" + }, + { + "drilldown" : "Lars Thegler", + "y" : 2, + "name" : "Lars Thegler" + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 5, + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Lubos Kolouch", + "y" : 2, + "drilldown" : "Lubos Kolouch" + }, + { + "name" : "Mark Anderson", + "drilldown" : "Mark Anderson", + "y" : 1 + }, + { + "name" : "Markus Holzer", + "drilldown" : "Markus Holzer", + "y" : 2 + }, + { + "drilldown" : "Nazareno Delucca", + "y" : 2, + "name" : "Nazareno Delucca" + }, + { + "name" : "Noud", + "y" : 2, + "drilldown" : "Noud" + }, + { + "y" : 2, + "drilldown" : "Petr Roubicek", + "name" : "Petr Roubicek" + }, + { + "name" : "Prajith P", + "y" : 2, + "drilldown" : "Prajith P" + }, + { + "drilldown" : "Rage311", + "y" : 2, + "name" : "Rage311" + }, + { + "drilldown" : "Richard Nuttall", + "y" : 2, + "name" : "Richard Nuttall" + }, + { + "y" : 5, + "drilldown" : "Roger Bell West", + "name" : "Roger Bell West" + }, + { + "y" : 4, + "drilldown" : "Ruben Westerberg", + "name" : "Ruben Westerberg" + }, + { + "name" : "Ryan Thompson", + "y" : 4, + "drilldown" : "Ryan Thompson" + }, + { + "name" : "Simon Proctor", + "y" : 2, + "drilldown" : "Simon Proctor" + }, + { + "name" : "Steven Wilson", + "drilldown" : "Steven Wilson", + "y" : 2 + }, + { + "y" : 4, + "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke" + }, + { + "drilldown" : "Yet Ebreo", + "y" : 2, + "name" : "Yet Ebreo" + } + ] } - }, - "subtitle" : { - "text" : "[Champions: 37] Last updated at 2019-11-10 22:19:14 GMT" + ], + "title" : { + "text" : "Perl Weekly Challenge - 033" }, "drilldown" : { "series" : [ @@ -41,8 +222,8 @@ 1 ] ], - "id" : "Adam Russell", - "name" : "Adam Russell" + "name" : "Adam Russell", + "id" : "Adam Russell" }, { "name" : "Andrezgz", @@ -65,10 +246,11 @@ 1 ] ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + "name" : "Arne Sommer", + "id" : "Arne Sommer" }, { + "id" : "Athanasius", "name" : "Athanasius", "data" : [ [ @@ -79,18 +261,17 @@ "Perl 6", 2 ] - ], - "id" : "Athanasius" + ] }, { + "id" : "Bruce Van Allen", "name" : "Bruce Van Allen", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Bruce Van Allen" + ] }, { "name" : "Burkhard Nickels", @@ -107,18 +288,18 @@ "id" : "Burkhard Nickels" }, { - "name" : "Colin Crain", + "id" : "Colin Crain", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Colin Crain" + "name" : "Colin Crain" }, { - "name" : "Daniel Mita", "id" : "Daniel Mita", + "name" : "Daniel Mita", "data" : [ [ "Perl 6", @@ -133,48 +314,48 @@ 2 ] ], - "id" : "Darren Bottin", - "name" : "Darren Bottin" + "name" : "Darren Bottin", + "id" : "Darren Bottin" }, { - "id" : "Dave Cross", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Dave Cross" + "name" : "Dave Cross", + "id" : "Dave Cross" }, { - "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Dave Jacoby", + "id" : "Dave Jacoby" }, { - "id" : "Dr James A. Smith", + "name" : "Dr James A. Smith", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Dr James A. Smith" + "id" : "Dr James A. Smith" }, { - "name" : "Duane Powell", - "id" : "Duane Powell", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Duane Powell", + "id" : "Duane Powell" }, { "name" : "Duncan C. White", @@ -187,7 +368,7 @@ "id" : "Duncan C. White" }, { - "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl 5", @@ -198,10 +379,21 @@ 1 ] ], - "name" : "E. Choroba" + "id" : "E. Choroba" + }, + { + "id" : "Fabrizio Poggi", + "data" : [ + [ + "Perl 5", + 2 + ] + ], + "name" : "Fabrizio Poggi" }, { "id" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas", "data" : [ [ "Perl 5", @@ -215,10 +407,10 @@ "Blog", 1 ] - ], - "name" : "Jaldhar H. Vyas" + ] }, { + "id" : "Javier Luque", "data" : [ [ "Perl 5", @@ -233,7 +425,6 @@ 1 ] ], - "id" : "Javier Luque", "name" : "Javier Luque" }, { @@ -251,27 +442,26 @@ "id" : "Joelle Maslak" }, { - "id" : "Kevin Colyer", "data" : [ [ "Perl 6", 2 ] ], - "name" : "Kevin Colyer" + "name" : "Kevin Colyer", + "id" : "Kevin Colyer" }, { "name" : "Lars Thegler", - "id" : "Lars Thegler", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Lars Thegler" }, { - "name" : "Laurent Rosenfeld", "id" : "Laurent Rosenfeld", "data" : [ [ @@ -286,7 +476,8 @@ "Blog", 1 ] - ] + ], + "name" : "Laurent Rosenfeld" }, { "name" : "Lubos Kolouch", @@ -299,8 +490,8 @@ "id" : "Lubos Kolouch" }, { - "name" : "Mark Anderson", "id" : "Mark Anderson", + "name" : "Mark Anderson", "data" : [ [ "Perl 5", @@ -309,34 +500,34 @@ ] }, { + "id" : "Markus Holzer", "name" : "Markus Holzer", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Markus Holzer" + ] }, { "name" : "Nazareno Delucca", - "id" : "Nazareno Delucca", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Nazareno Delucca" }, { - "id" : "Noud", "data" : [ [ "Perl 6", 2 ] ], - "name" : "Noud" + "name" : "Noud", + "id" : "Noud" }, { "data" : [ @@ -345,8 +536,8 @@ 2 ] ], - "id" : "Petr Roubicek", - "name" : "Petr Roubicek" + "name" : "Petr Roubicek", + "id" : "Petr Roubicek" }, { "id" : "Prajith P", @@ -359,8 +550,8 @@ "name" : "Prajith P" }, { - "name" : "Rage311", "id" : "Rage311", + "name" : "Rage311", "data" : [ [ "Perl 5", @@ -369,14 +560,14 @@ ] }, { + "id" : "Richard Nuttall", + "name" : "Richard Nuttall", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Richard Nuttall", - "name" : "Richard Nuttall" + ] }, { "id" : "Roger Bell West", @@ -397,7 +588,7 @@ "name" : "Roger Bell West" }, { - "id" : "Ruben Westerberg", + "name" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -408,9 +599,10 @@ 2 ] ], - "name" : "Ruben Westerberg" + "id" : "Ruben Westerberg" }, { + "name" : "Ryan Thompson", "data" : [ [ "Perl 5", @@ -421,31 +613,31 @@ 2 ] ], - "id" : "Ryan Thompson", - "name" : "Ryan Thompson" + "id" : "Ryan Thompson" }, { + "id" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] ], - "id" : "Simon Proctor", "name" : "Simon Proctor" }, { - "name" : "Steven Wilson", + "id" : "Steven Wilson", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Steven Wilson" + "name" : "Steven Wilson" }, { "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke", "data" : [ [ "Perl 5", @@ -455,221 +647,44 @@ "Perl 6", 2 ] - ], - "name" : "Ulrich Rieke" + ] }, { "id" : "Yet Ebreo", + "name" : "Yet Ebreo", "data" : [ [ "Perl 5", 2 ] - ], - "name" : "Yet Ebreo" + ] } ] }, - "series" : [ - { - "colorByPoint" : 1, - "name" : "Perl Weekly Challenge - 033", - "data" : [ - { - "drilldown" : "Adam Russell", - "name" : "Adam Russell", - "y" : 5 - }, - { - "name" : "Andrezgz", - "drilldown" : "Andrezgz", - "y" : 2 - }, - { - "y" : 3, - "drilldown" : "Arne Sommer", - "name" : "Arne Sommer" - }, - { - "name" : "Athanasius", - "drilldown" : "Athanasius", - "y" : 4 - }, - { - "name" : "Bruce Van Allen", - "drilldown" : "Bruce Van Allen", - "y" : 2 - }, - { - "y" : 3, - "drilldown" : "Burkhard Nickels", - "name" : "Burkhard Nickels" - }, - { - "y" : 2, - "name" : "Colin Crain", - "drilldown" : "Colin Crain" - }, - { - "name" : "Daniel Mita", - "drilldown" : "Daniel Mita", - "y" : 2 - }, - { - "y" : 2, - "name" : "Darren Bottin", - "drilldown" : "Darren Bottin" - }, - { - "name" : "Dave Cross", - "drilldown" : "Dave Cross", - "y" : 2 - }, - { - "name" : "Dave Jacoby", - "drilldown" : "Dave Jacoby", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "Dr James A. Smith", - "name" : "Dr James A. Smith" - }, - { - "y" : 2, - "name" : "Duane Powell", - "drilldown" : "Duane Powell" - }, - { - "name" : "Duncan C. White", - "drilldown" : "Duncan C. White", - "y" : 2 - }, - { - "drilldown" : "E. Choroba", - "name" : "E. Choroba", - "y" : 3 - }, - { - "drilldown" : "Jaldhar H. Vyas", - "name" : "Jaldhar H. Vyas", - "y" : 5 - }, - { - "name" : "Javier Luque", - "drilldown" : "Javier Luque", - "y" : 5 - }, - { - "drilldown" : "Joelle Maslak", - "name" : "Joelle Maslak", - "y" : 4 - }, - { - "drilldown" : "Kevin Colyer", - "name" : "Kevin Colyer", - "y" : 2 - }, - { - "y" : 2, - "name" : "Lars Thegler", - "drilldown" : "Lars Thegler" - }, - { - "y" : 5, - "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld" - }, - { - "y" : 2, - "drilldown" : "Lubos Kolouch", - "name" : "Lubos Kolouch" - }, - { - "y" : 1, - "drilldown" : "Mark Anderson", - "name" : "Mark Anderson" - }, - { - "name" : "Markus Holzer", - "drilldown" : "Markus Holzer", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "Nazareno Delucca", - "name" : "Nazareno Delucca" - }, - { - "drilldown" : "Noud", - "name" : "Noud", - "y" : 2 - }, - { - "y" : 2, - "name" : "Petr Roubicek", - "drilldown" : "Petr Roubicek" - }, - { - "y" : 2, - "drilldown" : "Prajith P", - "name" : "Prajith P" - }, - { - "drilldown" : "Rage311", - "name" : "Rage311", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "Richard Nuttall", - "name" : "Richard Nuttall" - }, - { - "y" : 5, - "name" : "Roger Bell West", - "drilldown" : "Roger Bell West" - }, - { - "y" : 4, - "drilldown" : "Ruben Westerberg", - "name" : "Ruben Westerberg" - }, - { - "y" : 4, - "drilldown" : "Ryan Thompson", - "name" : "Ryan Thompson" - }, - { - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor", - "y" : 2 - }, - { - "name" : "Steven Wilson", - "drilldown" : "Steven Wilson", - "y" : 2 - }, - { - "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke", - "y" : 4 - }, - { - "y" : 2, - "name" : "Yet Ebreo", - "drilldown" : "Yet Ebreo" - } - ] + "yAxis" : { + "title" : { + "text" : "Total Solutions" } - ], - "title" : { - "text" : "Perl Weekly Challenge - 033" }, - "xAxis" : { - "type" : "category" + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "[Champions: 38] Last updated at 2019-11-10 22:34:27 GMT" }, "legend" : { "enabled" : 0 + }, + "xAxis" : { + "type" : "category" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 3507237214..52427460a3 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,23 +1,35 @@ { + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + }, + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + }, "legend" : { "enabled" : "false" }, - "tooltip" : { - "pointFormat" : "<b>{point.y:.0f}</b>" - }, "series" : [ { "name" : "Contributions", "dataLabels" : { - "color" : "#FFFFFF", "format" : "{point.y:.0f}", - "enabled" : "true", - "rotation" : -90, "y" : 10, + "rotation" : -90, + "enabled" : "true", "align" : "right", + "color" : "#FFFFFF", "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" } }, "data" : [ @@ -27,7 +39,7 @@ ], [ "Perl 5", - 1421 + 1423 ], [ "Perl 6", @@ -36,28 +48,16 @@ ] } ], - "chart" : { - "type" : "column" - }, - "xAxis" : { - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - }, - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" + "subtitle" : { + "text" : "Last updated at 2019-11-10 22:34:55 GMT" }, "yAxis" : { + "min" : 0, "title" : { "text" : null - }, - "min" : 0 + } }, - "subtitle" : { - "text" : "Last updated at 2019-11-10 22:20:36 GMT" + "tooltip" : { + "pointFormat" : "<b>{point.y:.0f}</b>" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 176084907f..e3f59f1864 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -4,34 +4,16 @@ "headerFormat" : "<span style=\"font-size:11px\"></span>", "followPointer" : "true" }, - "legend" : { - "enabled" : "false" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "xAxis" : { - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-11-10 22:20:36 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-11-10 22:34:55 GMT" }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "chart" : { - "type" : "column" + "legend" : { + "enabled" : "false" }, "series" : [ { @@ -39,9 +21,9 @@ "colorByPoint" : "true", "data" : [ { + "name" : "#001", "y" : 132, - "drilldown" : "001", - "name" : "#001" + "drilldown" : "001" }, { "drilldown" : "002", @@ -49,14 +31,14 @@ "name" : "#002" }, { - "name" : "#003", "y" : 67, - "drilldown" : "003" + "drilldown" : "003", + "name" : "#003" }, { - "name" : "#004", "drilldown" : "004", - "y" : 87 + "y" : 87, + "name" : "#004" }, { "drilldown" : "005", @@ -64,64 +46,64 @@ "name" : "#005" }, { - "name" : "#006", |
