aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2023-10-03 12:33:39 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2023-10-03 12:33:39 +0100
commit348adb792a21a38fdafbd4977e18ca4b29881ae5 (patch)
tree39940d25cbe229d62f35fbfc107cf09a714bd8f9
parent100b1847395389d1f7fcc80957f463208f5f25e1 (diff)
downloadperlweeklychallenge-club-348adb792a21a38fdafbd4977e18ca4b29881ae5.tar.gz
perlweeklychallenge-club-348adb792a21a38fdafbd4977e18ca4b29881ae5.tar.bz2
perlweeklychallenge-club-348adb792a21a38fdafbd4977e18ca4b29881ae5.zip
- Added solutions by Eric Cheok-Yin.
- Added solutions by Robert DiCicco. - Added solutions by PokGoPun. - Added solutions by rcmlz. - Added solutions by David Ferrne. - Added solutions by W. Luis Mochan. - Added solutions by Peter Meszaros. - Added solutions by E. Choroba. - Added solutions by Luca Ferrari. - Added solutions by Thomas Kohler.
-rwxr-xr-xchallenge-237/eric-cheung/python/ch-1.py40
-rwxr-xr-xchallenge-237/eric-cheung/python/ch-2.py14
-rw-r--r--challenge-237/rcmlz/raku/ch-1.raku18
-rw-r--r--challenge-237/rcmlz/raku/ch-2.raku15
-rw-r--r--challenge-237/robert-dicicco/perl/ch-1.pl62
-rw-r--r--challenge-237/robert-dicicco/raku/ch-1.raku59
-rw-r--r--stats/pwc-challenge-236.json628
-rw-r--r--stats/pwc-current.json611
-rw-r--r--stats/pwc-language-breakdown-summary.json70
-rw-r--r--stats/pwc-language-breakdown.json1477
-rw-r--r--stats/pwc-leaders.json412
-rw-r--r--stats/pwc-summary-1-30.json92
-rw-r--r--stats/pwc-summary-121-150.json46
-rw-r--r--stats/pwc-summary-151-180.json56
-rw-r--r--stats/pwc-summary-181-210.json36
-rw-r--r--stats/pwc-summary-211-240.json114
-rw-r--r--stats/pwc-summary-241-270.json114
-rw-r--r--stats/pwc-summary-271-300.json46
-rw-r--r--stats/pwc-summary-31-60.json104
-rw-r--r--stats/pwc-summary-61-90.json104
-rw-r--r--stats/pwc-summary-91-120.json42
-rw-r--r--stats/pwc-summary.json58
22 files changed, 2324 insertions, 1894 deletions
diff --git a/challenge-237/eric-cheung/python/ch-1.py b/challenge-237/eric-cheung/python/ch-1.py
new file mode 100755
index 0000000000..035ce42e26
--- /dev/null
+++ b/challenge-237/eric-cheung/python/ch-1.py
@@ -0,0 +1,40 @@
+
+from datetime import datetime
+from calendar import monthrange
+
+## Example 1
+nYearInput = 2024
+nMonthInput = 4
+nWeekDayMonth = 3
+nWeekDay = 2
+
+
+## Example 2
+## nYearInput = 2025
+## nMonthInput = 10
+## nWeekDayMonth = 2
+## nWeekDay = 4
+
+
+## Example 3
+## nYearInput = 2026
+## nMonthInput = 8
+## nWeekDayMonth = 5
+## nWeekDay = 3
+
+
+nLastDay = monthrange(nYearInput, nMonthInput)[1]
+
+nDay = 0
+for nLoop in range(1, 8):
+ objDateInput = datetime(nYearInput, nMonthInput, nLoop)
+ if objDateInput.isoweekday() == nWeekDay:
+ nDay = nLoop
+ break
+
+nDay = nDay + 7 * (nWeekDayMonth - 1)
+
+if nDay <= nLastDay:
+ print (nDay)
+else:
+ print (0)
diff --git a/challenge-237/eric-cheung/python/ch-2.py b/challenge-237/eric-cheung/python/ch-2.py
new file mode 100755
index 0000000000..16e420e9a2
--- /dev/null
+++ b/challenge-237/eric-cheung/python/ch-2.py
@@ -0,0 +1,14 @@
+
+from itertools import permutations
+
+def GetGreatness (arrNum, arrPerm):
+ return len([nIndx for nIndx in range(len(arrNum)) if arrNum[nIndx] < arrPerm[nIndx]])
+
+## arrNumList = [1, 3, 5, 2, 1, 3, 1] ## Example 1
+arrNumList = [1, 2, 3, 4] ## Example 2
+
+arrPermList = permutations(arrNumList)
+
+arrGreatness = [GetGreatness (arrNumList, arrPermLoop) for arrPermLoop in list(arrPermList)]
+
+print (max(arrGreatness))
diff --git a/challenge-237/rcmlz/raku/ch-1.raku b/challenge-237/rcmlz/raku/ch-1.raku
new file mode 100644
index 0000000000..be3bf53f5c
--- /dev/null
+++ b/challenge-237/rcmlz/raku/ch-1.raku
@@ -0,0 +1,18 @@
+unit module rcmlz::raku::task-one:ver<0.0.1>:auth<github:rcmlz>:api<1>;
+
+# run in terminal: raku --optimize=3 -I challenge-nr237/rcmlz/raku/ -- test/challenge-nr237/raku/task-one.rakutest
+# or raku --optimize=3 -I challenge-nr237 -- test/benchmark-scalabiity.raku --task=task-one --user=rcmlz --max-run-times=1,3,7 --max-problem=10 --v=True --test-before-benchmark=True --out-folder=/tmp nr237; cat /tmp/nr237_task-one.csv
+
+#|[
+Given a year, a month, a weekday of month, and a day of week (1 (Mon) .. 7 (Sun)),
+- print the day.
+]
+our sub solution(%input) is export {
+ my $last-day-in-month = Date.new(%input<year>, %input<month>, *).day;
+ my $counter = %input<weekday-of-month>;
+ for 1..$last-day-in-month -> $dom {
+ $counter-- if %input<day-of-week> == Date.new(%input<year>, %input<month>, $dom).day-of-week;
+ return $dom unless $counter
+ }
+ return 0
+} \ No newline at end of file
diff --git a/challenge-237/rcmlz/raku/ch-2.raku b/challenge-237/rcmlz/raku/ch-2.raku
new file mode 100644
index 0000000000..fad8abe467
--- /dev/null
+++ b/challenge-237/rcmlz/raku/ch-2.raku
@@ -0,0 +1,15 @@
+unit module rcmlz::raku::task-two:ver<0.0.1>:auth<github:rcmlz>:api<1>;
+
+# run in terminal: raku --optimize=3 -I challenge-nr237/rcmlz/raku/ -- test/challenge-nr237/raku/task-two.rakutest
+# or raku --optimize=3 -I challenge-nr237 -- test/benchmark-scalabiity.raku --task=task-two --user=rcmlz --max-run-times=1,3,7 --max-problem=10 --v=True --test-before-benchmark=True --out-folder=/tmp nr237; cat /tmp/nr237_task-two.csv
+
+#|[
+You are given an array of integers.
+
+- Write a script to permute the given array such that you get the maximum possible greatness.
+- To determine greatness: nums[i] < perm[i] where 0 <= i < nums.length
+]
+our sub solution(@input) is export {
+ my @sorted = @input.sort;
+ [+] (@sorted.reverse Z- @sorted).grep(* > 0)
+} \ No newline at end of file
diff --git a/challenge-237/robert-dicicco/perl/ch-1.pl b/challenge-237/robert-dicicco/perl/ch-1.pl
new file mode 100644
index 0000000000..ff1ae34cfa
--- /dev/null
+++ b/challenge-237/robert-dicicco/perl/ch-1.pl
@@ -0,0 +1,62 @@
+#!/usr/bin/env perl
+=begin comment
+------------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-10-02
+Challenge 237 Task 01 Seize the Day ( Perl )
+-----------------------------------------
+=cut
+use v5.38;
+use Date::Simple (':all');
+
+my $year = sprintf("%02d",$ARGV[0]);
+my $month = sprintf("%02d",$ARGV[1]);
+my $weekday_of_month = sprintf("%02d",$ARGV[2]);
+my $day_of_week = $ARGV[3];
+my $cnt = 0;
+my $fnd = 0;
+
+say "Input: Year = $year, Month = $month, Weekday of month = $weekday_of_month, day of week = $day_of_week";
+
+for (my $d = 1; $d < 31; $d++) {
+ $d = sprintf("%02d",$d);
+ my $s = "$year-$month-$d";
+ my $date = Date::Simple->new($s);
+ my $dow = $date->day_of_week();
+ if ($dow == $day_of_week){
+ $cnt++;
+ if ($cnt == $weekday_of_month) {
+ say "Output: ",substr($s,8,2);
+ $fnd++;
+ last;
+ }
+ }
+}
+
+if ($fnd == 0) {
+ say "Output: 0";
+}
+
+=begin comment
+------------------------------------------
+SAMPLE OUTPUT
+perl .\SeizeDay.pl 2024 4 3 2
+
+Input: Year = 2024, Month = 04, Weekday of month = 03, day of week = 2
+Output: 16
+
+perl .\SeizeDay.pl 2025 10 2 4
+
+Input: Year = 2025, Month = 10, Weekday of month = 02, day of week = 4
+Output: 09
+
+perl .\SeizeDay.pl 2026 8 5 3
+
+Input: Year = 2026, Month = 08, Weekday of month = 05, day of week = 3
+Output: 0
+-----------------------------------------
+=cut
+
+
+
+
diff --git a/challenge-237/robert-dicicco/raku/ch-1.raku b/challenge-237/robert-dicicco/raku/ch-1.raku
new file mode 100644
index 0000000000..aae2823e3d
--- /dev/null
+++ b/challenge-237/robert-dicicco/raku/ch-1.raku
@@ -0,0 +1,59 @@
+#!/usr/bin/env raku
+=begin comment
+------------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-10-02
+Challenge 237 Task 01 Seize the Day ( Raku )
+-----------------------------------------
+=end comment
+
+my $cnt = 0;
+my $fnd = 0;
+
+sub MAIN ( $year, $mnth, $wom, $dow) {
+ my $month = sprintf("%02d",$mnth);
+ my $weekday_of_month = sprintf("%02d", $wom);
+ my $day_of_week = sprintf("%02d",$dow);
+ my $days_in_month = Date.new("$year-$month-01").days-in-month;
+ say "Input: Year = $year, Month = $month, Weekday of month = $weekday_of_month, day of week = $day_of_week";
+
+ loop (my $d = 1; $d <= $days_in_month; $d++) {
+ $d = sprintf("%02d",$d);
+ my $s = "$year-$month-$d";
+ my $day_of_week = Date.new("$year-$month-$d").day-of-week;
+ if $dow == $day_of_week {
+ $cnt++;
+ if $cnt == $weekday_of_month {
+ say "Output: ",substr($s,8,2);
+ $fnd++;
+ last;
+ }
+ }
+ }
+ if ($fnd == 0) {
+ say "Output: 0";
+ }
+}
+
+=begin comment
+------------------------------------------
+SAMPLE OUTPUT
+raku .\SeizeDay.rk 2024 4 3 2
+
+Input: Year = 2024, Month = 04, Weekday of month = 03, day of week = 02
+Output: 16
+
+raku .\SeizeDay.rk 2025 10 2 4
+
+Input: Year = 2025, Month = 10, Weekday of month = 02, day of week = 04
+Output: 09
+
+raku .\SeizeDay.rk 2026 8 5 3
+
+Input: Year = 2026, Month = 08, Weekday of month = 05, day of week = 03
+Output: 0
+-----------------------------------------
+=end comment
+
+
+
diff --git a/stats/pwc-challenge-236.json b/stats/pwc-challenge-236.json
new file mode 100644
index 0000000000..b95a94b489
--- /dev/null
+++ b/stats/pwc-challenge-236.json
@@ -0,0 +1,628 @@
+{
+ "subtitle" : {
+ "text" : "[Champions: 32] Last updated at 2023-10-03 11:28:05 GMT"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1,
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 236"
+ },
+ "drilldown" : {
+ "series" : [
+ {
+ "id" : "Adam Russell",
+ "name" : "Adam Russell",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "Ali Moradi",
+ "id" : "Ali Moradi"
+ },
+ {
+ "name" : "Arne Sommer",
+ "id" : "Arne Sommer",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ]
+ ],
+ "name" : "Athanasius",
+ "id" : "Athanasius"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 1
+ ],
+ [
+ "Blog",
+ 2
+ ]
+ ],
+ "name" : "Avery Adams",
+ "id" : "Avery Adams"
+ },
+ {
+ "name" : "Bob Lied",
+ "id" : "Bob Lied",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 2
+ ]
+ ]
+ },
+ {
+ "name" : "Bruce Gray",
+ "id" : "Bruce Gray",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "name" : "Cheok-Yin Fung",
+ "id" : "Cheok-Yin Fung"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "name" : "Dave Jacoby",
+ "id" : "Dave Jacoby"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "id" : "David Ferrone",
+ "name" : "David Ferrone"
+ },
+ {
+ "id" : "E. Choroba",
+ "name" : "E. Choroba",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
+ },
+ {
+ "id" : "Jaldhar H. Vyas",
+ "name" : "Jaldhar H. Vyas",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
+ },
+ {
+ "name" : "Jan Krnavek",
+ "id" : "Jan Krnavek",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ]
+ },
+ {
+ "name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
+ },
+ {
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 2
+ ]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "Lubos Kolouch",
+ "id" : "Lubos Kolouch"
+ },
+ {
+ "name" : "Luca Ferrari",
+ "id" : "Luca Ferrari",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 6
+ ]
+ ]
+ },
+ {
+ "name" : "Mark Anderson",
+ "id" : "Mark Anderson",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "name" : "Matthew Neleigh",
+ "id" : "Matthew Neleigh"
+ },
+ {
+ "id" : "Matthias Muth",
+ "name" : "Matthias Muth",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
+ },
+ {
+ "name" : "Niels van Dijke",
+ "id" : "Niels van Dijke",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "id" : "Packy Anderson",
+ "name" : "Packy Anderson"
+ },
+ {
+ "id" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
+ },
+ {
+ "id" : "rcmlz",
+ "name" : "rcmlz",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ]
+ ]
+ },
+ {
+ "id" : "Robert DiCicco",
+ "name" : "Robert DiCicco",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ]
+ ]
+ },
+ {
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ]
+ },
+ {
+ "name" : "Shimon Bollinger",
+ "id" : "Shimon Bollinger",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 2
+ ]
+ ]
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "Simon Green",
+ "id" : "Simon Green"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 2
+ ]
+ ],
+ "name" : "Thomas Kohler",
+ "id" : "Thomas Kohler"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Blog",
+ 1
+ ]
+ ],
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "id" : "Wanderdoc",
+ "name" : "Wanderdoc"
+ },
+ {
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "name" : "Yves Orton",
+ "id" : "Yves Orton"
+ }
+ ]
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ },
+ "borderWidth" : 0
+ }
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "series" : [
+ {
+ "data" : [
+ {
+ "name" : "Adam Russell",
+ "y" : 3,
+ "drilldown" : "Adam Russell"
+ },
+ {
+ "name" : "Ali Moradi",
+ "drilldown" : "Ali Moradi",
+ "y" : 5
+ },
+ {
+ "drilldown" : "Arne Sommer",
+ "y" : 3,
+ "name" : "Arne Sommer"
+ },
+ {
+ "name" : "Athanasius",
+ "y" : 4,
+ "drilldown" : "Athanasius"
+ },
+ {
+ "name" : "Avery Adams",
+ "y" : 3,
+ "drilldown" : "Avery Adams"
+ },
+ {
+ "name" : "Bob Lied",
+ "drilldown" : "Bob Lied",
+ "y" : 4
+ },
+ {
+ "name" : "Bruce Gray",
+ "y" : 2,
+ "drilldown" : "Bruce Gray"
+ },
+ {
+ "drilldown" : "Cheok-Yin Fung",
+ "y" : 2,
+ "name" : "Cheok-Yin Fung"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
+ },
+ {
+ "name" : "David Ferrone",
+ "y" : 2,
+ "drilldown" : "David Ferrone"
+ },
+ {
+ "name" : "E. Choroba",
+ "y" : 2,
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "name" : "Jaldhar H. Vyas",
+ "y" : 5,
+ "drilldown" : "Jaldhar H. Vyas"
+ },
+ {
+ "name" : "Jan Krnavek",
+ "drilldown" : "Jan Krnavek",
+ "y" : 2
+ },
+ {
+ "name" : "Jorg Sommrey",
+ "y" : 2,
+ "drilldown" : "Jorg Sommrey"
+ },
+ {
+ "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 6
+ },
+ {
+ "y" : 5,
+ "drilldown" : "Lubos Kolouch",
+ "name" : "Lubos Kolouch"
+ },
+ {
+ "drilldown" : "Luca Ferrari",
+ "y" : 8,
+ "name" : "Luca Ferrari"
+ },
+ {
+ "drilldown" : "Mark Anderson",
+ "y" : 2,
+ "name" : "Mark Anderson"
+ },
+ {
+ "drilldown" : "Matthew Neleigh",
+ "y" : 2,
+ "name" : "Matthew Neleigh"
+ },
+ {
+ "name" : "Matthias Muth",
+ "y" : 3,
+ "drilldown" : "Matthias Muth"
+ },
+ {
+ "name" : "Niels van Dijke",
+ "y" : 2,
+ "drilldown" : "Niels van Dijke"
+ },
+ {
+ "y" : 5,
+ "drilldown" : "Packy Anderson",
+ "name" : "Packy Anderson"
+ },
+ {
+ "drilldown" : "Peter Campbell Smith",
+ "y" : 3,
+ "name" : "Peter Campbell Smith"
+ },
+ {
+ "drilldown" : "rcmlz",
+ "y" : 2,
+ "name" : "rcmlz"
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Robert DiCicco",
+ "name" : "Robert DiCicco"
+ },
+ {
+ "drilldown" : "Roger Bell_West",
+ "y" : 5,
+ "name" : "Roger Bell_West"
+ },
+ {
+ "drilldown" : "Shimon Bollinger",
+ "y" : 4,
+ "name" : "Shimon Bollinger"
+ },
+ {
+ "drilldown" : "Simon Green",
+ "y" : 3,
+ "name" : "Simon Green"
+ },
+ {
+ "name" : "Thomas Kohler",
+ "drilldown" : "Thomas Kohler",
+ "y" : 4
+ },
+ {
+ "y" : 3,
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
+ },
+ {
+ "name" : "Wanderdoc",
+ "drilldown" : "Wanderdoc",
+ "y" : 2
+ },
+ {
+ "name" : "Yves Orton",
+ "drilldown" : "Yves Orton",
+ "y" : 2
+ }
+ ],
+ "name" : "The Weekly Challenge - 236",
+ "colorByPoint" : 1
+ }
+ ]
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 2138d9598e..0933bd5c10 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,372 +1,17 @@
{
- "chart" : {
- "type" : "column"
+ "xAxis" : {
+ "type" : "category"
},
"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/>",
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
"followPointer" : 1
},
- "title" : {
- "text" : "The Weekly Challenge - 236"
- },
- "series" : [
- {
- "colorByPoint" : 1,
- "name" : "The Weekly Challenge - 236",
- "data" : [
- {
- "y" : 3,
- "drilldown" : "Adam Russell",
- "name" : "Adam Russell"
- },
- {
- "name" : "Ali Moradi",
- "y" : 5,
- "drilldown" : "Ali Moradi"
- },
- {
- "name" : "Arne Sommer",
- "y" : 3,
- "drilldown" : "Arne Sommer"
- },
- {
- "drilldown" : "Athanasius",
- "y" : 4,
- "name" : "Athanasius"
- },
- {
- "y" : 3,
- "drilldown" : "Avery Adams",
- "name" : "Avery Adams"
- },
- {
- "y" : 4,
- "drilldown" : "Bob Lied",
- "name" : "Bob Lied"
- },
- {
- "name" : "Bruce Gray",
- "y" : 2,
- "drilldown" : "Bruce Gray"
- },
- {
- "name" : "Cheok-Yin Fung",
- "drilldown" : "Cheok-Yin Fung",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby"
- },
- {
- "y" : 2,
- "drilldown" : "David Ferrone",
- "name" : "David Ferrone"
- },
- {
- "name" : "E. Choroba",
- "y" : 2,
- "drilldown" : "E. Choroba"
- },
- {
- "name" : "Jaldhar H. Vyas",
- "drilldown" : "Jaldhar H. Vyas",
- "y" : 5
- },
- {
- "drilldown" : "Jan Krnavek",
- "y" : 2,
- "name" : "Jan Krnavek"
- },
- {
- "name" : "Jorg Sommrey",
- "drilldown" : "Jorg Sommrey",
- "y" : 2
- },
- {
- "name" : "Laurent Rosenfeld",
- "y" : 6,
- "drilldown" : "Laurent Rosenfeld"
- },
- {
- "name" : "Lubos Kolouch",
- "y" : 5,
- "drilldown" : "Lubos Kolouch"
- },
- {
- "drilldown" : "Luca Ferrari",
- "y" : 8,
- "name" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Matthew Neleigh",
- "name" : "Matthew Neleigh"
- },
- {
- "name" : "Matthias Muth",
- "drilldown" : "Matthias Muth",
- "y" : 3
- },
-