diff options
| author | Mohammad Sajid Anwar <mohammad.anwar@yahoo.com> | 2024-07-21 21:52:17 +0100 |
|---|---|---|
| committer | Mohammad Sajid Anwar <mohammad.anwar@yahoo.com> | 2024-07-21 21:52:17 +0100 |
| commit | 4ed82ae475e3554cff5d9796e043f34a94ce5ccf (patch) | |
| tree | aead41ab624994e82d1d9ed8d39bb6758d8fd195 | |
| parent | 31c9ce7e6019dfc2564c7f9f10075c767b9ef27f (diff) | |
| download | perlweeklychallenge-club-4ed82ae475e3554cff5d9796e043f34a94ce5ccf.tar.gz perlweeklychallenge-club-4ed82ae475e3554cff5d9796e043f34a94ce5ccf.tar.bz2 perlweeklychallenge-club-4ed82ae475e3554cff5d9796e043f34a94ce5ccf.zip | |
- Added solutions by Wanderdoc.
| -rwxr-xr-x | challenge-278/wanderdoc/perl/ch-1.pl | 56 | ||||
| -rwxr-xr-x | challenge-278/wanderdoc/perl/ch-2.pl | 50 | ||||
| -rw-r--r-- | stats/pwc-current.json | 459 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown-summary.json | 62 | ||||
| -rw-r--r-- | stats/pwc-language-breakdown.json | 3696 | ||||
| -rw-r--r-- | stats/pwc-leaders.json | 364 | ||||
| -rw-r--r-- | stats/pwc-summary-1-30.json | 36 | ||||
| -rw-r--r-- | stats/pwc-summary-121-150.json | 94 | ||||
| -rw-r--r-- | stats/pwc-summary-151-180.json | 36 | ||||
| -rw-r--r-- | stats/pwc-summary-181-210.json | 32 | ||||
| -rw-r--r-- | stats/pwc-summary-211-240.json | 34 | ||||
| -rw-r--r-- | stats/pwc-summary-241-270.json | 36 | ||||
| -rw-r--r-- | stats/pwc-summary-271-300.json | 40 | ||||
| -rw-r--r-- | stats/pwc-summary-301-330.json | 34 | ||||
| -rw-r--r-- | stats/pwc-summary-31-60.json | 34 | ||||
| -rw-r--r-- | stats/pwc-summary-61-90.json | 104 | ||||
| -rw-r--r-- | stats/pwc-summary-91-120.json | 112 | ||||
| -rw-r--r-- | stats/pwc-summary.json | 672 |
18 files changed, 3036 insertions, 2915 deletions
diff --git a/challenge-278/wanderdoc/perl/ch-1.pl b/challenge-278/wanderdoc/perl/ch-1.pl new file mode 100755 index 0000000000..fcb4a32796 --- /dev/null +++ b/challenge-278/wanderdoc/perl/ch-1.pl @@ -0,0 +1,56 @@ +#!perl
+use strict;
+use warnings FATAL => qw(all);
+
+=prompt
+You are given a shuffle string, $str.
+
+Write a script to return the sorted string.
+
+ A string is Shuffled by appending word position to each word.
+
+Example 1
+
+Input: $str = "and2 Raku3 cousins5 Perl1 are4"
+Output: "Perl and Raku are cousins"
+
+Example 2
+
+Input: $str = "guest6 Python1 most4 the3 popular5 is2 language7"
+Output: "Python is the most popular guest language"
+
+Example 3
+
+Input: $str = "Challenge3 The1 Weekly2"
+Output: "The Weekly Challenge"
+=cut
+
+# use feature qw(state);
+# using constant instead:
+use constant ALPHANUM => qr/(\p{IsAlpha}+)(\p{IsDigit}+)/;
+
+use Test2::V0;
+
+is(sort_string(q(and2 Raku3 cousins5 Perl1 are4)), q(Perl and Raku are cousins), 'Example 1');
+is(sort_string(q(guest6 Python1 most4 the3 popular5 is2 language7)), q(Python is the most popular guest language), 'Example 2');
+is(sort_string(q(Challenge3 The1 Weekly2)), q(The Weekly Challenge), 'Example 3');
+done_testing();
+
+sub sort_string
+{
+ my $str = $_[0];
+ my @arr = split(/\s/, $str);
+ @arr =
+ map { $_->[0] }
+ sort { $a->[1] <=> $b->[1] }
+ map { [split_element($_)] }
+ @arr;
+ return join(' ', @arr);
+}
+
+sub split_element
+{
+ my $word = $_[0];
+ my($alpha, $num) = $word =~ ALPHANUM;
+ return ($alpha, $num);
+}
\ No newline at end of file diff --git a/challenge-278/wanderdoc/perl/ch-2.pl b/challenge-278/wanderdoc/perl/ch-2.pl new file mode 100755 index 0000000000..8593b155cf --- /dev/null +++ b/challenge-278/wanderdoc/perl/ch-2.pl @@ -0,0 +1,50 @@ +#!perl
+use strict;
+use warnings FATAL => qw(all);
+
+=prompt
+You are given a word, $word and a character, $char.
+
+Write a script to replace the substring up to and including $char with its characters sorted alphabetically. If the $char doesn't exist then DON'T do anything.
+Example 1
+
+Input: $str = "challenge", $char = "e"
+Output: "acehllnge"
+
+Example 2
+
+Input: $str = "programming", $char = "a"
+Output: "agoprrmming"
+
+Example 3
+
+Input: $str = "champion", $char = "b"
+Output: "champion"
+=cut
+
+
+
+use List::MoreUtils qw(first_index);
+use Test2::V0;
+
+is(reverse_word("challenge", "e"), "acehllnge", 'Example 1');
+is(reverse_word("programming", "a"), "agoprrmming", 'Example 2');
+is(reverse_word("champion", "b"), "champion", 'Example 3');
+done_testing();
+
+sub reverse_word
+{
+ my $word = $_[0];
+ my $char = $_[1];
+ my @arr = split(//, $word);
+ my $idx = first_index { $_ eq $char } @arr;
+ if ( $idx == -1 )
+ {
+ return $word;
+ }
+ else
+ {
+ @arr[0 .. $idx] = sort {$a cmp $b} @arr[0 .. $idx];
+ return join('', @arr);
+ }
+}
\ No newline at end of file diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 90d76777f9..b559115f5e 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,29 +1,185 @@ { - "legend" : { - "enabled" : 0 + "subtitle" : { + "text" : "[Champions: 31] Last updated at 2024-07-21 20:52:12 GMT" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "series" : [ + { + "colorByPoint" : 1, + "name" : "The Weekly Challenge - 278", + "data" : [ + { + "drilldown" : "Alexander Karelas", + "name" : "Alexander Karelas", + "y" : 2 + }, + { + "drilldown" : "Ali Moradi", + "name" : "Ali Moradi", + "y" : 3 + }, + { + "name" : "Arne Sommer", + "drilldown" : "Arne Sommer", + "y" : 3 + }, + { + "drilldown" : "Athanasius", + "name" : "Athanasius", + "y" : 4 + }, + { + "name" : "Bruce Gray", + "drilldown" : "Bruce Gray", + "y" : 2 + }, + { + "drilldown" : "Cheok-Yin Fung", + "y" : 2, + "name" : "Cheok-Yin Fung" + }, + { + "drilldown" : "Dave Jacoby", + "name" : "Dave Jacoby", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "David Ferrone", + "name" : "David Ferrone" + }, + { + "drilldown" : "E. Choroba", + "name" : "E. Choroba", + "y" : 2 + }, + { + "drilldown" : "Feng Chang", + "name" : "Feng Chang", + "y" : 2 + }, + { + "y" : 5, + "drilldown" : "Jaldhar H. Vyas", + "name" : "Jaldhar H. Vyas" + }, + { + "y" : 2, + "drilldown" : "Jan Krnavek", + "name" : "Jan Krnavek" + }, + { + "drilldown" : "Jorg Sommrey", + "name" : "Jorg Sommrey", + "y" : 3 + }, + { + "name" : "Kjetil Skotheim", + "drilldown" : "Kjetil Skotheim", + "y" : 2 + }, + { + "drilldown" : "Lance Wicks", + "y" : 1, + "name" : "Lance Wicks" + }, + { + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", + "y" : 6 + }, + { + "drilldown" : "Luca Ferrari", + "name" : "Luca Ferrari", + "y" : 11 + }, + { + "name" : "Mariano Ortega", + "drilldown" : "Mariano Ortega", + "y" : 2 + }, + { + "y" : 2, + "drilldown" : "Mark Anderson", + "name" : "Mark Anderson" + }, + { + "drilldown" : "Matthew Neleigh", + "y" : 2, + "name" : "Matthew Neleigh" + }, + { + "drilldown" : "Packy Anderson", + "y" : 5, + "name" : "Packy Anderson" + }, + { + "drilldown" : "Peter Campbell Smith", + "name" : "Peter Campbell Smith", + "y" : 3 + }, + { + "drilldown" : "Peter Meszaros", + "y" : 2, + "name" : "Peter Meszaros" + }, + { + "y" : 3, + "drilldown" : "Reinier Maliepaard", + "name" : "Reinier Maliepaard" + }, + { + "drilldown" : "Robbie Hatley", + "name" : "Robbie Hatley", + "y" : 3 + }, + { + "drilldown" : "Robert Ransbottom", + "y" : 2, + "name" : "Robert Ransbottom" + }, + { + "y" : 5, + "drilldown" : "Roger Bell_West", + "name" : "Roger Bell_West" + }, + { + "drilldown" : "Thomas Kohler", + "name" : "Thomas Kohler", + "y" : 4 + }, + { + "drilldown" : "Ulrich Rieke", + "name" : "Ulrich Rieke", + "y" : 4 + }, + { + "drilldown" : "W. Luis Mochan", + "name" : "W. Luis Mochan", + "y" : 3 + }, + { + "name" : "Wanderdoc", + "drilldown" : "Wanderdoc", + "y" : 2 + } + ] } - }, - "title" : { - "text" : "The Weekly Challenge - 278" - }, + ], "drilldown" : { "series" : [ { - "id" : "Alexander Karelas", + "name" : "Alexander Karelas", "data" : [ [ "Perl", 2 ] ], - "name" : "Alexander Karelas" + "id" : "Alexander Karelas" }, { "name" : "Ali Moradi", + "id" : "Ali Moradi", "data" : [ [ "Perl", @@ -33,12 +189,10 @@ "Blog", 1 ] - ], - "id" : "Ali Moradi" + ] }, { "name" : "Arne Sommer", - "id" : "Arne Sommer", "data" : [ [ "Raku", @@ -48,7 +202,8 @@ "Blog", 1 ] - ] + ], + "id" : "Arne Sommer" }, { "name" : "Athanasius", @@ -65,44 +220,44 @@ ] }, { - "name" : "Bruce Gray", "data" : [ [ "Raku", 2 ] ], - "id" : "Bruce Gray" + "id" : "Bruce Gray", + "name" : "Bruce Gray" }, { - "name" : "Cheok-Yin Fung", - "id" : "Cheok-Yin Fung", "data" : [ [ "Perl", 2 ] - ] + ], + "id" : "Cheok-Yin Fung", + "name" : "Cheok-Yin Fung" }, { "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ [ "Perl", 2 ] - ], - "id" : "Dave Jacoby" + ] }, { "name" : "David Ferrone", + "id" : "David Ferrone", "data" : [ [ "Perl", 2 ] - ], - "id" : "David Ferrone" + ] }, { "id" : "E. Choroba", @@ -115,17 +270,18 @@ "name" : "E. Choroba" }, { - "id" : "Feng Chang", "data" : [ [ "Raku", 2 ] ], + "id" : "Feng Chang", "name" : "Feng Chang" }, { "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas", "data" : [ [ "Perl", @@ -139,8 +295,7 @@ "Blog", 1 ] - ], - "id" : "Jaldhar H. Vyas" + ] }, { "name" : "Jan Krnavek", @@ -153,6 +308,7 @@ ] }, { + "name" : "Jorg Sommrey", "data" : [ [ "Perl", @@ -163,18 +319,17 @@ 1 ] ], - "id" : "Jorg Sommrey", - "name" : "Jorg Sommrey" + "id" : "Jorg Sommrey" }, { - "name" : "Kjetil Skotheim", + "id" : "Kjetil Skotheim", "data" : [ [ "Perl", 2 ] ], - "id" : "Kjetil Skotheim" + "name" : "Kjetil Skotheim" }, { "name" : "Lance Wicks", @@ -205,7 +360,6 @@ "id" : "Laurent Rosenfeld" }, { - "name" : "Luca Ferrari", "id" : "Luca Ferrari", "data" : [ [ @@ -216,27 +370,28 @@ "Blog", 9 ] - ] + ], + "name" : "Luca Ferrari" }, { - "id" : "Mariano Ortega", "data" : [ [ "Perl", 2 ] ], + "id" : "Mariano Ortega", "name" : "Mariano Ortega" }, { - "name" : "Mark Anderson", - "id" : "Mark Anderson", "data" : [ [ "Raku", 2 ] - ] + ], + "id" : "Mark Anderson", + "name" : "Mark Anderson" }, { "name" : "Matthew Neleigh", @@ -249,7 +404,6 @@ "id" : "Matthew Neleigh" }, { - "name" : "Packy Anderson", "id" : "Packy Anderson", "data" : [ [ @@ -264,9 +418,12 @@ "Blog", 1 ] - ] + ], + "name" : "Packy Anderson" }, { + "name" : "Peter Campbell Smith", + "id" : "Peter Campbell Smith", "data" : [ [ "Perl", @@ -276,21 +433,20 @@ "Blog", 1 ] - ], - "id" : "Peter Campbell Smith", - "name" : "Peter Campbell Smith" + ] }, { + "name" : "Peter Meszaros", "id" : "Peter Meszaros", "data" : [ [ "Perl", 2 ] - ], - "name" : "Peter Meszaros" + ] }, { + "name" : "Reinier Maliepaard", "id" : "Reinier Maliepaard", "data" : [ [ @@ -301,10 +457,10 @@ "Blog", 1 ] - ], - "name" : "Reinier Maliepaard" + ] }, { + "id" : "Robbie Hatley", "data" : [ [ "Perl", @@ -315,22 +471,19 @@ 1 ] ], - "id" : "Robbie Hatley", "name" : "Robbie Hatley" }, { - "name" : "Robert Ransbottom", - "id" : "Robert Ransbottom", "data" : [ [ "Raku", 2 ] - ] + ], + "id" : "Robert Ransbottom", + "name" : "Robert Ransbottom" }, { - "name" : "Roger Bell_West", - "id" : "Roger Bell_West", "data" : [ [ "Perl", @@ -344,11 +497,12 @@ "Blog", 1 ] - ] + ], + "id" : "Roger Bell_West", + "name" : "Roger Bell_West" }, { "name" : "Thomas Kohler", - "id" : "Thomas Kohler", "data" : [ [ "Perl", @@ -358,10 +512,10 @@ "Blog", 2 ] - ] + ], + "id" : "Thomas Kohler" }, { - "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -372,10 +526,12 @@ 2 ] ], + "id" : "Ulrich Rieke", "name" : "Ulrich Rieke" }, { "name" : "W. Luis Mochan", + "id" : "W. Luis Mochan", "data" : [ [ "Perl", @@ -385,8 +541,17 @@ "Blog", 1 ] - ], - "id" : "W. Luis Mochan" + ] + }, + { + "name" : "Wanderdoc", + "id" : "Wanderdoc", + "data" : [ + [ + "Perl", + 2 + ] + ] } ] }, @@ -394,181 +559,31 @@ "series" : { "borderWidth" : 0, "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" + "format" : "{point.y}", + "enabled" : 1 } } }, "xAxis" : { "type" : "category" }, + "title" : { + "text" : "The Weekly Challenge - 278" + }, + "legend" : { + "enabled" : 0 + }, "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/>" }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2024-07-21 20:48:37 GMT" - }, - "series" : [ - { - "name" : "The Weekly Challenge - 278", - "colorByPoint" : 1, - "data" : [ - { - "y" : 2, - "name" : "Alexander Karelas", - "drilldown" : "Alexander Karelas" - }, - { - "name" : "Ali Moradi", - "drilldown" : "Ali Moradi", - "y" : 3 - }, - { - "y" : 3, - "name" : "Arne Sommer", - "drilldown" : "Arne Sommer" - }, - { - "drilldown" : "Athanasius", - "name" : "Athanasius", - "y" : 4 - }, - { - "y" : 2, - "drilldown" : "Bruce Gray", - "name" : "Bruce Gray" - }, - { - "y" : 2, - "drilldown" : "Cheok-Yin Fung", - "name" : "Cheok-Yin Fung" - }, - { - "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby", - "y" : 2 - }, - { - "drilldown" : "David Ferrone", - "name" : "David Ferrone", - "y" : 2 - }, - { - "name" : "E. Choroba", - "drilldown" : "E. Choroba", - "y" : 2 - }, - { - "y" : 2, - "name" : "Feng Chang", - "drilldown" : "Feng Chang" - }, - { - "name" : "Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas", - "y" : 5 - }, - { - "drilldown" : "Jan Krnavek", - "name" : "Jan Krnavek", - "y" : 2 - }, - { - "name" : "Jorg Sommrey", - "drilldown" : "Jorg Sommrey", - "y" : 3 - }, - { - "name" : "Kjetil Skotheim", - "drilldown" : "Kjetil Skotheim", - "y" : 2 - }, - { - "drilldown" : "Lance Wicks", - "name" : "Lance Wicks", - "y" : 1 - }, - { - "drilldown" : "Laurent Rosenfeld", - "name" : "Laurent Rosenfeld", - "y" : 6 - }, - { - "drilldown" : "Luca Ferrari", - "name" : "Luca Ferrari", - "y" : 11 - }, - { - "name" : "Mariano Ortega", - "drilldown" : "Mariano Ortega", - "y" : 2 - }, - { - "y" : 2, - "name" : "Mark Anderson", - "drilldown" : "Mark Anderson" - }, - { - "name" : "Matthew Neleigh", - "drilldown" : "Matthew Neleigh", - "y" : 2 - }, - { - "drilldown" : "Packy Anderson", - "name" : "Packy Anderson", - "y" : 5 - }, - { - "name" : "Peter Campbell Smith", - "drilldown" : "Peter Campbell Smith", - "y" : 3 - }, - { - "drilldown" : "Peter Meszaros", - "name" : "Peter Meszaros", - "y" : 2 - }, - { - "drilldown" : "Reinier Maliepaard", - "name" : "Reinier Maliepaard", - "y" : 3 - }, - { - "drilldown" : "Robbie Hatley", - "name" : "Robbie Hatley", - "y" : 3 - }, - { - "y" : 2, - "drilldown" : "Robert Ransbottom", - "name" : "Robert Ransbottom" - }, - { - "name" : "Roger Bell_West", - "drilldown" : "Roger Bell_West", - "y" : 5 - }, - { - "drilldown" : "Thomas Kohler", - "name" : "Thomas Kohler", - "y" : 4 - }, - { - "y" : 4, - "name" : "Ulrich Rieke", - "drilldown" : "Ulrich Rieke" - }, - { - "name" : "W. Luis Mochan", - "drilldown" : "W. Luis Mochan", - "y" : 3 - } - ] - } - ], "chart" : { "type" : "column" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 5f2190687f..6e45eeeb5a 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -3,31 +3,31 @@ "text" : "The Weekly Challenge Contributions [2019 - 2024]" }, "yAxis" : { - "min" : 0, "title" : { "text" : null - } + }, + "min" : 0 }, - "legend" : { - "enabled" : "false" + "tooltip" : { + "pointFormat" : "<b>{point.y:.0f}</b>" }, "chart" : { "type" : "column" }, + "legend" : { + "enabled" : "false" + }, + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + }, "series" : [ { - "dataLabels" : { - "format" : "{point.y:.0f}", - "color" : "#FFFFFF", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "rotation" : -90, - "y" : 10, - "enabled" : "true", - "align" : "right" - }, "data" : [ [ "Blog", @@ -35,29 +35,29 @@ ], [ "Perl", - 14434 + 14436 ], [ "Raku", 8355 ] ], - "name" : "Contributions" + "name" : "Contributions", + "dataLabels" : { + "y" : 10, + "enabled" : "true", + "format" : "{point.y:.0f}", + "rotation" : -90, + "align" : "right", + "color" : "#FFFFFF", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + } + } } ], "subtitle" : { - "text" : "Last updated at 2024-07-21 20:48:37 GMT" - }, - "tooltip" : { - "pointFormat" : "<b>{point.y:.0f}</b>" - }, - "xAxis" : { - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - }, - "type" : "category" + "text" : "Last updated at 2024-07-21 20:52:12 GMT" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 624f709456..c82cf0c018 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,8 +1,1435 @@ { + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } + }, + "xAxis" : { + "type" : "category" + }, + "title" : { + "text" : "The Weekly Challenge Language" + }, + "legend" : { + "enabled" : "false" + }, + "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>" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2024-07-21 20:52:12 GMT" + }, + "series" : [ + { + "data" : [ + { + "name" : "#001", + "drilldown" : "001", + "y" : 168 + }, + { + "drilldown" : "002", + "name" : "#002", + "y" : 133 + }, + { + "y" : 91, + "drilldown" : "003", + "name" : "#003" + }, + { + "name" : "#004", + "drilldown" : "004", + "y" : 106 + }, + { + "drilldown" : "005", + "y" : 82, + "name" : "#005" + }, + { + "name" : "#006", + "drilldown" : "006", + "y" : 63 + }, + { + "drilldown" : "007", + "y" : 71, + "name" : "#007" + }, + { + "drilldown" : "008", + "y" : 84, + "name" : "#008" + }, + { + "name" : "#009", + "drilldown" : "009", + "y" : 82 + }, + { + "drilldown" : "010", + "name" : "#010", + "y" : 71 + }, + { + "name" : "#011", + "drilldown" : "011", + "y" : 91 + }, + { + "drilldown" : "012", + "y" : 96, + "name" : "#012" + }, + { + "drilldown" : "013", + "name" : "#013", + "y" : 88 + }, + { + "drilldown" : "014", + "y" : 104, |
