From 87c0bedd3ccc6c2459b62fc91429676507504d15 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 21 May 2023 20:24:45 +0100 Subject: - Added solutions by Matthias Muth. - Added solutions by Shimon Bollinger. - Added solutions by Roger Bell_West. - Added solutions by Lubos Kolouch. - Added solutions by Avery Adams. - Added solutions by Jorg Sommrey. - Added solutions by Athanasius. - Added solutions by Jan Krnavek. - Added solutions by Israel C. Batista. --- challenge-215/Week 215/simon-dueck/README | 1 - challenge-215/Week 215/simon-dueck/fsharp/ch-1.fsx | 27 - challenge-215/Week 215/simon-dueck/fsharp/ch-2.fsx | 26 - challenge-215/simon-dueck/README | 1 + challenge-215/simon-dueck/fsharp/ch-1.fsx | 27 + challenge-215/simon-dueck/fsharp/ch-2.fsx | 26 + challenge-217/avery-adams/blog.txt | 1 + challenge-217/avery-adams/blog1.txt | 1 + challenge-217/avery-adams/blogs.txt | 2 - members.json | 1 + stats/pwc-challenge-071.json | 415 +- stats/pwc-current.json | 349 +- stats/pwc-language-breakdown-summary.json | 68 +- stats/pwc-language-breakdown.json | 8506 ++++++++++---------- stats/pwc-leaders.json | 782 +- stats/pwc-summary-1-30.json | 108 +- stats/pwc-summary-121-150.json | 136 +- stats/pwc-summary-151-180.json | 106 +- stats/pwc-summary-181-210.json | 116 +- stats/pwc-summary-211-240.json | 56 +- stats/pwc-summary-241-270.json | 96 +- stats/pwc-summary-271-300.json | 88 +- stats/pwc-summary-31-60.json | 118 +- stats/pwc-summary-61-90.json | 94 +- stats/pwc-summary-91-120.json | 126 +- stats/pwc-summary.json | 56 +- 26 files changed, 5739 insertions(+), 5594 deletions(-) delete mode 100644 challenge-215/Week 215/simon-dueck/README delete mode 100644 challenge-215/Week 215/simon-dueck/fsharp/ch-1.fsx delete mode 100644 challenge-215/Week 215/simon-dueck/fsharp/ch-2.fsx create mode 100644 challenge-215/simon-dueck/fsharp/ch-1.fsx create mode 100644 challenge-215/simon-dueck/fsharp/ch-2.fsx create mode 100644 challenge-217/avery-adams/blog.txt create mode 100644 challenge-217/avery-adams/blog1.txt delete mode 100644 challenge-217/avery-adams/blogs.txt diff --git a/challenge-215/Week 215/simon-dueck/README b/challenge-215/Week 215/simon-dueck/README deleted file mode 100644 index 1356b2f16f..0000000000 --- a/challenge-215/Week 215/simon-dueck/README +++ /dev/null @@ -1 +0,0 @@ -Solution by Simon Dueck \ No newline at end of file diff --git a/challenge-215/Week 215/simon-dueck/fsharp/ch-1.fsx b/challenge-215/Week 215/simon-dueck/fsharp/ch-1.fsx deleted file mode 100644 index 1367346b2f..0000000000 --- a/challenge-215/Week 215/simon-dueck/fsharp/ch-1.fsx +++ /dev/null @@ -1,27 +0,0 @@ -(* - You are given a list of words (alphabetic characters only) of same size. - - Write a script to remove all words not sorted alphabetically and print - the number of words in the list that are not alphabetically sorted. -*) - -let word_is_not_sorted (word: string): bool = - let rec loop (letters: char list): bool = - match letters with - | x::y::xs when x < y -> loop (y::xs) - | [x] -> false - | _ -> true - in loop (Seq.toList word) - -let count_unsorted (words: string list): int = - List.filter word_is_not_sorted words |> List.length - - -let words_a = ["abc"; "xyz"; "tsu"] -printfn $"{count_unsorted words_a}" - -let words_b = ["rat"; "cab"; "dad"] -printfn $"{count_unsorted words_b}" - -let words_c = ["x"; "y"; "z"] -printfn $"{count_unsorted words_c}" diff --git a/challenge-215/Week 215/simon-dueck/fsharp/ch-2.fsx b/challenge-215/Week 215/simon-dueck/fsharp/ch-2.fsx deleted file mode 100644 index 4c3ca66711..0000000000 --- a/challenge-215/Week 215/simon-dueck/fsharp/ch-2.fsx +++ /dev/null @@ -1,26 +0,0 @@ -(* - You are given a list of numbers having just 0 and 1. You are also given placement count (>=1). - - Write a script to find out if it is possible to replace 0 with 1 in the given list. - The only condition is that you can only replace when there is no 1 on either side. - Print 1 if it is possible otherwise 0. -*) - -let rec replace_zero (arr: int list) (count: int): int = - match arr with - | _ when count = 0 -> 1 // all are placed - | 0::0::xs -> replace_zero xs (count - 1) // can replace; skip next index as it will not be replaceable - | [0] -> replace_zero [] (count - 1) // end of the list is zero and replacable - | 1::0::xs -> replace_zero xs count // current and next index are not replaceable - | _::xs -> replace_zero xs count // current index is not replaceable but next potentially is or is a one - | _ -> 0 // end of list with count not reaching zero - -let numbers_a = [1; 0; 0; 0; 1] -let numbers_b = [1; 0; 0; 0; 1] -let numbers_c = [1; 0; 0; 0; 0; 0; 0; 0; 1] -let numbers_d = [1; 0; 0; 0; 1; 0; 0; 1] - -printfn $"{replace_zero numbers_a 1}" -printfn $"{replace_zero numbers_b 2}" -printfn $"{replace_zero numbers_c 3}" -printfn $"{replace_zero numbers_d 2}" \ No newline at end of file diff --git a/challenge-215/simon-dueck/README b/challenge-215/simon-dueck/README index e69de29bb2..1356b2f16f 100644 --- a/challenge-215/simon-dueck/README +++ b/challenge-215/simon-dueck/README @@ -0,0 +1 @@ +Solution by Simon Dueck \ No newline at end of file diff --git a/challenge-215/simon-dueck/fsharp/ch-1.fsx b/challenge-215/simon-dueck/fsharp/ch-1.fsx new file mode 100644 index 0000000000..1367346b2f --- /dev/null +++ b/challenge-215/simon-dueck/fsharp/ch-1.fsx @@ -0,0 +1,27 @@ +(* + You are given a list of words (alphabetic characters only) of same size. + + Write a script to remove all words not sorted alphabetically and print + the number of words in the list that are not alphabetically sorted. +*) + +let word_is_not_sorted (word: string): bool = + let rec loop (letters: char list): bool = + match letters with + | x::y::xs when x < y -> loop (y::xs) + | [x] -> false + | _ -> true + in loop (Seq.toList word) + +let count_unsorted (words: string list): int = + List.filter word_is_not_sorted words |> List.length + + +let words_a = ["abc"; "xyz"; "tsu"] +printfn $"{count_unsorted words_a}" + +let words_b = ["rat"; "cab"; "dad"] +printfn $"{count_unsorted words_b}" + +let words_c = ["x"; "y"; "z"] +printfn $"{count_unsorted words_c}" diff --git a/challenge-215/simon-dueck/fsharp/ch-2.fsx b/challenge-215/simon-dueck/fsharp/ch-2.fsx new file mode 100644 index 0000000000..4c3ca66711 --- /dev/null +++ b/challenge-215/simon-dueck/fsharp/ch-2.fsx @@ -0,0 +1,26 @@ +(* + You are given a list of numbers having just 0 and 1. You are also given placement count (>=1). + + Write a script to find out if it is possible to replace 0 with 1 in the given list. + The only condition is that you can only replace when there is no 1 on either side. + Print 1 if it is possible otherwise 0. +*) + +let rec replace_zero (arr: int list) (count: int): int = + match arr with + | _ when count = 0 -> 1 // all are placed + | 0::0::xs -> replace_zero xs (count - 1) // can replace; skip next index as it will not be replaceable + | [0] -> replace_zero [] (count - 1) // end of the list is zero and replacable + | 1::0::xs -> replace_zero xs count // current and next index are not replaceable + | _::xs -> replace_zero xs count // current index is not replaceable but next potentially is or is a one + | _ -> 0 // end of list with count not reaching zero + +let numbers_a = [1; 0; 0; 0; 1] +let numbers_b = [1; 0; 0; 0; 1] +let numbers_c = [1; 0; 0; 0; 0; 0; 0; 0; 1] +let numbers_d = [1; 0; 0; 0; 1; 0; 0; 1] + +printfn $"{replace_zero numbers_a 1}" +printfn $"{replace_zero numbers_b 2}" +printfn $"{replace_zero numbers_c 3}" +printfn $"{replace_zero numbers_d 2}" \ No newline at end of file diff --git a/challenge-217/avery-adams/blog.txt b/challenge-217/avery-adams/blog.txt new file mode 100644 index 0000000000..bc33be536c --- /dev/null +++ b/challenge-217/avery-adams/blog.txt @@ -0,0 +1 @@ +https://blogs.perl.org/users/oldtechaa/2023/05/perl-weekly-challenge-217---flattening-the-matrix.html diff --git a/challenge-217/avery-adams/blog1.txt b/challenge-217/avery-adams/blog1.txt new file mode 100644 index 0000000000..31388830bf --- /dev/null +++ b/challenge-217/avery-adams/blog1.txt @@ -0,0 +1 @@ +https://dev.to/oldtechaa/perl-weekly-challenge-217-flattening-the-matrix-4mk3 diff --git a/challenge-217/avery-adams/blogs.txt b/challenge-217/avery-adams/blogs.txt deleted file mode 100644 index de43b255fe..0000000000 --- a/challenge-217/avery-adams/blogs.txt +++ /dev/null @@ -1,2 +0,0 @@ -https://blogs.perl.org/users/oldtechaa/2023/05/perl-weekly-challenge-217---flattening-the-matrix.html -https://dev.to/oldtechaa/perl-weekly-challenge-217-flattening-the-matrix-4mk3 diff --git a/members.json b/members.json index bdd8098e79..1b2bf6dfa2 100644 --- a/members.json +++ b/members.json @@ -223,6 +223,7 @@ "rob-van-dam" : "Robert Van Dam", "robert-dicicco" : "Robert DiCicco", "roger-bell-west" : "Roger Bell_West", + "rozcovo" : "Israel C. Batista", "ruben-westerberg" : "Ruben Westerberg", "ryan-thompson" : "Ryan Thompson", "saiftynet" : "Saif Ahmed", diff --git a/stats/pwc-challenge-071.json b/stats/pwc-challenge-071.json index 5656c49dd1..81444a8056 100644 --- a/stats/pwc-challenge-071.json +++ b/stats/pwc-challenge-071.json @@ -1,15 +1,174 @@ { + "series" : [ + { + "data" : [ + { + "y" : 4, + "drilldown" : "Andrew Shitov", + "name" : "Andrew Shitov" + }, + { + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer", + "y" : 4 + }, + { + "name" : "Athanasius", + "y" : 4, + "drilldown" : "Athanasius" + }, + { + "name" : "Ben Davies", + "drilldown" : "Ben Davies", + "y" : 2 + }, + { + "drilldown" : "Bob Lied", + "y" : 2, + "name" : "Bob Lied" + }, + { + "y" : 2, + "drilldown" : "Cheok-Yin Fung", + "name" : "Cheok-Yin Fung" + }, + { + "name" : "Colin Crain", + "y" : 5, + "drilldown" : "Colin Crain" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 3, + "name" : "Dave Jacoby" + }, + { + "y" : 2, + "drilldown" : "E. Choroba", + "name" : "E. Choroba" + }, + { + "name" : "Jaldhar H. Vyas", + "y" : 5, + "drilldown" : "Jaldhar H. Vyas" + }, + { + "y" : 5, + "drilldown" : "Javier Luque", + "name" : "Javier Luque" + }, + { + "y" : 2, + "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey" + }, + { + "name" : "Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld", + "y" : 4 + }, + { + "name" : "Lubos Kolouch", + "y" : 2, + "drilldown" : "Lubos Kolouch" + }, + { + "name" : "Luca Ferrari", + "y" : 4, + "drilldown" : "Luca Ferrari" + }, + { + "name" : "Mark Anderson", + "y" : 1, + "drilldown" : "Mark Anderson" + }, + { + "name" : "Mohammad S Anwar", + "y" : 7, + "drilldown" : "Mohammad S Anwar" + }, + { + "drilldown" : "Myoungjin Jeon", + "y" : 4, + "name" : "Myoungjin Jeon" + }, + { + "y" : 2, + "drilldown" : "Niels van Dijke", + "name" : "Niels van Dijke" + }, + { + "name" : "Noud Aldenhoven", + "y" : 2, + "drilldown" : "Noud Aldenhoven" + }, + { + "name" : "Paulo Custodio", + "drilldown" : "Paulo Custodio", + "y" : 2 + }, + { + "y" : 3, + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "y" : 2, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + }, + { + "name" : "Stuart Little", + "y" : 2, + "drilldown" : "Stuart Little" + }, + { + "name" : "Ulrich Rieke", + "drilldown" : "Ulrich Rieke", + "y" : 2 + }, + { + "drilldown" : "Walt Mankowski", + "y" : 3, + "name" : "Walt Mankowski" + }, + { + "name" : "Wanderdoc", + "y" : 2, + "drilldown" : "Wanderdoc" + } + ], + "name" : "The Weekly Challenge - 071", + "colorByPoint" : 1 + } + ], "xAxis" : { "type" : "category" }, + "legend" : { + "enabled" : 0 + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "followPointer" : 1, + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
" + }, "subtitle" : { - "text" : "[Champions: 26] Last updated at 2022-04-20 12:40:31 GMT" + "text" : "[Champions: 27] Last updated at 2023-05-21 19:14:50 GMT" }, "plotOptions" : { "series" : { "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 + "enabled" : 1, + "format" : "{point.y}" }, "borderWidth" : 0 } @@ -20,7 +179,7 @@ "drilldown" : { "series" : [ { - "id" : "Andrew Shitov", + "name" : "Andrew Shitov", "data" : [ [ "Raku", @@ -31,7 +190,7 @@ 2 ] ], - "name" : "Andrew Shitov" + "id" : "Andrew Shitov" }, { "id" : "Arne Sommer", @@ -52,7 +211,7 @@ "name" : "Arne Sommer" }, { - "name" : "Athanasius", + "id" : "Athanasius", "data" : [ [ "Perl", @@ -63,7 +222,7 @@ 2 ] ], - "id" : "Athanasius" + "name" : "Athanasius" }, { "name" : "Ben Davies", @@ -87,16 +246,15 @@ }, { "name" : "Cheok-Yin Fung", + "id" : "Cheok-Yin Fung", "data" : [ [ "Perl", 2 ] - ], - "id" : "Cheok-Yin Fung" + ] }, { - "name" : "Colin Crain", "id" : "Colin Crain", "data" : [ [ @@ -111,11 +269,11 @@ "Blog", 1 ] - ] + ], + "name" : "Colin Crain" }, { "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ [ "Perl", @@ -125,21 +283,21 @@ "Blog", 1 ] - ] + ], + "id" : "Dave Jacoby" }, { - "name" : "E. Choroba", - "id" : "E. Choroba", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "E. Choroba", + "name" : "E. Choroba" }, { "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas", "data" : [ [ "Perl", @@ -153,11 +311,10 @@ "Blog", 1 ] - ] + ], + "id" : "Jaldhar H. Vyas" }, { - "name" : "Javier Luque", - "id" : "Javier Luque", "data" : [ [ "Perl", @@ -171,20 +328,21 @@ "Blog", 1 ] - ] + ], + "id" : "Javier Luque", + "name" : "Javier Luque" }, { + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey", "data" : [ [ "Perl", 2 ] - ], - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey" + ] }, { - "name" : "Laurent Rosenfeld", "data" : [ [ "Perl", @@ -199,9 +357,21 @@ 1 ] ], - "id" : "Laurent Rosenfeld" + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch", + "data" : [ + [ + "Perl", + 2 + ] + ] }, { + "name" : "Luca Ferrari", "id" : "Luca Ferrari", "data" : [ [ @@ -212,21 +382,20 @@ "Blog", 2 ] - ], - "name" : "Luca Ferrari" + ] }, { - "name" : "Mark Anderson", "id" : "Mark Anderson", "data" : [ [ "Raku", 1 ] - ] + ], + "name" : "Mark Anderson" }, { - "id" : "Mohammad S Anwar", + "name" : "Mohammad S Anwar", "data" : [ [ "Perl", @@ -241,10 +410,9 @@ 3 ] ], - "name" : "Mohammad S Anwar" + "id" : "Mohammad S Anwar" }, { - "name" : "Myoungjin Jeon", "data" : [ [ "Perl", @@ -255,17 +423,18 @@ 2 ] ], - "id" : "Myoungjin Jeon" + "id" : "Myoungjin Jeon", + "name" : "Myoungjin Jeon" }, { - "name" : "Niels van Dijke", + "id" : "Niels van Dijke", "data" : [ [ "Perl", 2 ] ], - "id" : "Niels van Dijke" + "name" : "Niels van Dijke" }, { "name" : "Noud Aldenhoven", @@ -278,17 +447,16 @@ ] }, { + "name" : "Paulo Custodio", "id" : "Paulo Custodio", "data" : [ [ "Perl", 2 ] - ], - "name" : "Paulo Custodio" + ] }, { - "name" : "Roger Bell_West", "id" : "Roger Bell_West", "data" : [ [ @@ -303,7 +471,8 @@ "Blog", 1 ] - ] + ], + "name" : "Roger Bell_West" }, { "name" : "Simon Proctor", @@ -316,24 +485,24 @@ "id" : "Simon Proctor" }, { + "id" : "Stuart Little", "data" : [ [ "Raku", 2 ] ], - "id" : "Stuart Little", "name" : "Stuart Little" }, { + "name" : "Ulrich Rieke", + "id" : "Ulrich Rieke", "data" : [ [ "Raku", 2 ] - ], - "id" : "Ulrich Rieke", - "name" : "Ulrich Rieke" + ] }, { "name" : "Walt Mankowski", @@ -350,169 +519,15 @@ ] }, { - "id" : "Wanderdoc", + "name" : "Wanderdoc", "data" : [ [ "Perl", 2 ] ], - "name" : "Wanderdoc" + "id" : "Wanderdoc" } ] - }, - "series" : [ - { - "name" : "The Weekly Challenge - 071", - "colorByPoint" : 1, - "data" : [ - { - "name" : "Andrew Shitov", - "y" : 4, - "drilldown" : "Andrew Shitov" - }, - { - "drilldown" : "Arne Sommer", - "y" : 4, - "name" : "Arne Sommer" - }, - { - "y" : 4, - "drilldown" : "Athanasius", - "name" : "Athanasius" - }, - { - "name" : "Ben Davies", - "y" : 2, - "drilldown" : "Ben Davies" - }, - { - "y" : 2, - "drilldown" : "Bob Lied", - "name" : "Bob Lied" - }, - { - "y" : 2, - "drilldown" : "Cheok-Yin Fung", - "name" : "Cheok-Yin Fung" - }, - { - "name" : "Colin Crain", - "y" : 5, - "drilldown" : "Colin Crain" - }, - { - "drilldown" : "Dave Jacoby", - "y" : 3, - "name" : "Dave Jacoby" - }, - { - "drilldown" : "E. Choroba", - "y" : 2, - "name" : "E. Choroba" - }, - { - "name" : "Jaldhar H. Vyas", - "y" : 5, - "drilldown" : "Jaldhar H. Vyas" - }, - { - "y" : 5, - "drilldown" : "Javier Luque", - "name" : "Javier Luque" - }, - { - "drilldown" : "Jorg Sommrey", - "y" : 2, - "name" : "Jorg Sommrey" - }, - { - "name" : "Laurent Rosenfeld", - "y" : 4, - "drilldown" : "Laurent Rosenfeld" - }, - { - "name" : "Luca Ferrari", - "y" : 4, - "drilldown" : "Luca Ferrari" - }, - { - "y" : 1, - "drilldown" : "Mark Anderson", - "name" : "Mark Anderson" - }, - { - "name" : "Mohammad S Anwar", - "y" : 7, - "drilldown" : "Mohammad S Anwar" - }, - { - "name" : "Myoungjin Jeon", - "drilldown" : "Myoungjin Jeon", - "y" : 4 - }, - { - "name" : "Niels van Dijke", - "drilldown" : "Niels van Dijke", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "Noud Aldenhoven", - "name" : "Noud Aldenhoven" - }, - { - "y" : 2, - "drilldown" : "Paulo Custodio", - "name" : "Paulo Custodio" - }, - { - "name" : "Roger Bell_West", - "drilldown" : "Roger Bell_West", - "y" : 3 - }, - { - "y" : 2, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "name" : "Stuart Little", - "y" : 2, - "drilldown" : "Stuart Little" - }, - { - "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke", - "y" : 2 - }, - { - "name" : "Walt Mankowski", - "y" : 3, - "drilldown" : "Walt Mankowski" - }, - { - "name" : "Wanderdoc", - "drilldown" : "Wanderdoc", - "y" : 2 - } - ] - } - ], - "chart" : { - "type" : "column" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "tooltip" : { - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
" - }, - "legend" : { - "enabled" : 0 } } diff --git a/stats/pwc-current.json b/stats/pwc-current.json index b15092efb6..6119fc1075 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,9 +1,4 @@ { - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 - }, "drilldown" : { "series" : [ { @@ -21,8 +16,6 @@ "name" : "Ali Moradi" }, { - "name" : "Arne Sommer", - "id" : "Arne Sommer", "data" : [ [ "Raku", @@ -32,27 +25,57 @@ "Blog", 1 ] - ] + ], + "name" : "Arne Sommer", + "id" : "Arne Sommer" }, { - "name" : "Aut0exec", + "data" : [ + [ + "Perl", + 1 + ], + [ + "Raku", + 1 + ] + ], + "id" : "Athanasius", + "name" : "Athanasius" + }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], "id" : "Aut0exec", + "name" : "Aut0exec" + }, + { + "name" : "Avery Adams", + "id" : "Avery Adams", "data" : [ [ "Perl", + 1 + ], + [ + "Blog", 2 ] ] }, { + "id" : "Bob Lied", "name" : "Bob Lied", "data" : [ [ "Perl", 2 ] - ], - "id" : "Bob Lied" + ] }, { "name" : "David Ferrone", @@ -65,27 +88,26 @@ ] }, { + "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ [ "Perl", 2 ] - ], - "id" : "E. Choroba", - "name" : "E. Choroba" + ] }, { + "name" : "Feng Chang", + "id" : "Feng Chang", "data" : [ [ "Raku", 2 ] - ], - "id" : "Feng Chang", - "name" : "Feng Chang" + ] }, { - "id" : "Flavio Poletti", "data" : [ [ "Perl", @@ -100,8 +122,19 @@ 2 ] ], + "id" : "Flavio Poletti", "name" : "Flavio Poletti" }, + { + "data" : [ + [ + "Perl", + 2 + ] + ], + "name" : "Israel C. Batista", + "id" : "Israel C. Batista" + }, { "name" : "Jaldhar H. Vyas", "id" : "Jaldhar H. Vyas", @@ -121,8 +154,8 @@ ] }, { - "name" : "James Smith", "id" : "James Smith", + "name" : "James Smith", "data" : [ [ "Perl", @@ -135,7 +168,26 @@ ] }, { - "id" : "Laurent Rosenfeld", + "data" : [ + [ + "Raku", + 2 + ] + ], + "id" : "Jan Krnavek", + "name" : "Jan Krnavek" + }, + { + "name" : "Jorg Sommrey", + "id" : "Jorg Sommrey", + "data" : [ + [ + "Perl", + 2 + ] + ] + }, + { "data" : [ [ "Perl", @@ -150,11 +202,12 @@ 1 ] ], - "name" : "Laurent Rosenfeld" + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld" }, { - "name" : "Leo Manfredi", "id" : "Leo Manfredi", + "name" : "Leo Manfredi", "data" : [ [ "Perl", @@ -163,18 +216,16 @@ ] }, { - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch" }, { - "name" : "Luca Ferrari", - "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -184,41 +235,57 @@ "Blog", 6 ] - ] + ], + "name" : "Luca Ferrari", + "id" : "Luca Ferrari" }, { + "name" : "Mark Anderson", "id" : "Mark Anderson", "data" : [ [ "Raku", 2 ] - ], - "name" : "Mark Anderson" + ] }, { + "id" : "Matthias Muth", + "name" : "Matthias Muth", "data" : [ [ "Perl", 2 + ], + [ + "Blog", + 1 ] - ], + ] + }, + { + "name" : "Niels van Dijke", "id" : "Niels van Dijke", - "name" : "Niels van Dijke" + "data" : [ + [ + "Perl", + 2 + ] + ] }, { - "name" : "Paulo Custodio", "data" : [ [ "Perl", 2 ] ], - "id" : "Paulo Custodio" + "id" : "Paulo Custodio", + "name" : "Paulo Custodio" }, { - "name" : "Peter Campbell Smith", "id" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -231,14 +298,14 @@ ] }, { - "name" : "Peter Meszaros", - "id" : "Peter Meszaros", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Peter Meszaros", + "name" : "Peter Meszaros" }, { "data" : [ @@ -252,6 +319,7 @@ }, { "id" : "Robbie Hatley", + "name" : "Robbie Hatley", "data" : [ [ "Perl", @@ -261,11 +329,11 @@ "Blog", 1 ] - ], - "name" : "Robbie Hatley" + ] }, { "name" : "Robert DiCicco", + "id" : "Robert DiCicco", "data" : [ [ "Perl", @@ -275,20 +343,20 @@ "Raku", 2 ] - ], - "id" : "Robert DiCicco" + ] }, { - "id" : "Robert Ransbottom", "data" : [ [ "Raku", 2 ] ], - "name" : "Robert Ransbottom" + "name" : "Robert Ransbottom", + "id" : "Robert Ransbottom" }, { + "id" : "Roger Bell_West", "name" : "Roger Bell_West", "data" : [ [ @@ -298,23 +366,34 @@ [ "Raku", 2 + ], + [ + "Blog", + 1 + ] + ] + }, + { + "data" : [ + [ + "Raku", + 1 ] ], - "id" : "Roger Bell_West" + "name" : "Shimon Bollinger", + "id" : "Shimon Bollinger" }, { - "id" : "Solathian", "data" : [ [ "Perl", 2 ] ], - "name" : "Solathian" + "name" : "Solathian", + "id" : "Solathian" }, { - "name" : "Stephen G. Lynn", - "id" : "Stephen G. Lynn", "data" : [ [ "Perl", @@ -324,7 +403,9 @@ "Blog", 1 ] - ] + ], + "name" : "Stephen G. Lynn", + "id" : "Stephen G. Lynn" }, { "name" : "Thomas Kohler", @@ -341,6 +422,8 @@ ] }, { + "id" : "Ulrich Rieke", + "name" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -350,12 +433,9 @@ "Raku", 2 ] - ], - "id" : "Ulrich Rieke", - "name" : "Ulrich Rieke" + ] }, { - "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -366,60 +446,49 @@ 1 ] ], + "id" : "W. Luis Mochan", "name" : "W. Luis Mochan" } ] }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "subtitle" : { - "text" : "[Champions: 29] Last updated at 2023-05-20 19:49:27 GMT" - }, - "xAxis" : { - "type" : "category" - }, - "title" : { - "text" : "The Weekly Challenge - 217" - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, "series" : [ { + "name" : "The Weekly Challenge - 217", "data" : [ { - "y" : 4, + "name" : "Ali Moradi", "drilldown" : "Ali Moradi", - "name" : "Ali Moradi" + "y" : 4 }, { "y" : 3, "drilldown" : "Arne Sommer", "name" : "Arne Sommer" }, + { + "y" : 2, + "name" : "Athanasius", + "drilldown" : "Athanasius" + }, { "y" : 2, "name" : "Aut0exec", "drilldown" : "Aut0exec" }, + { + "y" : 3, + "name" : "Avery Adams", + "drilldown" : "Avery Adams" + }, { "y" : 2, "drilldown" : "Bob Lied", "name" : "Bob Lied" }, { - "y" : 2, + "drilldown" : "David Ferrone", "name" : "David Ferrone", - "drilldown" : "David Ferrone" + "y" : 2 }, { "name" : "E. Choroba", @@ -427,39 +496,54 @@ "y" : 2 }, { + "y" : 2, "drilldown" : "Feng Chang", - "name" : "Feng Chang", - "y" : 2 + "name" : "Feng Chang" }, { - "drilldown" : "Flavio Poletti", "name" : "Flavio Poletti", + "drilldown" : "Flavio Poletti", "y" : 6 }, + { + "drilldown" : "Israel C. Batista", + "name" : "Israel C. Batista", + "y" : 2 + }, { "y" : 5, "name" : "Jaldhar H. Vyas", "drilldown" : "Jaldhar H. Vyas" }, { - "name" : "James Smith", "drilldown" : "James Smith", + "name" : "James Smith", "y" : 3 }, + { + "y" : 2, + "name" : "Jan Krnavek", + "drilldown" : "Jan Krnavek" + }, + { + "name" : "Jorg Sommrey", + "drilldown" : "Jorg Sommrey", + "y" : 2 + }, { "y" : 5, "name" : "Laurent Rosenfeld", "drilldown" : "Laurent Rosenfeld" }, { - "name" : "Leo Manfredi", + "y" : 1, "drilldown" : "Leo Manfredi", - "y" : 1 + "name" : "Leo Manfredi" }, { "y" : 2, - "name" : "Lubos Kolouch", - "drilldown" : "Lubos Kolouch" + "drilldown" : "Lubos Kolouch", + "name" : "Lubos Kolouch" }, { "y" : 8, @@ -467,13 +551,18 @@ "name" : "Luca Ferrari" }, { + "y" : 2, "drilldown" : "Mark Anderson", - "name" : "Mark Anderson", - "y" : 2 + "name" : "Mark Anderson" + }, + { + "y" : 3, + "name" : "Matthias Muth", + "drilldown" : "Matthias Muth" }, { - "drilldown" : "Niels van Dijke", "name" : "Niels van Dijke", + "drilldown" : "Niels van Dijke", "y" : 2 }, { @@ -487,44 +576,49 @@ "y" : 3 }, { - "drilldown" : "Peter Meszaros", + "y" : 2, "name" : "Peter Meszaros", - "y" : 2 + "drilldown" : "Peter Meszaros" }, { - "drilldown" : "RibTips", + "y" : 2, "name" : "RibTips", - "y" : 2 + "drilldown" : "RibTips" }, { - "name" : "Robbie Hatley", + "y" : 3, "drilldown" : "Robbie Hatley", - "y" : 3 + "name" : "Robbie Hatley" }, { "y" : 4, - "name" : "Robert DiCicco", - "drilldown" : "Robert DiCicco" + "drilldown" : "Robert DiCicco", + "name" : "Robert DiCicco" }, { "y" : 2, - "name" : "Robert Ransbottom", - "drilldown" : "Robert Ransbottom" + "drilldown" : "Robert Ransbottom", + "name" : "Robert Ransbottom" }, { - "drilldown" : "Roger Bell_West", "name" : "Roger Bell_West", - "y" : 4 + "drilldown" : "Roger Bell_West", + "y" : 5 }, { - "y" : 2, + "y" : 1, + "drilldown" : "Shimon Bollinger", + "name" : "Shimon Bollinger" + }, + { + "name" : "Solathian", "drilldown" : "Solathian", - "name" : "Solathian" + "y" : 2 }, { - "y" : 3, + "name" : "Stephen G. Lynn", "drilldown" : "Stephen G. Lynn", - "name" : "Stephen G. Lynn" + "y" : 3 }, { "y" : 4, @@ -532,24 +626,51 @@ "name" : "Thomas Kohler" }, { + "y" : 4, "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke", - "y" : 4 + "drilldown" : "Ulrich Rieke" }, { - "name" : "W. Luis Mochan", "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", "y" : 3 } ], - "name" : "The Weekly Challenge - 217", "colorByPoint" : 1 } ], - "chart" : { - "type" : "column" + "title" : { + "text" : "The Weekly Challenge - 217" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "[Champions: 36] Last updated at 2023-05-21 19:19:17 GMT" }, "legend" : { "enabled" : 0 + }, + "xAxis" : { + "type" : "category" + }, + "chart" : { + "type" : "column" + }, + "tooltip" : { + "headerFormat" : "{series.name}
", + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1 + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 0f5bcd3790..39d35ee810 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,61 +1,61 @@ { - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } - }, - "subtitle" : { - "text" : "Last updated at 2023-05-20 19:49:27 GMT" + "tooltip" : { + "pointFormat" : "{point.y:.0f}" }, "xAxis" : { - "type" : "category", "labels" : { "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" } - } + }, + "type" : "category" }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" + "chart" : { + "type" : "column" + }, + "legend" : { + "enabled" : "false" }, "series" : [ { + "dataLabels" : { + "rotation" : -90, + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "y" : 10, + "enabled" : "true", + "align" : "right", + "color" : "#FFFFFF", + "format" : "{point.y:.0f}" + }, "name" : "Contributions", "data" : [ [ "Blog", - 3591 + 3595 ], [ "Perl", - 11073 + 11083 ], [ "Raku", - 6413 + 6417 ] - ], - "dataLabels" : { - "y" : 10, - "color" : "#FFFFFF", - "format" : "{point.y:.0f}", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "align" : "right", - "rotation" : -90, - "enabled" : "true" - } + ] } ], - "chart" : { - "type" : "column" + "subtitle" : { + "text" : "Last updated at 2023-05-21 19:19:17 GMT" }, - "legend" : { - "enabled" : "false" + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 }, "title" : { "text" : "The Weekly Challenge Contributions [2019 - 2023]" diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index b6f3af678d..c531100f8b 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,3940 +1,7 @@ { - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2023-05-20 19:49:27 GMT" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "drilldown" : { - "series" : [ - { - "name" : "001", - "data" : [ - [ - "Perl", - 105 - ], - [ - "Raku", - 47 - ], - [ - "Blog", - 11 - ] - ], - "id" : "001" - }, - { - "name" : "002", - "data" : [ - [ - "Perl", - 83 - ], - [ - "Raku", - 36 - ], - [ - "Blog", - 10 - ] - ], - "id" : "002" - }, - { - "id" : "003", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "name" : "003" - }, - { - "id" : "004", - "data" : [ - [ - "Perl", - 60 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "name" : "004" - }, - { - "name" : "005", - "data" : [ - [ - "Perl", - 42 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 12 - ] - ], - "id" : "005" - }, - { - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 18 - ], - [ - "Blog", - 7 - ] - ], - "id" : "006", - "name" : "006" - }, - { - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "id" : "007", - "name" : "007" - }, - { - "name" : "008", - "id" : "008", - "data" : [ - [ - "Perl", - 48 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "009", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 13 - ] - ], - "id" : "009" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 11 - ] - ], - "id" : "010", - "name" : "010" - }, - { - "name" : "011", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 10 - ] - ], - "id" : "011" - }, - { - "id" : "012", - "data" : [ - [ - "Perl", - 51 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 11 - ] - ], - "name" : "012" - }, - { - "id" : "013", - "data" : [ - [ - "Perl", - 49 - ], - [ - "Raku", - 25 - ], - [ - "Blog", - 13 - ] - ], - "name" : "013" - }, - { - "name" : "014", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 15 - ] - ], - "id" : "014" - }, - { - "name" : "015", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 28 - ], - [ - "Blog", - 15 - ] - ], - "id" : "015" - }, - { - "id" : "016", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 13 - ] - ], - "name" : "016" - }, - { - "id" : "017", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ], - "name" : "017" - }, - { - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 14 - ] - ], - "id" : "018", - "name" : "018" - }, - { - "name" : "019", - "data" : [ - [ - "Perl", - 58 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 13 - ] - ], - "id" : "019" - }, - { - "name" : "020", - "id" : "020", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 37 - ], - [ - "Blog", - 13 - ] - ] - }, - { - "id" : "021", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ], - "name" : "021" - }, - { - "data" : [ - [ - "Perl", - 39 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 10 - ] - ], - "id" : "022", - "name" : "022" - }, - { - "data" : [ - [ - "Perl", - 57 - ], - [ - "Raku", - 32 - ], - [ - "Blog", - 12 - ] - ], - "id" : "023", - "name" : "023" - }, - { - "name" : "024", - "data" : [ - [ - "Perl", - 40 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 11 - ] - ], - "id" : "024" - }, - { - "id" : "025", - "data" : [ - [ - "Perl", - 31 - ], - [ - "Raku", - 19 - ], - [ - "Blog", - 12 - ] - ], - "name" : "025" - }, - { - "name" : "026", - "id" : "026", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 29 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "name" : "027", - "id" : "027", - "data" : [ - [ - "Perl", - 33 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "name" : "028", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 26 - ], - [ - "Blog", - 9 - ] - ], - "id" : "028" - }, - { - "name" : "029", - "id" : "029", - "data" : [ - [ - "Perl", - 44 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 12 - ] - ] - }, - { - "name" : "030", - "data" : [ - [ - "Perl", - 78 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "id" : "030" - }, - { - "name" : "031", - "data" : [ - [ - "Perl", - 54 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "id" : "031" - }, - { - "name" : "032", - "data" : [ - [ - "Perl", - 61 - ], - [ - "Raku", - 27 - ], - [ - "Blog", - 10 - ] - ], - "id" : "032" - }, - { - "data" : [ - [ - "Perl", - 66 - ], - [ - "Raku", - 38 - ], - [ - "Blog", - 10 - ] - ], - "id" : "033", - "name" : "033" - }, - { - "id" : "034", - "data" : [ - [ - "Perl", - 36 - ], - [ - "Raku", - 23 - ], - [ - "Blog", - 11 - ] - ], - "name" : "034" - }, - { - "name" : "035", - "id" : "035", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 9 - ] - ] - }, - { - "id" : "036", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 22 - ], - [ - "Blog", - 11 - ] - ], - "name" : "036" - }, - { - "id" : "037", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 9 - ] - ], - "name" : "037" - }, - { - "id" : "038", - "data" : [ - [ - "Perl", - 38 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 12 - ] - ], - "name" : "038" - }, - { - "id" : "039", - "data" : [ - [ - "Perl", - 35 - ], - [ - "Raku", - 21 - ], - [ - "Blog", - 12 - ] - ], - "name" : "039" - }, - { - "name" : "040", - "id" : "040", - "data" : [ - [ - "Perl", - 43 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 10 - ] - ] - }, - { - "data" : [ - [ - "Perl", - 41 - ], - [ - "Raku", - 30 - ], - [ - "Blog", - 9 - ] - ], - "id" : "041", - "name" : "041" - }, - { - "id" : "042", - "data" : [ - [ - "Perl", - 53 - ], - [ - "Raku", - 34 - ], - [ - "Blog", - 11 - ] - ], - "name" : "042" - }, - { - "id" : "043", - "data" : [ - [ - "Perl", - 37 - ], - [ - "Raku", - 24 - ], - [ - "Blog", - 11 - ] - ], - "name" : "043" - }, - { - "name" : "044", - "data" : [ - [ - "Perl", - 46 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 11 - ] - ], - "id" : "044" - }, - { - "id" : "045", - "data" : [ - [ - "Perl", - 56 - ], - [ - "Raku", - 35 - ], - [ - "Blog", - 11 - ] - ], - "name" : "045" - }, - { - "name" : "046", - "data" : [ - [ - "Perl", - 50 - ], - [ - "Raku", - 33 - ], - [ - "Blog", - 10 - ] - ], - "id" : "046" - }, - { - "id" : "047", - "data" : [ - [ - "Perl", - 47 - ], - [ - "Raku", - 31 - ], - [ - "Blog", - 10 - ] - ], - "name" : "047" - }, - { - "data" : [ - [ - "Perl", - 63 - ], - [ - "Raku", - 37 - ], -