aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-099/cristian-heredia/perl/ch-1.pl64
-rw-r--r--challenge-099/cristian-heredia/python/ch-1.py39
-rw-r--r--stats/pwc-current.json477
-rw-r--r--stats/pwc-language-breakdown-summary.json50
-rw-r--r--stats/pwc-language-breakdown.json1414
-rw-r--r--stats/pwc-leaders.json330
-rw-r--r--stats/pwc-summary-1-30.json106
-rw-r--r--stats/pwc-summary-121-150.json108
-rw-r--r--stats/pwc-summary-151-180.json96
-rw-r--r--stats/pwc-summary-181-210.json42
-rw-r--r--stats/pwc-summary-211-240.json56
-rw-r--r--stats/pwc-summary-31-60.json52
-rw-r--r--stats/pwc-summary-61-90.json102
-rw-r--r--stats/pwc-summary-91-120.json108
-rw-r--r--stats/pwc-summary.json58
15 files changed, 1610 insertions, 1492 deletions
diff --git a/challenge-099/cristian-heredia/perl/ch-1.pl b/challenge-099/cristian-heredia/perl/ch-1.pl
new file mode 100644
index 0000000000..237d145780
--- /dev/null
+++ b/challenge-099/cristian-heredia/perl/ch-1.pl
@@ -0,0 +1,64 @@
+=begin
+
+TASK #1 › Pattern Match
+Submitted by: Mohammad S Anwar
+You are given a string $S and a pattern $P.
+
+Write a script to check if given pattern validate the entire string. Print 1 if pass otherwise 0.
+
+The patterns can also have the following characters:
+
+? - Match any single character.
+* - Match any sequence of characters.
+ Example 1:
+ Input: $S = "abcde" $P = "a*e"
+ Output: 1
+ Example 2:
+ Input: $S = "abcde" $P = "a*d"
+ Output: 0
+ Example 3:
+ Input: $S = "abcde" $P = "?b*d"
+ Output: 0
+ Example 4:
+ Input: $S = "abcde" $P = "a*c?e"
+ Output: 1
+
+=end
+=cut
+
+
+use strict;
+use warnings;
+use Data::Dumper;
+
+#Input
+my $S = "abcde";
+my $P = "a*e";
+
+
+my @pattern = split //, $P;
+
+replaceCharacter();
+
+sub replaceCharacter {
+ foreach ( @pattern ) {
+ if ($_ eq '?') {
+ $_ = '.';
+ }
+ elsif ($_ eq '*') {
+ $_ = '.+';
+ }
+ }
+ my $redex = join '', @pattern;
+ printResult($redex);
+}
+
+sub printResult{
+ my $redex = shift;
+ if ($S =~ /^$redex$/){
+ print "1\n";
+ }
+ else {
+ print "0\n";
+ }
+}
diff --git a/challenge-099/cristian-heredia/python/ch-1.py b/challenge-099/cristian-heredia/python/ch-1.py
new file mode 100644
index 0000000000..c2e470bc11
--- /dev/null
+++ b/challenge-099/cristian-heredia/python/ch-1.py
@@ -0,0 +1,39 @@
+'''
+
+TASK #1 › Pattern Match
+Submitted by: Mohammad S Anwar
+You are given a string $S and a pattern $P.
+
+Write a script to check if given pattern validate the entire string. Print 1 if pass otherwise 0.
+
+The patterns can also have the following characters:
+
+? - Match any single character.
+* - Match any sequence of characters.
+ Example 1:
+ Input: $S = "abcde" $P = "a*e"
+ Output: 1
+ Example 2:
+ Input: $S = "abcde" $P = "a*d"
+ Output: 0
+ Example 3:
+ Input: $S = "abcde" $P = "?b*d"
+ Output: 0
+ Example 4:
+ Input: $S = "abcde" $P = "a*c?e"
+ Output: 1
+
+'''
+import re
+
+#Input
+S = "abcde";
+P = "a*c?e";
+
+pattern = P.replace('*' , '.+').replace('?' , '.')
+pattern = "^" + pattern + "$"
+
+if re.match(pattern, S):
+ print (1)
+else:
+ print (0)
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index bd5a33adf4..180a2fb52a 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,29 +1,196 @@
{
- "chart" : {
- "type" : "column"
- },
- "title" : {
- "text" : "Perl Weekly Challenge - 099"
- },
"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/>"
+ "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/>"
},
"plotOptions" : {
"series" : {
"dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
+ "enabled" : 1,
+ "format" : "{point.y}"
},
"borderWidth" : 0
}
},
+ "title" : {
+ "text" : "Perl Weekly Challenge - 099"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "subtitle" : {
+ "text" : "[Champions: 29] Last updated at 2021-02-14 18:25:37 GMT"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "series" : [
+ {
+ "colorByPoint" : 1,
+ "name" : "Perl Weekly Challenge - 099",
+ "data" : [
+ {
+ "drilldown" : "Aaron Smith",
+ "name" : "Aaron Smith",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Alexander Pankoff",
+ "name" : "Alexander Pankoff",
+ "y" : 2
+ },
+ {
+ "y" : 5,
+ "name" : "Arne Sommer",
+ "drilldown" : "Arne Sommer"
+ },
+ {
+ "name" : "Athanasius",
+ "drilldown" : "Athanasius",
+ "y" : 4
+ },
+ {
+ "name" : "Cheok-Yin Fung",
+ "drilldown" : "Cheok-Yin Fung",
+ "y" : 2
+ },
+ {
+ "y" : 1,
+ "name" : "Colin Crain",
+ "drilldown" : "Colin Crain"
+ },
+ {
+ "y" : 1,
+ "drilldown" : "Cristina Heredia",
+ "name" : "Cristina Heredia"
+ },
+ {
+ "drilldown" : "Dave Jacoby",
+ "name" : "Dave Jacoby",
+ "y" : 3
+ },
+ {
+ "name" : "E. Choroba",
+ "drilldown" : "E. Choroba",
+ "y" : 2
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
+ },
+ {
+ "drilldown" : "Gustavo Chaves",
+ "name" : "Gustavo Chaves",
+ "y" : 2
+ },
+ {
+ "drilldown" : "James Smith",
+ "name" : "James Smith",
+ "y" : 3
+ },
+ {
+ "name" : "Jan Krnavek",
+ "drilldown" : "Jan Krnavek",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey",
+ "y" : 2
+ },
+ {
+ "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 5
+ },
+ {
+ "y" : 2,
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch"
+ },
+ {
+ "y" : 4,
+ "name" : "Luca Ferrari",
+ "drilldown" : "Luca Ferrari"
+ },
+ {
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "name" : "Niels van Dijke",
+ "drilldown" : "Niels van Dijke"
+ },
+ {
+ "name" : "Nuno Vieira",
+ "drilldown" : "Nuno Vieira",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Paulo Custodio",
+ "name" : "Paulo Custodio",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Pete Houston",
+ "name" : "Pete Houston"
+ },
+ {
+ "name" : "Roger Bell_West",
+ "drilldown" : "Roger Bell_West",
+ "y" : 5
+ },
+ {
+ "name" : "Simon Green",
+ "drilldown" : "Simon Green",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Simon Proctor",
+ "name" : "Simon Proctor",
+ "y" : 2
+ },
+ {
+ "name" : "Stuart Little",
+ "drilldown" : "Stuart Little",
+ "y" : 4
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
+ },
+ {
+ "name" : "W. Luis Mochan",
+ "drilldown" : "W. Luis Mochan",
+ "y" : 3
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Wanderdoc",
+ "name" : "Wanderdoc"
+ }
+ ]
+ }
+ ],
"drilldown" : {
"series" : [
{
- "id" : "Aaron Smith",
"name" : "Aaron Smith",
+ "id" : "Aaron Smith",
"data" : [
[
"Raku",
@@ -36,14 +203,14 @@
]
},
{
+ "name" : "Alexander Pankoff",
+ "id" : "Alexander Pankoff",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Alexander Pankoff",
- "name" : "Alexander Pankoff"
+ ]
},
{
"data" : [
@@ -60,10 +227,11 @@
1
]
],
- "name" : "Arne Sommer",
- "id" : "Arne Sommer"
+ "id" : "Arne Sommer",
+ "name" : "Arne Sommer"
},
{
+ "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -74,30 +242,41 @@
2
]
],
- "id" : "Athanasius",
"name" : "Athanasius"
},
{
"id" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Cheok-Yin Fung"
},
{
+ "id" : "Colin Crain",
"data" : [
[
"Blog",
1
]
],
- "id" : "Colin Crain",
"name" : "Colin Crain"
},
{
+ "id" : "Cristina Heredia",
+ "data" : [
+ [
+ "Perl",
+ 1
+ ]
+ ],
+ "name" : "Cristina Heredia"
+ },
+ {
+ "name" : "Dave Jacoby",
+ "id" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -107,23 +286,20 @@
"Blog",
1
]
- ],
- "name" : "Dave Jacoby",
- "id" : "Dave Jacoby"
+ ]
},
{
- "name" : "E. Choroba",
- "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
"name" : "Flavio Poletti",
- "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -133,20 +309,20 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Flavio Poletti"
},
{
- "id" : "Gustavo Chaves",
"name" : "Gustavo Chaves",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Gustavo Chaves"
},
{
- "name" : "James Smith",
"id" : "James Smith",
"data" : [
[
@@ -157,29 +333,31 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "James Smith"
},
{
+ "name" : "Jan Krnavek",
"data" : [
[
"Raku",
2
]
],
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ "id" : "Jan Krnavek"
},
{
"name" : "Jorg Sommrey",
- "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Jorg Sommrey"
},
{
+ "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -194,22 +372,20 @@
1
]
],
- "name" : "Laurent Rosenfeld",
- "id" : "Laurent Rosenfeld"
+ "name" : "Laurent Rosenfeld"
},
{
+ "name" : "Lubos Kolouch",
+ "id" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Lubos Kolouch",
- "id" : "Lubos Kolouch"
+ ]
},
{
"id" : "Luca Ferrari",
- "name" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -219,60 +395,60 @@
"Blog",
2
]
- ]
+ ],
+ "name" : "Luca Ferrari"
},
{
"id" : "Mark Anderson",
- "name" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Mark Anderson"
},
{
- "name" : "Niels van Dijke",
"id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Niels van Dijke"
},
{
- "name" : "Nuno Vieira",
- "id" : "Nuno Vieira",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Nuno Vieira",
+ "name" : "Nuno Vieira"
},
{
"id" : "Paulo Custodio",
- "name" : "Paulo Custodio",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Paulo Custodio"
},
{
+ "name" : "Pete Houston",
+ "id" : "Pete Houston",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Pete Houston",
- "name" : "Pete Houston"
+ ]
},
{
- "name" : "Roger Bell_West",
"id" : "Roger Bell_West",
"data" : [
[
@@ -287,7 +463,8 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Roger Bell_West"
},
{
"data" : [
@@ -300,12 +477,12 @@
1
]
],
- "name" : "Simon Green",
- "id" : "Simon Green"
+ "id" : "Simon Green",
+ "name" : "Simon Green"
},
{
- "id" : "Simon Proctor",
"name" : "Simon Proctor",
+ "id" : "Simon Proctor",
"data" : [
[
"Raku",
@@ -314,6 +491,8 @@
]
},
{
+ "name" : "Stuart Little",
+ "id" : "Stuart Little",
"data" : [
[
"Perl",
@@ -323,13 +502,11 @@
"Raku",
2
]
- ],
- "id" : "Stuart Little",
- "name" : "Stuart Little"
+ ]
},
{
- "id" : "Ulrich Rieke",
"name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -339,7 +516,6 @@
},
{
"id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -349,180 +525,19 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "W. Luis Mochan"
},
{
"name" : "Wanderdoc",
- "id" : "Wanderdoc",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Wanderdoc"
}
]
- },
- "legend" : {
- "enabled" : 0
- },
- "xAxis" : {
- "type" : "category"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "subtitle" : {
- "text" : "[Champions: 28] Last updated at 2021-02-14 17:51:56 GMT"
- },
- "series" : [
- {
- "colorByPoint" : 1,
- "name" : "Perl Weekly Challenge - 099",
- "data" : [
- {
- "y" : 3,
- "drilldown" : "Aaron Smith",
- "name" : "Aaron Smith"
- },
- {
- "name" : "Alexander Pankoff",
- "drilldown" : "Alexander Pankoff",
- "y" : 2
- },
- {
- "drilldown" : "Arne Sommer",
- "name" : "Arne Sommer",
- "y" : 5
- },
- {
- "drilldown" : "Athanasius",
- "name" : "Athanasius",
- "y" : 4
- },
- {
- "y" : 2,
- "name" : "Cheok-Yin Fung",
- "drilldown" : "Cheok-Yin Fung"
- },
- {
- "name" : "Colin Crain",
- "drilldown" : "Colin Crain",
- "y" : 1
- },
- {
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby",
- "y" : 3
- },
- {
- "name" : "E. Choroba",
- "drilldown" : "E. Choroba",
- "y" : 2
- },
- {
- "y" : 4,
- "name" : "Flavio Poletti",
- "drilldown" : "Flavio Poletti"
- },
- {
- "name" : "Gustavo Chaves",
- "drilldown" : "Gustavo Chaves",
- "y" : 2
- },
- {
- "name" : "James Smith",
- "drilldown" : "James Smith",
- "y" : 3
- },
- {
- "y" : 2,
- "name" : "Jan Krnavek",
- "drilldown" : "Jan Krnavek"
- },
- {
- "name" : "Jorg Sommrey",
- "drilldown" : "Jorg Sommrey",
- "y" : 2
- },
- {
- "name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld",
- "y" : 5
- },
- {
- "y" : 2,
- "drilldown" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
- },
- {
- "drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari",
- "y" : 4
- },
- {
- "y" : 2,
- "drilldown" : "Mark Anderson",
- "name" : "Mark Anderson"
- },
- {
- "y" : 2,
- "drilldown" : "Niels van Dijke",
- "name" : "Niels van Dijke"
- },
- {
- "name" : "Nuno Vieira",
- "drilldown" : "Nuno Vieira",
- "y" : 2
- },
- {
- "name" : "Paulo Custodio",
- "drilldown" : "Paulo Custodio",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Pete Houston",
- "name" : "Pete Houston"
- },
- {
- "y" : 5,
- "drilldown" : "Roger Bell_West",
- "name" : "Roger Bell_West"
- },
- {
- "y" : 3,
- "name" : "Simon Green",
- "drilldown" : "Simon Green"
- },
- {
- "drilldown" : "Simon Proctor",
- "name" : "Simon Proctor",
- "y" : 2
- },
- {
- "drilldown" : "Stuart Little",
- "name" : "Stuart Little",
- "y" : 4
- },
- {
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke",
- "y" : 2
- },
- {
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan",
- "y" : 3
- },
- {
- "y" : 2,
- "drilldown" : "Wanderdoc",
- "name" : "Wanderdoc"
- }
- ]
- }
- ]
+ }
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 380cb53de9..a363629202 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,30 +1,18 @@
{
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- }
- },
- "legend" : {
- "enabled" : "false"
- },
"series" : [
{
"name" : "Contributions",
"dataLabels" : {
- "y" : 10,
- "color" : "#FFFFFF",
"enabled" : "true",
+ "color" : "#FFFFFF",
"align" : "right",
+ "rotation" : -90,
"format" : "{point.y:.0f}",
+ "y" : 10,
"style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "rotation" : -90
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
},
"data" : [
[
@@ -33,7 +21,7 @@
],
[
"Perl",
- 4632
+ 4633
],
[
"Raku",
@@ -42,21 +30,33 @@
]
}
],
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ },
+ "type" : "category"
+ },
"subtitle" : {
- "text" : "Last updated at 2021-02-14 17:51:56 GMT"
+ "text" : "Last updated at 2021-02-14 18:25:37 GMT"
+ },
+ "legend" : {
+ "enabled" : "false"
},
"yAxis" : {
- "min" : 0,
"title" : {
"text" : null
- }
- },
- "title" : {
- "text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
+ },
+ "min" : 0
},
"chart" : {
"type" : "column"
},
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions [2019 - 2020]"
+ },
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 119cb97d8b..a7bde0ece3 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,539 +1,27 @@
{
- "tooltip" : {
- "followPointer" : "true",
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style=\"font-size:11px\"></span>"
- },
"chart" : {
"type" : "column"
},
"title" : {
"text" : "Perl Weekly Challenge Language"
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2021-02-14 17:51:56 GMT"
+ "tooltip" : {
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "followPointer" : "true",
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>"
},
- "series" : [
- {
- "data" : [
- {
- "name" : "#001",
- "drilldown" : "001",
- "y" : 155
- },
- {
- "y" : 120,
- "drilldown" : "002",
- "name" : "#002"
- },
- {
- "y" : 77,
- "drilldown" : "003",
- "name" : "#003"
- },
- {
- "name" : "#004",
- "drilldown" : "004",
- "y" : 95
- },
- {
- "y" : 76,
- "drilldown" : "005",
- "name" : "#005"
- },
- {
- "drilldown" : "006",
- "name" : "#006",
- "y" : 56
- },
- {
- "name" : "#007",
- "drilldown" : "007",
- "y" : 63
- },
- {
- "name" : "#008",
- "drilldown" : "008",
- "y" : 76
- },
- {
- "name" : "#009",
- "drilldown" : "009",
- "y" : 74
- },
- {
- "name" : "#010",
- "drilldown" : "010",
- "y" : 64
- },
- {
- "drilldown" : "011",
- "name" : "#011",
- "y" : 83
- },
- {
- "y" : 87,
- "drilldown" : "012",
- "name" : "#012"
- },
- {
- "y" : 82,
- "name" : "#013",
- "drilldown" : "013"
- },
- {
- "y" : 100,
- "name" : "#014",
- "drilldown" : "014"
- },
- {
- "y" : 97,
- "name" : "#015",
- "drilldown" : "015"
- },
- {
- "name" : "#016",
- "drilldown" : "016",
- "y" : 70
- },
- {
- "drilldown" : "017",
- "name" : "#017",
- "y" : 83
- },
- {
- "drilldown" : "018",
- "name" : "#018",
- "y" : 80
- },
- {
- "name" : "#019",
- "drilldown" : "019",
- "y" : 101
- },
- {
- "drilldown" : "020",
- "name" : "#020",
- "y" : 99
- },
- {
- "y" : 71,
- "drilldown" : "021",
- "name" : "#021"
- },
- {
- "y" : 67,
- "name" : "#022",
- "drilldown" : "022"
- },
- {
- "name" : "#023",
- "drilldown" : "023",
- "y" : 95
- },
- {
- "name" : "#024",
- "drilldown" : "024",
- "y" : 74
- },
- {
- "y" : 59,
- "drilldown" : "025",
- "name" : "#025"
- },
- {
- "name" : "#026",
- "drilldown" : "026",
- "y" : 74
- },
- {
- "y" : 60,
- "name" : "#027",
- "drilldown" : "027"
- },
- {
- "drilldown" : "028",
- "name" : "#028",
- "y" : 80
- },
- {
- "y" : 79,
- "drilldown" : "029",
- "name" : "#029"
- },
- {
- "drilldown" : "030",
- "name" : "#030",
- "y" : 117
- },
- {
- "name" : "#031",
- "drilldown" : "031",
- "y" : 89
- },
- {
- "name" : "#032",
- "drilldown" : "032",
- "y" : 94
- },
- {
- "y" : 110,
- "drilldown" : "033",
- "name" : "#033"
- },