Sha256: e4b87d3573de9a4f2041d7bc487e538c439aac9eae10fc30f08027d28b6ab4c8

Contents?: true

Size: 1.3 KB

Versions: 128

Compression:

Stored size: 1.3 KB

Contents

# Anagram

Given a word and a list of possible anagrams, select the correct sublist.

Given `"listen"` and a list of candidates like `"enlists" "google"
"inlets" "banana"` the program should return a list containing
`"inlets"`.

## Resources

Remember to check out the Perl 6 [documentation](https://docs.perl6.org/) and
[resources](https://perl6.org/resources/) pages for information, tips, and
examples if you get stuck.

## Running the tests

There is a test suite and module included with the exercise.
The test suite (a file with the extension `.t`) will attempt to run routines
from the module (a file with the extension `.pm6`).
Add/modify routines in the module so that the tests will pass! You can view the
test data by executing the command `perl6 --doc *.t` (\* being the name of the
test suite), and run the test suite for the exercise by executing the command
`prove . --exec=perl6` in the exercise directory.
You can also add the `-v` flag e.g. `prove . --exec=perl6 -v` to display all
tests, including any optional tests marked as 'TODO'.

## Source

Inspired by the Extreme Startup game [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

128 entries across 128 versions & 1 rubygems

Version Path
trackler-2.2.1.78 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.77 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.76 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.75 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.74 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.73 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.72 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.71 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.70 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.69 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.68 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.67 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.66 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.65 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.64 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.63 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.62 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.61 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.60 tracks/perl6/exercises/anagram/README.md
trackler-2.2.1.59 tracks/perl6/exercises/anagram/README.md