aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-039/kevin-colyer/perl6/ch-1.p655
-rw-r--r--challenge-039/kevin-colyer/perl6/ch-2.p669
-rw-r--r--stats/pwc-current.json229
-rw-r--r--stats/pwc-language-breakdown-summary.json56
-rw-r--r--stats/pwc-language-breakdown.json338
-rw-r--r--stats/pwc-leaders.json922
-rw-r--r--stats/pwc-summary-1-30.json46
-rw-r--r--stats/pwc-summary-121-150.json104
-rw-r--r--stats/pwc-summary-31-60.json98
-rw-r--r--stats/pwc-summary-61-90.json48
-rw-r--r--stats/pwc-summary-91-120.json40
-rw-r--r--stats/pwc-summary.json340
12 files changed, 1242 insertions, 1103 deletions
diff --git a/challenge-039/kevin-colyer/perl6/ch-1.p6 b/challenge-039/kevin-colyer/perl6/ch-1.p6
new file mode 100644
index 0000000000..47b314397d
--- /dev/null
+++ b/challenge-039/kevin-colyer/perl6/ch-1.p6
@@ -0,0 +1,55 @@
+#!/usr/bin/perl6
+
+use v6;
+
+use Test;
+
+=begin pod
+
+Task 39.1
+
+A guest house had a policy that the light remain ON as long as the at least one guest is in the house. There is guest book which tracks all guest in/out time. Write a script to find out how long in minutes the light were ON.
+Guest Book
+1) Alex IN: 09:10 OUT: 09:45
+2) Arnold IN: 09:15 OUT: 09:33
+3) Bob IN: 09:22 OUT: 09:55
+4) Charlie IN: 09:25 OUT: 10:05
+5) Steve IN: 09:33 OUT: 10:01
+6) Roger IN: 09:44 OUT: 10:12
+7) David IN: 09:57 OUT: 10:23
+8) Neil IN: 10:01 OUT: 10:19
+9) Chris IN: 10:10 OUT: 11:00
+
+
+=end pod
+
+# this seems obvious - 9.10-11:00 there was continuous presence in the house...
+# but here's a script anyway
+
+my $housemates=q:to/timings/;
+Alex IN: 09:10 OUT: 09:45
+Arnold IN: 09:15 OUT: 09:33
+Bob IN: 09:22 OUT: 09:55
+Charlie IN: 09:25 OUT: 10:05
+Steve IN: 09:33 OUT: 10:01
+Roger IN: 09:44 OUT: 10:12
+David IN: 09:57 OUT: 10:23
+Neil IN: 10:01 OUT: 10:19
+Chris IN: 10:10 OUT: 11:00
+timings
+
+# make set of all entry and exit times and populate with the interval minutes
+# need SetHash because I want to add members one at a time - otherwise a Set is immutable
+my %minutes is SetHash;
+
+for $housemates.lines -> $l {
+ # parse list to get times
+ $l ~~ / (\d\d) \: (\d\d) .+ (\d\d) \: (\d\d) /;
+ my ($ih,$im,$oh,$om) = |$/;
+
+ # add the time range to the set
+ %minutes{$_}++ for ($ih*60+$im)..($oh*60+$om-1);
+}
+# count the elements
+say %minutes.elems ~ " minutes the lights were on";
+
diff --git a/challenge-039/kevin-colyer/perl6/ch-2.p6 b/challenge-039/kevin-colyer/perl6/ch-2.p6
new file mode 100644
index 0000000000..91db848b98
--- /dev/null
+++ b/challenge-039/kevin-colyer/perl6/ch-2.p6
@@ -0,0 +1,69 @@
+#!/usr/bin/perl6
+use v6;
+
+use Test;
+
+=begin pod
+
+Write a script to demonstrate Reverse Polish notation(RPN).
+
+https://en.wikipedia.org/wiki/Reverse_Polish_notation
+
+example given
+
+The infix expression ((15 ÷ (7 − (1 + 1))) × 3) − (2 + (1 + 1)) can be written like this in reverse Polish notation:
+
+15 7 1 1 + − ÷ 3 × 2 1 1 + + −
+
+gives 5
+
+
+=end pod
+
+is evaluateRPN("15 7 1 1 + − ÷ 3 × 2 1 1 + + −"),5,"Wikipedia example";
+
+# parses and evaluates a space separated postfix expression in RPN (add,sub,div,mult and pos. integers supported)
+sub evaluateRPN($input) {
+ say "Postfix expression to evaluate: [$input]";
+ my @stack;
+ my @in=$input.split: /\s+/;
+ for @in -> $token {
+ # for each token in the postfix expression:
+ given $token {
+ # if token is an operator:
+ # operand_2 ← pop from the stack
+ # operand_1 ← pop from the stack
+ # result ← evaluate token with operand_1 and operand_2
+ # push result back onto the stack
+ when / (<[+−÷×]>) / {
+ say "! found token operator";
+ my $op2 = @stack.pop;
+ say " popped $op2";
+ my $op1 = @stack.pop;
+ say " popped $op1";
+
+ print " evaluating $op1 and $op2 with $/";
+ my $result = 0;
+ $result = $op1 + $op2 if $/ eq '+';
+ $result = $op1 - $op2 if $/ eq '−';
+ $result = $op1 / $op2 if $/ eq '÷';
+ $result = $op1 * $op2 if $/ eq '×';
+ @stack.push: $result;
+ say " result = $result";
+ say " pushed $result into stack [{@stack}]";
+ }
+ # else if token is an operand:
+ # push token onto the stack
+ when /\d+/ {
+ say "! found token operand";
+ @stack.push: $token;
+ say " pushed $token into stack [{@stack}]";
+ };
+ }
+ }
+ # result ← pop from the stack
+ say "! end of input";
+ say " popping {@stack[0]} and returning...\n";
+ @stack.pop;
+}
+
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 2c68595ad0..6e724a1feb 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,111 +1,58 @@
{
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
"chart" : {
"type" : "column"
},
+ "title" : {
+ "text" : "Perl Weekly Challenge - 039"
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "series" : [
- {
- "data" : [
- {
- "name" : "Andrezgz",
- "y" : 2,
- "drilldown" : "Andrezgz"
- },
- {
- "drilldown" : "Daniel Mita",
- "name" : "Daniel Mita",
- "y" : 1
- },
- {
- "name" : "Duane Powell",
- "y" : 2,
- "drilldown" : "Duane Powell"
- },
- {
- "name" : "Javier Luque",
- "y" : 5,
- "drilldown" : "Javier Luque"
- },
- {
- "drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld",
- "y" : 5
- },
- {
- "drilldown" : "Nazareno Delucca",
- "name" : "Nazareno Delucca",
- "y" : 2
- },
- {
- "drilldown" : "Noud",
- "name" : "Noud",
- "y" : 2
- },
- {
- "drilldown" : "Roger Bell West",
- "name" : "Roger Bell West",
- "y" : 4
- },
- {
- "drilldown" : "Ruben Westerberg",
- "name" : "Ruben Westerberg",
- "y" : 4
- },
- {
- "y" : 5,
- "name" : "Ryan Thompson",
- "drilldown" : "Ryan Thompson"
- },
- {
- "drilldown" : "Steven Wilson",
- "y" : 2,
- "name" : "Steven Wilson"
- },
- {
- "drilldown" : "Ulrich Rieke",
- "name" : "Ulrich Rieke",
- "y" : 2
- }
- ],
- "name" : "Perl Weekly Challenge - 039",
- "colorByPoint" : 1
- }
- ],
"drilldown" : {
"series" : [
{
- "name" : "Andrezgz",
- "id" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "name" : "Andrezgz",
+ "id" : "Andrezgz"
},
{
+ "name" : "Daniel Mita",
"data" : [
[
"Perl 6",
1
]
],
- "id" : "Daniel Mita",
- "name" : "Daniel Mita"
+ "id" : "Daniel Mita"
},
{
- "name" : "Duane Powell",
"id" : "Duane Powell",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "name" : "Duane Powell"
},
{
"id" : "Javier Luque",
@@ -126,7 +73,17 @@
"name" : "Javier Luque"
},
{
- "name" : "Laurent Rosenfeld",
+ "data" : [
+ [
+ "Perl 6",
+ 2
+ ]
+ ],
+ "name" : "Kevin Colyer",
+ "id" : "Kevin Colyer"
+ },
+ {
+ "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl 5",
@@ -141,11 +98,11 @@
1
]
],
- "id" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld"
},
{
- "name" : "Nazareno Delucca",
"id" : "Nazareno Delucca",
+ "name" : "Nazareno Delucca",
"data" : [
[
"Perl 5",
@@ -154,16 +111,17 @@
]
},
{
+ "id" : "Noud",
"data" : [
[
"Perl 6",
2
]
],
- "id" : "Noud",
"name" : "Noud"
},
{
+ "name" : "Roger Bell West",
"data" : [
[
"Perl 5",
@@ -174,8 +132,7 @@
2
]
],
- "id" : "Roger Bell West",
- "name" : "Roger Bell West"
+ "id" : "Roger Bell West"
},
{
"id" : "Ruben Westerberg",
@@ -192,7 +149,7 @@
"name" : "Ruben Westerberg"
},
{
- "id" : "Ryan Thompson",
+ "name" : "Ryan Thompson",
"data" : [
[
"Perl 5",
@@ -207,54 +164,112 @@
1
]
],
- "name" : "Ryan Thompson"
+ "id" : "Ryan Thompson"
},
{
- "id" : "Steven Wilson",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Steven Wilson"
+ "name" : "Steven Wilson",
+ "id" : "Steven Wilson"
},
{
- "id" : "Ulrich Rieke",
"data" : [
[
"Perl 6",
2
]
],
- "name" : "Ulrich Rieke"
+ "name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke"
}
]
},
- "subtitle" : {
- "text" : "[Champions: 12] Last updated at 2019-12-20 23:52:57 GMT"
+ "series" : [
+ {
+ "name" : "Perl Weekly Challenge - 039",
+ "colorByPoint" : 1,
+ "data" : [
+ {
+ "y" : 2,
+ "name" : "Andrezgz",
+ "drilldown" : "Andrezgz"
+ },
+ {
+ "name" : "Daniel Mita",
+ "y" : 1,
+ "drilldown" : "Daniel Mita"
+ },
+ {
+ "y" : 2,
+ "name" : "Duane Powell",
+ "drilldown" : "Duane Powell"
+ },
+ {
+ "name" : "Javier Luque",
+ "y" : 5,
+ "drilldown" : "Javier Luque"
+ },
+ {
+ "y" : 2,
+ "name" : "Kevin Colyer",
+ "drilldown" : "Kevin Colyer"
+ },
+ {
+ "y" : 5,
+ "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld"
+ },
+ {
+ "y" : 2,
+ "name" : "Nazareno Delucca",
+ "drilldown" : "Nazareno Delucca"
+ },
+ {
+ "drilldown" : "Noud",
+ "y" : 2,
+ "name" : "Noud"
+ },
+ {
+ "y" : 4,
+ "name" : "Roger Bell West",
+ "drilldown" : "Roger Bell West"
+ },
+ {
+ "y" : 4,
+ "name" : "Ruben Westerberg",
+ "drilldown" : "Ruben Westerberg"
+ },
+ {
+ "drilldown" : "Ryan Thompson",
+ "name" : "Ryan Thompson",
+ "y" : 5
+ },
+ {
+ "drilldown" : "Steven Wilson",
+ "name" : "Steven Wilson",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
+ "y" : 2
+ }
+ ]
+ }
+ ],
+ "legend" : {
+ "enabled" : 0
},
- "xAxis" : {
- "type" : "category"
+ "subtitle" : {
+ "text" : "[Champions: 13] Last updated at 2019-12-21 20:10:27 GMT"
},
"tooltip" : {
- "followPointer" : 1,
"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/>"
- },
- "title" : {
- "text" : "Perl Weekly Challenge - 039"
- },
- "legend" : {
- "enabled" : 0
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index fa7bdda50d..e2a4ba502d 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,44 +1,27 @@
{
- "legend" : {
- "enabled" : "false"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "subtitle" : {
- "text" : "Last updated at 2019-12-20 23:53:08 GMT"
- },
- "chart" : {
- "type" : "column"
- },
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
- },
"xAxis" : {
"type" : "category",
"labels" : {
"style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
}
}
},
"series" : [
{
+ "name" : "Contributions",
"dataLabels" : {
+ "enabled" : "true",
+ "color" : "#FFFFFF",
"align" : "right",
"format" : "{point.y:.0f}",
- "enabled" : "true",
"y" : 10,
"rotation" : -90,
"style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- },
- "color" : "#FFFFFF"
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ }
},
"data" : [
[
@@ -51,13 +34,30 @@
],
[
"Perl 6",
- 968
+ 970
]
- ],
- "name" : "Contributions"
+ ]
}
],
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
+ }
+ },
"title" : {
"text" : "Perl Weekly Challenge Contributions - 2019"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2019-12-21 20:10:35 GMT"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index e9aa9e08c4..32788cab57 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,28 +1,29 @@
{
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-12-20 23:53:08 GMT"
+ "chart" : {
+ "type" : "column"
},
- "legend" : {
- "enabled" : "false"
+ "tooltip" : {
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "followPointer" : "true"
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-12-21 20:10:35 GMT"
},
"plotOptions" : {
"series" : {
"borderWidth" : 0,
"dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
+ "enabled" : 1,
+ "format" : "{point.y}"
}
}
},
- "tooltip" : {
- "headerFormat" : "<span style=\"font-size:11px\"></span>",
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : "true"
- },
"drilldown" : {
"series" : [
{
"name" : "001",
+ "id" : "001",
"data" : [
[
"Perl 5",
@@ -36,12 +37,9 @@
"Blog",
11
]
- ],
- "id" : "001"
+ ]
},
{
- "name" : "002",
- "id" : "002",
"data" : [
[
"Perl 5",
@@ -55,11 +53,11 @@
"Blog",
9
]
- ]
+ ],
+ "id" : "002",
+ "name" : "002"
},
{
- "name" : "003",
- "id" : "003",
"data" : [
[
"Perl 5",
@@ -73,7 +71,9 @@
"Blog",
9
]
- ]
+ ],
+ "name" : "003",
+ "id" : "003"
},
{
"data" : [
@@ -94,6 +94,7 @@
"name" : "004"
},
{
+ "name" : "005",
"id" : "005",
"data" : [
[
@@ -108,12 +109,11 @@
"Blog",
12
]
- ],
- "name" : "005"
+ ]
},
{
- "name" : "006",
"id" : "006",
+ "name" : "006",
"data" : [
[
"Perl 5",
@@ -130,6 +130,8 @@
]
},
{
+ "id" : "007",
+ "name" : "007",
"data" : [
[
"Perl 5",
@@ -143,12 +145,9 @@
"Blog",
10
]
- ],
- "id" : "007",
- "name" : "007"
+ ]
},
{
- "name" : "008",
"data" : [
[
"Perl 5",
@@ -163,11 +162,10 @@
12
]
],
- "id" : "008"
+ "id" : "008",
+ "name" : "008"
},
{
- "name" : "009",
- "id" : "009",
"data" : [
[
"Perl 5",
@@ -181,10 +179,13 @@
"Blog",
13
]
- ]
+ ],
+ "name" : "009",
+ "id" : "009"
},
{
"name" : "010",
+ "id" : "010",
"data" : [
[
"Perl 5",
@@ -198,11 +199,11 @@
"Blog",
11
]
- ],
- "id" : "010"
+ ]
},
{
"name" : "011",
+ "id" : "011",
"data" : [
[
"Perl 5",
@@ -216,12 +217,9 @@
"Blog",
10
]
- ],
- "id" : "011"
+ ]
},
{
- "name" : "012",
- "id" : "012",
"data" : [
[
"Perl 5",
@@ -235,9 +233,13 @@
"Blog",
11
]
- ]
+ ],
+ "id" : "012",
+ "name" : "012"
},
{
+ "name" : "013",
+ "id" : "013",
"data" : [
[
"Perl 5",
@@ -251,13 +253,9 @@
"Blog",
13
]
- ],
- "id" : "013",
- "name" : "013"
+ ]
},
{
- "name" : "014",
- "id" : "014",
"data" : [
[
"Perl 5",
@@ -271,7 +269,9 @@
"Blog",
15
]
- ]
+ ],
+ "id" : "014",
+ "name" : "014"
},
{
"data" : [
@@ -293,6 +293,7 @@
},
{
"id" : "016",
+ "name" : "016",
"data" : [
[
"Perl 5",
@@ -306,10 +307,11 @@
"Blog",
12
]
- ],
- "name" : "016"
+ ]
},
{
+ "name" : "017",
+ "id" : "017",
"data" : [
[
"Perl 5",
@@ -323,9 +325,7 @@
"Blog",
12
]
- ],
- "id" : "017",
- "name" : "017"
+ ]
},
{
"data" : [
@@ -346,6 +346,8 @@
"name" : "018"
},
{
+ "id" : "019",
+ "name" : "019",
"data" : [
[
"Perl 5",
@@ -359,12 +361,11 @@
"Blog",
13
]
- ],
- "id" : "019",
- "name" : "019"
+ ]
},
{
"id" : "020",
+ "name" : "020",
"data" : [
[
"Perl 5",
@@ -378,11 +379,11 @@
"Blog",
13
]
- ],
- "name" : "020"
+ ]
},
{
"id" : "021",
+ "name" : "021",
"data" : [
[
"Perl 5",
@@ -396,12 +397,9 @@
"Blog",
10
]
- ],
- "name" : "021"
+ ]
},
{
- "name" : "022",
- "id" : "022",
"data" : [
[
"Perl 5",
@@ -415,10 +413,11 @@
"Blog",
10
]
- ]
+ ],
+ "id" : "022",
+ "name" : "022"
},
{
- "id" : "023",
"data" : [
[
"Perl 5",
@@ -433,10 +432,12 @@
12
]
],
+ "id" : "023",
"name" : "023"
},
{
"name" : "024",
+ "id" : "024",
"data" : [
[
"Perl 5",
@@ -450,11 +451,9 @@
"Blog",
11
]
- ],
- "id" : "024"
+ ]
},
{
- "id" : "025",
"data" : [
[
"Perl 5",
@@ -469,10 +468,10 @@
12
]
],
- "name" : "025"
+ "name" : "025",
+ "id" : "025"
},
{
- "name" : "026",
"data" : [
[
"Perl 5",
@@ -487,10 +486,10 @@
10
]
],
- "id" : "026"
+ "id" : "026",
+ "name" : "026"
},
{
- "name" : "027",
"data" : [
[
"Perl 5",
@@ -505,10 +504,10 @@
9
]
],
+ "name" : "027",
"id" : "027"
},
{
- "id" : "028",
"data" : [
[
"Perl 5",
@@ -523,10 +522,10 @@
9
]
],
+ "id" : "028",
"name" : "028"
},
{
- "id" : "029",
"data" : [
[
"Perl 5",
@@ -541,6 +540,7 @@
12
]
],
+ "id" : "029",
"name" : "029"
},
{
@@ -558,11 +558,10 @@
10
]
],
- "id" : "030",
- "name" : "030"
+ "name" : "030",
+ "id" : "030"
},
{
- "id" : "031",
"data" : [
[
"Perl 5",
@@ -577,10 +576,12 @@
9
]
],
+ "id" : "031",
"name" : "031"
},
{
"name" : "032",
+ "id" : "032",
"data" : [
[
"Perl 5",
@@ -594,10 +595,10 @@
"Blog",
10
]
- ],
- "id" : "032"
+ ]
},
{
+ "id" : "033",
"name" : "033",
"data" : [
[
@@ -612,10 +613,11 @@
"Blog",
10
]
- ],
- "id" : "033"
+ ]
},
{
+ "id" : "034",
+ "name" : "034",
"data" : [
[
"Perl 5",
@@ -629,11 +631,11 @@
"Blog",
11
]
- ],
- "id" : "034",
- "name" : "034"
+ ]
},
{
+ "name" : "035",
+ "id" : "035",
"data" : [
[
"Perl 5",
@@ -647,9 +649,7 @@
"Blog",
9
]
- ],
- "id" : "035",
- "name" : "035"
+ ]
},
{
"data" : [
@@ -666,10 +666,12 @@
10
]
],
- "id" : "036",
- "name" : "036"
+ "name" : "036",
+ "id" : "036"
},
{
+ "name" : "037",
+ "id" : "037",
"data" : [
[
"Perl 5",
@@ -683,9 +685,7 @@
"Blog",
8
]
- ],
- "id" : "037",
- "name" : "037"
+ ]
},
{
"name" : "038",
@@ -706,6 +706,8 @@
]
},
{
+ "name" : "039",
+ "id" : "039",
"data" : [
[
"Perl 5",
@@ -713,56 +715,48 @@
],
[
"Perl 6",
- 15
+ 17
],
[
"Blog",
3
]
- ],
- "id" : "039",
- "name" : "039"
+ ]
}
]
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "chart" : {
- "type" : "column"
- },
- "xAxis" : {
- "type" : "category"
+ "legend" : {
+ "enabled" : "false"
},
"series" : [
{
+ "name" : "Perl Weekly Challenge Languages",
+ "colorByPoint" : "true",
"data" : [
{
- "name" : "#001",
+ "y" : 140,
"drilldown" : "001",
- "y" : 140
+ "name" : "#001"
},
{
+ "y" : 108,
"drilldown" : "002",
- "name" : "#002",
- "y" : 108
+ "name" : "#002"
},
{
+ "y" : 71,
"name" : "#003",
- "drilldown" : "003",
- "y" : 71
+ "drilldown" : "003"
},
{
- "y" : 91,
+ "drilldown" : "004",
"name" : "#004",
- "drilldown" : "004"
+ "y" : 91
},
{
+ "y" : 71,
"drilldown" : "005",
- "name" : "#005",
- "y" : 71
+ "name" : "#005"
},
{
"drilldown" : "006",
@@ -770,19 +764,19 @@
"y" : 48
},
{
+ "y" : 56,