aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2024-02-20 15:39:29 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2024-02-20 15:39:29 +0000
commit43ba87df5e3aaa950fcf8ef55152105fe311276f (patch)
treed9f91c84e0945c530c10aa28ca71c14cba3cd9ff
parent1cdfd5aafd6e3b8e6411dc9373e415996ced3c91 (diff)
downloadperlweeklychallenge-club-43ba87df5e3aaa950fcf8ef55152105fe311276f.tar.gz
perlweeklychallenge-club-43ba87df5e3aaa950fcf8ef55152105fe311276f.tar.bz2
perlweeklychallenge-club-43ba87df5e3aaa950fcf8ef55152105fe311276f.zip
- Added solutions by Dave Jacoby.
- Added solutions by Eric Cheung. - Added solutions by Mohammad Meraj Zia. - Added solutions by Mark Anderson. - Added solutions by Luca Ferrari. - Added solutions by Bob Lied. - Added solutions by Jaldhar H. Vyas. - Added solutions by David Ferrone. - Added solutions by Thomas Kohler. - Added solutions by Mariano Spadaccini. - Added solutions by PokGoPun. - Added solutions by Roger Bell_West.
-rwxr-xr-xchallenge-257/eric-cheung/python/ch-1.py9
-rwxr-xr-xchallenge-257/eric-cheung/python/ch-2.py35
-rw-r--r--challenge-257/ziameraj16/java/SmallerThanCurrent.java24
-rw-r--r--stats/pwc-challenge-162.json534
-rw-r--r--stats/pwc-challenge-256.json684
-rw-r--r--stats/pwc-current.json629
-rw-r--r--stats/pwc-language-breakdown-summary.json64
-rw-r--r--stats/pwc-language-breakdown.json3549
-rw-r--r--stats/pwc-leaders.json770
-rw-r--r--stats/pwc-summary-1-30.json100
-rw-r--r--stats/pwc-summary-121-150.json40
-rw-r--r--stats/pwc-summary-151-180.json46
-rw-r--r--stats/pwc-summary-181-210.json110
-rw-r--r--stats/pwc-summary-211-240.json36
-rw-r--r--stats/pwc-summary-241-270.json102
-rw-r--r--stats/pwc-summary-271-300.json108
-rw-r--r--stats/pwc-summary-301-330.json58
-rw-r--r--stats/pwc-summary-31-60.json108
-rw-r--r--stats/pwc-summary-61-90.json42
-rw-r--r--stats/pwc-summary-91-120.json46
-rw-r--r--stats/pwc-summary.json688
21 files changed, 4038 insertions, 3744 deletions
diff --git a/challenge-257/eric-cheung/python/ch-1.py b/challenge-257/eric-cheung/python/ch-1.py
new file mode 100755
index 0000000000..5b438b92e1
--- /dev/null
+++ b/challenge-257/eric-cheung/python/ch-1.py
@@ -0,0 +1,9 @@
+
+## arrInt = [5, 2, 1, 6] ## Example 1
+## arrInt = [1, 2, 0, 3] ## Example 2
+## arrInt = [0, 1] ## Example 3
+arrInt = [9, 4, 9, 2] ## Example 4
+
+arrOutput = [len([arrInt[nColLoop] for nColLoop in range(len(arrInt)) if nColLoop != nRowLoop and arrInt[nColLoop] < arrInt[nRowLoop]]) for nRowLoop in range(len(arrInt))]
+
+print (arrOutput)
diff --git a/challenge-257/eric-cheung/python/ch-2.py b/challenge-257/eric-cheung/python/ch-2.py
new file mode 100755
index 0000000000..3b13af9e91
--- /dev/null
+++ b/challenge-257/eric-cheung/python/ch-2.py
@@ -0,0 +1,35 @@
+
+## arrMatrix = [[1, 0, 0, 1], [0, 1, 0, 2], [0, 0, 1, 3]]
+## arrMatrix = [[1, 1, 0], [0, 1, 0], [0, 0, 0]] ## Example 1
+## arrMatrix = [[0, 1, -2, 0, 1], [0, 0, 0, 1, 3], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]] ## Example 2
+## arrMatrix = [[1, 0, 0, 4], [0, 1, 0, 7], [0, 0, 1, -1]] ## Example 3
+## arrMatrix = [[0, 1, -2, 0, 1], [0, 0, 0, 0, 0], [0, 0, 0, 1, 3], [0, 0, 0, 0, 0]] ## Example 4
+## arrMatrix = [[0, 1, 0], [1, 0, 0], [0, 0, 0]] ## Example 5
+arrMatrix = [[4, 0, 0, 0], [0, 1, 0, 7], [0, 0, 1, -1]] ## Example 6
+
+t_arrMatrix = [arrLoop for arrLoop in zip(*arrMatrix)]
+
+## print (t_arrMatrix)
+
+arrLead_1_Pos = [-1 if len([1 for arrColLoop in arrRowLoop if arrColLoop == 1]) == 0 else min([nIndx for nIndx, arrColLoop in enumerate(arrRowLoop) if arrColLoop == 1]) for arrRowLoop in arrMatrix]
+
+## print (arrLead_1_Pos)
+
+arrLead_1_Positive = [nLoop for nLoop in arrLead_1_Pos if nLoop >= 0]
+arrLead_1_Pos_Positive = [nIndx for nIndx, nLoop in enumerate(arrLead_1_Pos) if nLoop >= 0]
+arrLead_1_Pos_Negative = [nIndx for nIndx, nLoop in enumerate(arrLead_1_Pos) if nLoop < 0]
+
+## print (arrLead_1_Positive)
+## print (arrLead_1_Pos_Positive)
+## print (arrLead_1_Pos_Negative)
+
+bResult = (sorted(arrLead_1_Positive) == arrLead_1_Positive)
+if bResult and len(arrLead_1_Pos_Negative) > 0:
+ bResult = (arrLead_1_Pos_Positive[-1] < arrLead_1_Pos_Negative[0])
+if bResult:
+ for arrLoop in t_arrMatrix[:-1]:
+ if sum([0 if rLoop == 0 else 1 for rLoop in arrLoop]) > 1:
+ bResult = False
+ break
+
+print (1 if bResult else 0)
diff --git a/challenge-257/ziameraj16/java/SmallerThanCurrent.java b/challenge-257/ziameraj16/java/SmallerThanCurrent.java
new file mode 100644
index 0000000000..28c1047c0a
--- /dev/null
+++ b/challenge-257/ziameraj16/java/SmallerThanCurrent.java
@@ -0,0 +1,24 @@
+import java.util.*;
+import java.util.stream.Collectors;
+
+public class SmallerThanCurrent {
+
+ public static void main(String[] args) {
+ Scanner scanner = new Scanner(System.in);
+ System.out.println("Enter comma separate numbers");
+ final List<Integer> original = Arrays.stream(scanner.nextLine().split(",")).map(Integer::new).collect(Collectors.toList());
+ List<Integer> sorted = new ArrayList<>(original);
+ Collections.sort(sorted);
+ Map<Integer, Integer> map = new HashMap<>();
+ for (int i = 0; i < sorted.size(); i++) {
+ if (!map.containsKey(sorted.get(i))) {
+ map.put(sorted.get(i), i);
+ }
+ }
+ List<Integer> output = new ArrayList<>();
+ for (int i : original) {
+ output.add(map.get(i));
+ }
+ System.out.println(output);
+ }
+}
diff --git a/stats/pwc-challenge-162.json b/stats/pwc-challenge-162.json
index e9ef534e55..de25d5afb8 100644
--- a/stats/pwc-challenge-162.json
+++ b/stats/pwc-challenge-162.json
@@ -1,228 +1,18 @@
{
- "plotOptions" : {
- "series" : {
- "borderWidth" : 0,
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- }
- }
- },
- "legend" : {
- "enabled" : 0
+ "subtitle" : {
+ "text" : "[Champions: 36] Last updated at 2024-02-20 14:12:37 GMT"
},
"chart" : {
"type" : "column"
},
- "xAxis" : {
- "type" : "category"
- },
- "subtitle" : {
- "text" : "[Champions: 36] Last updated at 2022-10-11 13:24:50 GMT"
- },
"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/>",
+ "followPointer" : 1
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "series" : [
- {
- "colorByPoint" : 1,
- "name" : "The Weekly Challenge - 162",
- "data" : [
- {
- "name" : "Adam Russell",
- "drilldown" : "Adam Russell",
- "y" : 3
- },
- {
- "y" : 2,
- "drilldown" : "Alexander Pankoff",
- "name" : "Alexander Pankoff"
- },
- {
- "drilldown" : "Arne Sommer",
- "name" : "Arne Sommer",
- "y" : 3
- },
- {
- "name" : "Athanasius",
- "drilldown" : "Athanasius",
- "y" : 4
- },
- {
- "drilldown" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung",
- "y" : 3
- },
- {
- "name" : "Colin Crain",
- "drilldown" : "Colin Crain",
- "y" : 4
- },
- {
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby",
- "y" : 3
- },
- {
- "drilldown" : "Duncan C. White",
- "name" : "Duncan C. White",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "E. Choroba",
- "name" : "E. Choroba"
- },
- {
- "y" : 1,
- "name" : "Feng Chang",
- "drilldown" : "Feng Chang"
- },
- {
- "drilldown" : "Flavio Poletti",
- "name" : "Flavio Poletti",
- "y" : 6
- },
- {
- "drilldown" : "Jaldhar H. Vyas",
- "name" : "Jaldhar H. Vyas",
- "y" : 3
- },
- {
- "y" : 3,
- "name" : "James Smith",
- "drilldown" : "James Smith"
- },
- {
- "y" : 1,
- "drilldown" : "Jan Krnavek",
- "name" : "Jan Krnavek"
- },
- {
- "name" : "Jorg Sommrey",
- "drilldown" : "Jorg Sommrey",
- "y" : 2
- },
- {
- "name" : "Julien Fiegehenn",
- "drilldown" : "Julien Fiegehenn",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Kueppo Wesley",
- "name" : "Kueppo Wesley"
- },
- {
- "name" : "Laurent Rosenfeld",
- "drilldown" : "Laurent Rosenfeld",
- "y" : 5
- },
- {
- "y" : 1,
- "drilldown" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
- },
- {
- "y" : 2,
- "drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari"
- },
- {
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson",
- "y" : 2
- },
- {
- "y" : 2,
- "drilldown" : "Marton Polgar",
- "name" : "Marton Polgar"
- },
- {
- "y" : 2,
- "name" : "Matthew Neleigh",
- "drilldown" : "Matthew Neleigh"
- },
- {
- "y" : 1,
- "drilldown" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
- },
- {
- "y" : 2,
- "drilldown" : "Niels van Dijke",
- "name" : "Niels van Dijke"
- },
- {
- "y" : 2,
- "name" : "Paulo Custodio",
- "drilldown" : "Paulo Custodio"
- },
- {
- "y" : 2,
- "drilldown" : "Pete Houston",
- "name" : "Pete Houston"
- },
- {
- "drilldown" : "Peter Campbell Smith",
- "name" : "Peter Campbell Smith",
- "y" : 3
- },
- {
- "name" : "PokGoPun",
- "drilldown" : "PokGoPun",
- "y" : 2
- },
- {
- "drilldown" : "Rick Bychowski",
- "name" : "Rick Bychowski",
- "y" : 2
- },
- {
- "y" : 2,
- "name" : "Robert DiCicco",
- "drilldown" : "Robert DiCicco"
- },
- {
- "y" : 2,
- "drilldown" : "Robert Ransbottom",
- "name" : "Robert Ransbottom"
- },
- {
- "name" : "Roger Bell_West",
- "drilldown" : "Roger Bell_West",
- "y" : 5
- },
- {
- "y" : 4,
- "name" : "Ryan Thompson",
- "drilldown" : "Ryan Thompson"
- },
- {
- "y" : 3,
- "name" : "Ulrich Rieke",
- "drilldown" : "Ulrich Rieke"
- },
- {
- "y" : 3,
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
- }
- ]
- }
- ],
"drilldown" : {
"series" : [
{
- "name" : "Adam Russell",
- "id" : "Adam Russell",
"data" : [
[
"Perl",
@@ -232,7 +22,9 @@
"Blog",
2
]
- ]
+ ],
+ "name" : "Adam Russell",
+ "id" : "Adam Russell"
},
{
"data" : [
@@ -245,8 +37,8 @@
"name" : "Alexander Pankoff"
},
{
- "id" : "Arne Sommer",
"name" : "Arne Sommer",
+ "id" : "Arne Sommer",
"data" : [
[
"Raku",
@@ -259,8 +51,6 @@
]
},
{
- "name" : "Athanasius",
- "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -270,11 +60,11 @@
"Raku",
2
]
- ]
+ ],
+ "id" : "Athanasius",
+ "name" : "Athanasius"
},
{
- "id" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
@@ -284,9 +74,13 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Cheok-Yin Fung",
+ "id" : "Cheok-Yin Fung"
},
{
+ "id" : "Colin Crain",
+ "name" : "Colin Crain",
"data" : [
[
"Perl",
@@ -296,9 +90,7 @@
"Blog",
2
]
- ],
- "name" : "Colin Crain",
- "id" : "Colin Crain"
+ ]
},
{
"data" : [
@@ -311,8 +103,8 @@
1
]
],
- "id" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ "name" : "Dave Jacoby",
+ "id" : "Dave Jacoby"
},
{
"data" : [
@@ -335,14 +127,14 @@
]
},
{
+ "id" : "Feng Chang",
+ "name" : "Feng Chang",
"data" : [
[
"Raku",
1
]
- ],
- "name" : "Feng Chang",
- "id" : "Feng Chang"
+ ]
},
{
"id" : "Flavio Poletti",
@@ -363,16 +155,16 @@
]
},
{
- "id" : "Jaldhar H. Vyas",
"name" : "Jaldhar H. Vyas",
+ "id" : "Jaldhar H. Vyas",
"data" : [
[
"Perl",
- 1
+ 2
],
[
"Raku",
- 1
+ 2
],
[
"Blog",
@@ -381,8 +173,8 @@
]
},
{
- "name" : "James Smith",
"id" : "James Smith",
+ "name" : "James Smith",
"data" : [
[
"Perl",
@@ -395,14 +187,14 @@
]
},
{
+ "name" : "Jan Krnavek",
+ "id" : "Jan Krnavek",
"data" : [
[
"Raku",
1
]
- ],
- "id" : "Jan Krnavek",
- "name" : "Jan Krnavek"
+ ]
},
{
"name" : "Jorg Sommrey",
@@ -425,14 +217,14 @@
"id" : "Julien Fiegehenn"
},
{
+ "name" : "Kueppo Wesley",
+ "id" : "Kueppo Wesley",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Kueppo Wesley",
- "id" : "Kueppo Wesley"
+ ]
},
{
"name" : "Laurent Rosenfeld",
@@ -453,24 +245,24 @@
]
},
{
- "id" : "Lubos Kolouch",
- "name" : "Lubos Kolouch",
"data" : [
[
"Perl",
1
]
- ]
+ ],
+ "name" : "Lubos Kolouch",
+ "id" : "Lubos Kolouch"
},
{
- "name" : "Luca Ferrari",
- "id" : "Luca Ferrari",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "name" : "Luca Ferrari",
+ "id" : "Luca Ferrari"
},
{
"id" : "Mark Anderson",
@@ -483,14 +275,14 @@
]
},
{
- "id" : "Marton Polgar",
- "name" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
- ]
+ ],
+ "id" : "Marton Polgar",
+ "name" : "Marton Polgar"
},
{
"data" : [
@@ -499,22 +291,22 @@
2
]
],
- "id" : "Matthew Neleigh",
- "name" : "Matthew Neleigh"
+ "name" : "Matthew Neleigh",
+ "id" : "Matthew Neleigh"
},
{
+ "id" : "Mohammad Sajid Anwar",
+ "name" : "Mohammad Sajid Anwar",
"data" : [
[
"Perl",
1
]
- ],
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
+ ]
},
{
- "name" : "Niels van Dijke",
"id" : "Niels van Dijke",
+ "name" : "Niels van Dijke",
"data" : [
[
"Perl",
@@ -567,14 +359,14 @@
]
},
{
+ "id" : "Rick Bychowski",
+ "name" : "Rick Bychowski",
"data" : [
[
"Raku",
2
]
- ],
- "id" : "Rick Bychowski",
- "name" : "Rick Bychowski"
+ ]
},
{
"id" : "Robert DiCicco",
@@ -597,8 +389,8 @@
2
]
],
- "id" : "Robert Ransbottom",
- "name" : "Robert Ransbottom"
+ "name" : "Robert Ransbottom",
+ "id" : "Robert Ransbottom"
},
{
"data" : [
@@ -619,8 +411,6 @@
"id" : "Roger Bell_West"
},
{
- "id" : "Ryan Thompson",
- "name" : "Ryan Thompson",
"data" : [
[
"Perl",
@@ -630,9 +420,13 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Ryan Thompson",
+ "name" : "Ryan Thompson"
},
{
+ "name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke",
"data" : [
[
"Perl",
@@ -642,13 +436,11 @@
"Raku",
2
]
- ],
- "id" : "Ulrich Rieke",
- "name" : "Ulrich Rieke"
+ ]
},
{
- "name" : "W. Luis Mochan",
"id" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -662,6 +454,214 @@
}
]
},
+ "series" : [
+ {
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 162",
+ "data" : [
+ {
+ "y" : 3,
+ "drilldown" : "Adam Russell",
+ "name" : "Adam Russell"
+ },
+ {
+ "name" : "Alexander Pankoff",
+ "y" : 2,
+ "drilldown" : "Alexander Pankoff"
+ },
+ {
+ "y" : 3,
+ "drilldown" : "Arne Sommer",
+ "name" : "Arne Sommer"
+ },
+ {
+ "drilldown" : "Athanasius",
+ "y" : 4,
+ "name" : "Athanasius"
+ },
+ {
+ "name" : "Cheok-Yin Fung",
+ "y" : 3,
+ "drilldown" : "Cheok-Yin Fung"
+ },
+ {
+ "y" : 4,
+ "drilldown" : "Colin Crain",
+ "name" : "Colin Crain"
+ },
+ {
+ "name" : "Dave Jacoby",
+ "drilldown" : "Dave Jacoby",
+ "y" : 3
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Duncan C. White",
+ "name" : "Duncan C. White"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "E. Choroba",
+ "name" : "E. Choroba"
+ },
+ {
+ "name" : "Feng Chang",
+ "drilldown" : "Feng Chang",
+ "y" : 1
+ },
+ {
+ "drilldown" : "Flavio Poletti",
+ "y" : 6,
+ "name" : "Flavio Poletti"
+ },
+ {
+ "name" : "Jaldhar H. Vyas",
+ "y" : 5,
+ "drilldown" : "Jaldhar H. Vyas"
+ },
+ {
+ "name" : "James Smith",
+ "drilldown" : "James Smith",
+ "y" : 3
+ },
+ {
+ "y" : 1,
+ "drilldown" : "Jan Krnavek",
+ "name" : "Jan Krnavek"
+ },
+ {
+ "name" : "Jorg Sommrey",
+ "drilldown" : "Jorg Sommrey",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Julien Fiegehenn",
+ "y" : 2,
+ "name" : "Julien Fiegehenn"
+ },
+ {
+ "name" : "Kueppo Wesley",
+ "drilldown" : "Kueppo Wesley",
+ "y" : 2
+ },
+ {
+ "y" : 5,
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "y" : 1,
+ "drilldown" : "Lubos Kolouch"
+ },
+ {
+ "drilldown" : "Luca Ferrari",
+ "y" : 2,
+ "name" : "Luca Ferrari"
+ },
+ {
+ "name" : "Mark Anderson",
+ "drilldown" : "Mark Anderson",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Marton Polgar",
+ "name" : "Marton Polgar"
+ },
+ {
+ "name" : "Matthew Neleigh",
+ "drilldown" : "Matthew Neleigh",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Mohammad Sajid Anwar",
+ "y" : 1,
+ "name" : "Mohammad Sajid Anwar"
+ },
+ {
+ "name" : "Niels van Dijke",
+ "y" : 2,
+ "drilldown" : "Niels van Dijke"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Paulo Custodio",
+ "name" : "Paulo Custodio"
+ },
+ {
+ "drilldown" : "Pete Houston",
+ "y" : 2,
+ "name" : "Pete Houston"
+ },
+ {
+ "y" : 3,
+ "drilldown" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith"
+ },
+ {
+ "drilldown" : "PokGoPun",
+ "y" : 2,
+ "name" : "PokGoPun"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Rick Bychowski",
+ "name" : "Rick Bychowski"
+ },
+ {
+ "name" : "Robert DiCicco",
+ "y" : 2,
+ "drilldown" : "Robert DiCicco"
+ },
+ {
+ "name" : "Robert Ransbottom",
+ "y" : 2,
+ "drilldown" : "Robert Ransbottom"
+ },
+ {
+ "y" : 5,
+ "drilldown" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
+ },
+ {
+ "name" : "Ryan Thompson",
+ "y" : 4,
+ "drilldown" : "Ryan Thompson"
+ },
+ {
+ "name" : "Ulrich Rieke",
+ "drilldown" : "Ulrich Rieke",
+ "y" : 3
+ },
+ {
+ "drilldown" : "W. Luis Mochan",
+ "y" : 3,
+ "name" : "W. Luis Mochan"
+ }
+ ]
+ }
+ ],
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
"title" : {
"text" : "The Weekly Challenge - 162"
}
diff --git a/stats/pwc-challenge-256.json b/stats/pwc-challenge-256.json
new file mode 100644
index 0000000000..dd320ad75e
--- /dev/null
+++ b/stats/pwc-challenge-256.json
@@ -0,0 +1,684 @@
+{
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 256"
+ },
+ "legend" : {
+ "enabled" : 0
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 36] Last updated at 2024-02-20 14:12:38 GMT"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "series" : [
+ {
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 256",
+ "data" : [
+ {
+ "drilldown" : "Ali Moradi",
+ "y" : 3,
+ "name" : "Ali Moradi"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Andrew Shitov",
+ "name" : "Andrew Shitov"
+ },
+ {
+ "name" : "Arne Sommer",
+ "drilldown" : "Arne Sommer",
+ "y" : 3
+ },
+ {
+ "name" : "Athanasius",
+ "y" : 4,
+ "drilldown" : "Athanasius"
+ },
+ {
+ "name" : "BarrOff",
+ "drilldown" : "BarrOff",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Bob Lied",
+ "y" : 2,
+ "name" : "Bob Lied"
+ },
+ {
+ "drilldown" : "Bruce Gray",
+ "y" : 2,
+ "name" : "Bruce Gray"
+ },
+ {
+ "drilldown" : "Cheok-Yin Fung",
+ "y" : 2,
+ "name" : "Cheok-Yin Fung"
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Clifton Wood",
+ "name" : "Clifton Wood"
+ },
+ {
+ "name" : "Dave Jacoby",
+ "drilldown" : "Dave Jacoby",
+ "y" : 3
+ },
+ {
+ "y" : 2,
+ "drilldown" : "David Ferrone",
+ "name" : "David Ferrone"
+ },
+ {
+ "name" : "E. Choroba",
+ "y" : 2,
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "y" : 5,
+ "drilldown" : "Jaldhar H. Vyas",
+ "name" : "Jaldhar H. Vyas"
+ },
+ {
+ "name" : "Jan Krnavek",
+ "drilldown" : "Jan Krnavek",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Jorg Sommrey",
+ "y" : 3,
+ "name" : "Jorg Sommrey"
+ },
+ {
+ "drilldown" : "Kjetil Skotheim",
+ "y" : 2,
+ "name" : "Kjetil Skotheim"
+ },
+ {
+ "y" : 6,
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
+ },
+ {
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch",
+ "