aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Proctor <simon.proctor@zoopla.co.uk>2020-10-05 09:51:02 +0100
committerSimon Proctor <simon.proctor@zoopla.co.uk>2020-10-05 09:51:02 +0100
commit93f04638ce7a44b303b9fb42cfcbd24995d40160 (patch)
treef608bb037ef6a8e4a9b5f987f45dda32c688b02b
parentcb31906e36585adb7ac5d486e7e200f199073069 (diff)
downloadperlweeklychallenge-club-93f04638ce7a44b303b9fb42cfcbd24995d40160.tar.gz
perlweeklychallenge-club-93f04638ce7a44b303b9fb42cfcbd24995d40160.tar.bz2
perlweeklychallenge-club-93f04638ce7a44b303b9fb42cfcbd24995d40160.zip
Challenge 2
-rw-r--r--challenge-081/simon-proctor/raku/ch-2.raku16
-rw-r--r--challenge-081/simon-proctor/raku/input3
2 files changed, 19 insertions, 0 deletions
diff --git a/challenge-081/simon-proctor/raku/ch-2.raku b/challenge-081/simon-proctor/raku/ch-2.raku
new file mode 100644
index 0000000000..898a5b2af7
--- /dev/null
+++ b/challenge-081/simon-proctor/raku/ch-2.raku
@@ -0,0 +1,16 @@
+#!/usr/bin/env raku
+
+use v6;
+
+#| Read the given input file (default "input") and give a litst of
+#| words grouped by count.
+sub MAIN ( Str $input-file = "input" ) {
+ my %map;
+ for $input-file.IO.words.map( -> $x is copy { $x ~~ s:g/ "."|'"'|"("|")"|","|"'s"|"--" //; $x } ).Bag.antipairs -> $p {
+ %map{$p.key} //= [];
+ %map{$p.key}.push($p.value);
+ }
+ for %map.keys.sort {
+ say "$_ {%map{$_}.sort.join(" ")}";
+ }
+}
diff --git a/challenge-081/simon-proctor/raku/input b/challenge-081/simon-proctor/raku/input
new file mode 100644
index 0000000000..37001629ad
--- /dev/null
+++ b/challenge-081/simon-proctor/raku/input
@@ -0,0 +1,3 @@
+West Side Story
+
+The award-winning adaptation of the classic romantic tragedy "Romeo and Juliet". The feuding families become two warring New York City gangs, the white Jets led by Riff and the Latino Sharks, led by Bernardo. Their hatred escalates to a point where neither can coexist with any form of understanding. But when Riff's best friend (and former Jet) Tony and Bernardo's younger sister Maria meet at a dance, no one can do anything to stop their love. Maria and Tony begin meeting in secret, planning to run away. Then the Sharks and Jets plan a rumble under the highway--whoever wins gains control of the streets. Maria sends Tony to stop it, hoping it can end the violence. It goes terribly wrong, and before the lovers know what's happened, tragedy strikes and doesn't stop until the climactic and heartbreaking ending.