aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-096/colin-crain/blog.txt1
-rw-r--r--challenge-096/colin-crain/perl/ch-1.pl62
-rw-r--r--challenge-096/colin-crain/perl/ch-2.pl69
-rw-r--r--challenge-096/colin-crain/raku/ch-1.raku36
-rw-r--r--challenge-096/colin-crain/raku/ch-2.raku53
-rw-r--r--stats/pwc-current.json549
-rw-r--r--stats/pwc-language-breakdown-summary.json52
-rw-r--r--stats/pwc-language-breakdown.json720
-rw-r--r--stats/pwc-leaders.json758
-rw-r--r--stats/pwc-summary-1-30.json36
-rw-r--r--stats/pwc-summary-121-150.json108
-rw-r--r--stats/pwc-summary-151-180.json100
-rw-r--r--stats/pwc-summary-181-210.json36
-rw-r--r--stats/pwc-summary-211-240.json36
-rw-r--r--stats/pwc-summary-31-60.json44
-rw-r--r--stats/pwc-summary-61-90.json96
-rw-r--r--stats/pwc-summary-91-120.json108
-rw-r--r--stats/pwc-summary.json50
18 files changed, 1579 insertions, 1335 deletions
diff --git a/challenge-096/colin-crain/blog.txt b/challenge-096/colin-crain/blog.txt
new file mode 100644
index 0000000000..8dcaf34c58
--- /dev/null
+++ b/challenge-096/colin-crain/blog.txt
@@ -0,0 +1 @@
+https://colincrain.com/2021/01/25/the-wagner-fischer-price-backwards/
diff --git a/challenge-096/colin-crain/perl/ch-1.pl b/challenge-096/colin-crain/perl/ch-1.pl
new file mode 100644
index 0000000000..e7948fb71f
--- /dev/null
+++ b/challenge-096/colin-crain/perl/ch-1.pl
@@ -0,0 +1,62 @@
+#! /opt/local/bin/perl
+#
+# backwards_sentence.pl
+#
+# TASK #1 › Reverse Words
+# Submitted by: Mohammad S Anwar
+#
+# You are given a string $S.
+#
+# Write a script to reverse the order of words in the given string.
+# The string may contain leading/trailing spaces. The string may have
+# more than one space between words in the string. Print the result
+# without leading/trailing spaces and there should be only one space
+# between words.
+#
+# Example 1:
+# Input: $S = "The Weekly Challenge"
+# Output: "Challenge Weekly The"
+#
+# Example 2:
+# Input: $S = " Perl and Raku are part of the same family "
+# Output: "family same the of part are Raku and Perl"
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use feature ":5.26";
+
+sub rev_sentence {
+
+ return join ' ', reverse $_[0] =~ m/(\S+)/g;
+
+}
+
+
+say rev_sentence(" Perl and Raku are part of the same family ");
+
+
+
+
+
+## ## ## ## ## tests:
+
+__END__
+
+use Test::More;
+
+my ($str,$out);
+
+$str = "The Weekly Challenge";
+$out = "Challenge Weekly The";
+is ( rev_sentence($str), $out, "ex 1");
+
+$str = " Perl and Raku are part of the same family ";
+$out = "family same the of part are Raku and Perl";
+is ( rev_sentence($str), $out, "ex 2");
+
+done_testing();
diff --git a/challenge-096/colin-crain/perl/ch-2.pl b/challenge-096/colin-crain/perl/ch-2.pl
new file mode 100644
index 0000000000..2500ad84fb
--- /dev/null
+++ b/challenge-096/colin-crain/perl/ch-2.pl
@@ -0,0 +1,69 @@
+#! /opt/local/bin/perl
+#
+# Wagner–Fischer-Price.pl
+#
+# TASK #2 › Edit Distance
+# Submitted by: Mohammad S Anwar
+# You are given two strings $S1 and $S2.
+#
+# Write a script to find out the minimum operations required to convert
+# $S1 into $S2. The operations can be insert, remove or replace a
+# character. Please check out Wikipedia page for more information.
+# https://en.wikipedia.org/wiki/Edit_distance
+#
+# Example 1:
+# Input: $S1 = "kitten"; $S2 = "sitting"
+# Output: 3
+#
+# Operation 1: replace 'k' with 's'
+# Operation 2: replace 'e' with 'i'
+# Operation 3: insert 'g' at the end
+#
+# Example 2:
+# Input: $S1 = "sunday"; $S2 = "monday"
+# Output: 2
+#
+# Operation 1: replace 's' with 'm'
+# Operation 2: replace 'u' with 'o'
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+use warnings;
+use strict;
+use feature ":5.26";
+use List::Util qw( min );
+
+sub levenshtein {
+ my ($s, $t) = @_;
+ my ($m, $n) = map { length($_) } ($s, $t);
+ my @mat;
+
+ $mat[$_][0] = $_ for ( 0..$m);
+ $mat[0] = [ 0..$n ];
+
+ for my $j ( 1..$n ) {
+ for my $i ( 1..$m ) {
+ my $cost = (substr($s,$i-1,1) eq substr($t,$j-1,1) ? 0 : 1);
+ $mat[$i][$j] = min( $mat[$i-1][$j] + 1,
+ $mat[$i][$j-1] + 1,
+ $mat[$i-1][$j-1] + $cost );
+ }
+ }
+
+ return $mat[$m][$n];
+}
+
+
+use Test::More;
+
+is (levenshtein('kitten','sitting'), 3, 'ex 1');
+is (levenshtein('sunday','monday'), 2, 'ex 2');
+is (levenshtein('Sunday','Saturday'), 3, 'wiki');
+
+
+done_testing();
+
+
diff --git a/challenge-096/colin-crain/raku/ch-1.raku b/challenge-096/colin-crain/raku/ch-1.raku
new file mode 100644
index 0000000000..8047093890
--- /dev/null
+++ b/challenge-096/colin-crain/raku/ch-1.raku
@@ -0,0 +1,36 @@
+#!/usr/bin/env perl6
+#
+#
+# backwards_sentence.raku
+#
+# TASK #1 › Reverse Words
+# Submitted by: Mohammad S Anwar
+#
+# You are given a string $S.
+#
+# Write a script to reverse the order of words in the given string.
+# The string may contain leading/trailing spaces. The string may have
+# more than one space between words in the string. Print the result
+# without leading/trailing spaces and there should be only one space
+# between words.
+#
+# Example 1:
+# Input: $S = "The Weekly Challenge"
+# Output: "Challenge Weekly The"
+#
+# Example 2:
+# Input: $S = " Perl and Raku are part of the same family "
+# Output: "family same the of part are Raku and Perl"
+
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+unit sub MAIN (Str $str = " The Weekly Challenge ") ;
+
+($str ~~ m:g/ (\S+) /).reverse
+ .join(' ')
+ .say;
+
diff --git a/challenge-096/colin-crain/raku/ch-2.raku b/challenge-096/colin-crain/raku/ch-2.raku
new file mode 100644
index 0000000000..e157e50a46
--- /dev/null
+++ b/challenge-096/colin-crain/raku/ch-2.raku
@@ -0,0 +1,53 @@
+#!/usr/bin/env perl6
+#
+#
+# Wagner–Fischer-Price.pl
+#
+# TASK #2 › Edit Distance
+# Submitted by: Mohammad S Anwar
+# You are given two strings $S1 and $S2.
+#
+# Write a script to find out the minimum operations required to convert
+# $S1 into $S2. The operations can be insert, remove or replace a
+# character. Please check out Wikipedia page for more information.
+# https://en.wikipedia.org/wiki/Edit_distance
+#
+# Example 1:
+# Input: $S1 = "kitten"; $S2 = "sitting"
+# Output: 3
+#
+# Operation 1: replace 'k' with 's'
+# Operation 2: replace 'e' with 'i'
+# Operation 3: insert 'g' at the end
+#
+# Example 2:
+# Input: $S1 = "sunday"; $S2 = "monday"
+# Output: 2
+#
+# Operation 1: replace 's' with 'm'
+# Operation 2: replace 'u' with 'o'
+
+#
+# © 2021 colin crain
+## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
+
+
+
+unit sub MAIN (Str $s = 'Sunday', Str $t = 'Saturday') ;
+
+my ($m, $n) = ($s, $t).map: {.chars};
+my @mat;
+
+@mat[$_][0] = $_ for 0..$m;
+@mat[0] = 0..$n;
+
+for (1..$n) -> $j {
+ for (1..$m) -> $i {
+ @mat[$i][$j] = ( @mat[$i-1][$j] + 1,
+ @mat[$i][$j-1] + 1,
+ @mat[$i-1][$j-1] + ($s.substr($i-1,1) ne $t.substr($j-1,1)).Int ).min;
+ }
+}
+
+say @mat[$m;$n];
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 00cce5b0a4..7de9698cff 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,10 +1,218 @@
{
+ "legend" : {
+ "enabled" : 0
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "series" : [
+ {
+ "name" : "Perl Weekly Challenge - 096",
+ "colorByPoint" : 1,
+ "data" : [
+ {
+ "name" : "Aaron Smith",
+ "y" : 3,
+ "drilldown" : "Aaron Smith"
+ },
+ {
+ "drilldown" : "Abigail",
+ "name" : "Abigail",
+ "y" : 4
+ },
+ {
+ "name" : "Adam Russell",
+ "y" : 3,
+ "drilldown" : "Adam Russell"
+ },
+ {
+ "drilldown" : "Andrew Shitov",
+ "name" : "Andrew Shitov",
+ "y" : 1
+ },
+ {
+ "drilldown" : "Arne Sommer",
+ "name" : "Arne Sommer",
+ "y" : 5
+ },
+ {
+ "drilldown" : "Athanasius",
+ "y" : 4,
+ "name" : "Athanasius"
+ },
+ {
+ "drilldown" : "Ben Davies",
+ "y" : 2,
+ "name" : "Ben Davies"
+ },
+ {
+ "y" : 2,
+ "name" : "Cheok-Yin Fung",
+ "drilldown" : "Cheok-Yin Fung"
+ },
+ {
+ "y" : 5,
+ "name" : "Colin Crain",
+ "drilldown" : "Colin Crain"
+ },
+ {
+ "drilldown" : "Cristina Heredia",
+ "name" : "Cristina Heredia",
+ "y" : 1
+ },
+ {
+ "drilldown" : "Dave Jacoby",
+ "name" : "Dave Jacoby",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Duncan C. White",
+ "name" : "Duncan C. White",
+ "y" : 2
+ },
+ {
+ "drilldown" : "E. Choroba",
+ "y" : 2,
+ "name" : "E. Choroba"
+ },
+ {
+ "y" : 4,
+ "name" : "Flavio Poletti",
+ "drilldown" : "Flavio Poletti"
+ },
+ {
+ "y" : 2,
+ "name" : "Gustavo Chaves",
+ "drilldown" : "Gustavo Chaves"
+ },
+ {
+ "drilldown" : "James Smith",
+ "name" : "James Smith",
+ "y" : 2
+ },
+ {
+ "name" : "Jan Krnavek",
+ "y" : 2,
+ "drilldown" : "Jan Krnavek"
+ },
+ {
+ "y" : 3,
+ "name" : "Joan Mimosinnet",
+ "drilldown" : "Joan Mimosinnet"
+ },
+ {
+ "drilldown" : "Jorg Sommrey",
+ "y" : 2,
+ "name" : "Jorg Sommrey"
+ },
+ {
+ "name" : "Kang-min Liu",
+ "y" : 5,
+ "drilldown" : "Kang-min Liu"
+ },
+ {
+ "drilldown" : "Lance Wicks",
+ "name" : "Lance Wicks",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
+ "y" : 5
+ },
+ {
+ "y" : 2,
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch"
+ },
+ {
+ "name" : "Luca Ferrari",
+ "y" : 4,
+ "drilldown" : "Luca Ferrari"
+ },
+ {
+ "name" : "Mark Anderson",
+ "y" : 2,
+ "drilldown" : "Mark Anderson"
+ },
+ {
+ "drilldown" : "Nuno Vieira",
+ "y" : 2,
+ "name" : "Nuno Vieira"
+ },
+ {
+ "drilldown" : "Paulo Custodio",
+ "y" : 2,
+ "name" : "Paulo Custodio"
+ },
+ {
+ "y" : 2,
+ "name" : "Pete Houston",
+ "drilldown" : "Pete Houston"
+ },
+ {
+ "name" : "Philip Hood",
+ "y" : 2,
+ "drilldown" : "Philip Hood"
+ },
+ {
+ "name" : "Roger Bell_West",
+ "y" : 5,
+ "drilldown" : "Roger Bell_West"
+ },
+ {
+ "y" : 2,
+ "name" : "Simon Proctor",
+ "drilldown" : "Simon Proctor"
+ },
+ {
+ "drilldown" : "Stuart Little",
+ "y" : 4,
+ "name" : "Stuart Little"
+ },
+ {
+ "y" : 4,
+ "name" : "Ulrich Rieke",
+ "drilldown" : "Ulrich Rieke"
+ },
+ {
+ "y" : 3,
+ "name" : "W. Luis Mochan",
+ "drilldown" : "W. Luis Mochan"
+ },
+ {
+ "drilldown" : "Wanderdoc",
+ "y" : 2,
+ "name" : "Wanderdoc"
+ }
+ ]
+ }
+ ],
+ "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
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
+ }
+ },
"title" : {
"text" : "Perl Weekly Challenge - 096"
},
"drilldown" : {
"series" : [
{
+ "name" : "Aaron Smith",
+ "id" : "Aaron Smith",
"data" : [
[
"Raku",
@@ -14,11 +222,11 @@
"Blog",
1
]
- ],
- "id" : "Aaron Smith",
- "name" : "Aaron Smith"
+ ]
},
{
+ "name" : "Abigail",
+ "id" : "Abigail",
"data" : [
[
"Perl",
@@ -28,12 +236,9 @@
"Blog",
2
]
- ],
- "name" : "Abigail",
- "id" : "Abigail"
+ ]
},
{
- "id" : "Adam Russell",
"name" : "Adam Russell",
"data" : [
[
@@ -44,21 +249,21 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Adam Russell"
},
{
- "id" : "Andrew Shitov",
"name" : "Andrew Shitov",
"data" : [
[
"Raku",
1
]
- ]
+ ],
+ "id" : "Andrew Shitov"
},
{
"name" : "Arne Sommer",
- "id" : "Arne Sommer",
"data" : [
[
"Perl",
@@ -72,11 +277,10 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Arne Sommer"
},
{
- "name" : "Athanasius",
- "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -86,39 +290,61 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Athanasius",
+ "name" : "Athanasius"
},
{
- "name" : "Ben Davies",
- "id" : "Ben Davies",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Ben Davies",
+ "name" : "Ben Davies"
},
{
+ "name" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
2
]
],
- "name" : "Cheok-Yin Fung",
"id" : "Cheok-Yin Fung"
},
{
+ "id" : "Colin Crain",
"data" : [
[
"Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
1
]
],
+ "name" : "Colin Crain"
+ },
+ {
"name" : "Cristina Heredia",
+ "data" : [
+ [
+ "Perl",
+ 1
+ ]
+ ],
"id" : "Cristina Heredia"
},
{
+ "name" : "Dave Jacoby",
+ "id" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -128,28 +354,26 @@
"Blog",
1
]
- ],
- "id" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ ]
},
{
- "id" : "Duncan C. White",
- "name" : "Duncan C. White",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Duncan C. White",
+ "name" : "Duncan C. White"
},
{
+ "name" : "E. Choroba",
"data" : [
[
"Perl",
2
]
],
- "name" : "E. Choroba",
"id" : "E. Choroba"
},
{
@@ -167,13 +391,13 @@
]
},
{
+ "name" : "Gustavo Chaves",
"data" : [
[
"Perl",
2
]
],
- "name" : "Gustavo Chaves",
"id" : "Gustavo Chaves"
},
{
@@ -183,22 +407,22 @@
2
]
],
- "name" : "James Smith",
- "id" : "James Smith"
+ "id" : "James Smith",
+ "name" : "James Smith"
},
{
+ "name" : "Jan Krnavek",
+ "id" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ ]
},
{
- "id" : "Joan Mimosinnet",
"name" : "Joan Mimosinnet",
+ "id" : "Joan Mimosinnet",
"data" : [
[
"Raku",
@@ -211,16 +435,17 @@
]
},
{
+ "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
],
- "name" : "Jorg Sommrey",
- "id" : "Jorg Sommrey"
+ "name" : "Jorg Sommrey"
},
{
+ "name" : "Kang-min Liu",
"data" : [
[
"Perl",
@@ -235,10 +460,10 @@
1
]
],
- "id" : "Kang-min Liu",
- "name" : "Kang-min Liu"
+ "id" : "Kang-min Liu"
},
{
+ "name" : "Lance Wicks",
"data" : [
[
"Perl",
@@ -249,11 +474,9 @@
1
]
],
- "name" : "Lance Wicks",
"id" : "Lance Wicks"
},
{
- "name" : "Laurent Rosenfeld",
"id" : "Laurent Rosenfeld",
"data" : [
[
@@ -268,7 +491,8 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Laurent Rosenfeld"
},
{
"data" : [
@@ -281,6 +505,7 @@
"name" : "Lubos Kolouch"
},
{
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -291,18 +516,17 @@
2
]
],
- "name" : "Luca Ferrari",
- "id" : "Luca Ferrari"
+ "name" : "Luca Ferrari"
},
{
+ "name" : "Mark Anderson",
+ "id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ],
- "name" : "Mark Anderson",
- "id" : "Mark Anderson"
+ ]
},
{
"name" : "Nuno Vieira",
@@ -315,36 +539,37 @@
]
},
{
+ "id" : "Paulo Custodio",
"data" : [
[
"Perl",
2
]
],
- "name" : "Paulo Custodio",
- "id" : "Paulo Custodio"
+ "name" : "Paulo Custodio"
},
{
+ "name" : "Pete Houston",
+ "id" : "Pete Houston",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Pete Houston",
- "id" : "Pete Houston"
+ ]
},
{
+ "name" : "Philip Hood",
"data" : [
[
"Raku",
2
]
],
- "name" : "Philip Hood",
"id" : "Philip Hood"
},
{
+ "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -359,20 +584,20 @@
1
]
],
- "id" : "Roger Bell_West",
- "name" : "Roger Bell_West"
+ "id" : "Roger Bell_West"
},
{
+ "name" : "Simon Proctor",
"data" : [
[
"Raku",
2
]
],
- "id" : "Simon Proctor",
- "name" : "Simon Proctor"
+ "id" : "Simon Proctor"
},
{
+ "name" : "Stuart Little",
"data" : [
[
"Perl",
@@ -383,8 +608,7 @@
2
]
],
- "id" : "Stuart Little",
- "name" : "Stuart Little"
+ "id" : "Stuart Little"
},
{
"data" : [
@@ -401,6 +625,7 @@
"name" : "Ulrich Rieke"
},
{
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -411,228 +636,26 @@
1
]
],
- "name" : "W. Luis Mochan",
- "id" : "W. Luis Mochan"
+ "name" : "W. Luis Mochan"
},
{
+ "id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
],
- "id" : "Wanderdoc",
"name" : "Wanderdoc"
}
]
},
- "legend" : {
- "enabled" : 0
- },
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
- },
- "series" : [
- {
- "data" : [
- {
- "name" : "Aaron Smith",
- "drilldown" : "Aaron Smith",
- "y" : 3
- },
- {
- "name" : "Abigail",
- "y" : 4,
- "drilldown" : "Abigail"
- },
- {
- "name" : "Adam Russell",
- "y" : 3,
- "drilldown" : "Adam Russell"
- },
- {
- "drilldown" : "Andrew Shitov",
- "y" : 1,
- "name" : "Andrew Shitov"
- },
- {
- "name" : "Arne Sommer",
- "drilldown" : "Arne Sommer",
- "y" : 5
- },
- {
- "drilldown" : "Athanasius",
- "y" : 4,
- "name" : "Athanasius"
- },
- {
- "drilldown" : "Ben Davies",
- "y" : 2,
- "name" : "Ben Davies"
- },
- {
- "y" : 2,
- "drilldown" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung"
- },
- {
- "y" : 1,
- "drilldown" : "Cristina Heredia",
- "name" : "Cristina Heredia"
- },
- {
- "name" : "Dave Jacoby",
- "drilldown" : "Dave Jacoby",
- "y" : 3
- },
- {
- "name" : "Duncan C. White",
- "drilldown" : "Duncan C. White",
- "y" : 2
- },
- {
- "drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
- },
- {
- "drilldown" : "Flavio Poletti",
- "y" : 4,
- "name" : "Flavio Poletti"
- },
- {
- "y" : 2,
- "drilldown" : "Gustavo Chaves",
- "name" : "Gustavo Chaves"
- },
- {
- "name" : "James Smith",
- "y" : 2,
- "drilldown" : "James Smith"
- },
- {
- "name" : "Jan Krnavek",
- "drilldown" : "Jan Krnavek",
- "y" : 2
- },
- {
- "name" : "Joan Mimosinnet",
- "drilldown" : "Joan Mimosinnet",
- "y" : 3
- },
- {
- "name" : "Jorg Sommrey",
- "y" : 2,
- "drilldown" : "Jorg Sommrey"
- },
- {
- "name" : "Kang-min Liu",
- "drilldown" : "Kang-min Liu",
- "y" : 5
- },
- {
- "drilldown" : "Lance Wicks",
- "y" : 2,
- "name" : "Lance Wicks"
- },
- {
- "drilldown" : "Laurent Rosenfeld",
- "y" : 5,
- "name" : "Laurent Rosenfeld"
- },
- {
- "name" : "Lubos Kolouch",
- "y" : 2,
- "drilldown" : "Lubos Kolouch"
- },
- {
- "y" : 4,
- "drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson",
- "y" : 2
- },
- {
- "drilldown" : "Nuno Vieira",
- "y" : 2,
- "name" : "Nuno Vieira"
- },
- {
- "name" : "Paulo Custodio",
- "y" : 2,
- "drilldown" : "Paulo Custodio"
- },
- {
- "name" : "Pete Houston",
- "y" : 2,
- "drilldown" : "Pete Houston"
- },
- {
- "drilldown" : "Philip Hood",
- "y" : 2,
- "name" : "Philip Hood"
- },
- {
- "y" : 5,
- "drilldown" : "Roger Bell_West",
- "name" : "Roger Bell_West"
- },
- {
- "name" : "Simon Proctor",
- "y" : 2,
- "drilldown" : "Simon Proctor"
- },
- {
- "name" : "Stuart Little",
- "drilldown" : "Stuart Little",
- "y" : 4
- },
- {
- "name" : "Ulrich Rieke",
- "y" : 4,
- "drilldown" : "Ulrich Rieke"
- },
- {
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan",
- "y" : 3
- },
- {
- "drilldown" : "Wanderdoc",
- "y" : 2,
- "name" : "Wanderdoc"
- }
- ],
- "colorByPoint" : 1,
- "name" : "Perl Weekly Challenge - 096"
- }
- ],
- "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
+ "subtitle" : {
+ "text"