From c2cab3dd8e3023a524f6ad3262790bfce2fda2c0 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Sun, 28 Aug 2016 01:11:56 +0200 Subject: Solve anagram --- go/anagram/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 go/anagram/README.md (limited to 'go/anagram/README.md') diff --git a/go/anagram/README.md b/go/anagram/README.md new file mode 100644 index 0000000..5a05f3c --- /dev/null +++ b/go/anagram/README.md @@ -0,0 +1,25 @@ +# Anagram + +Write a program that, given a word and a list of possible anagrams, selects the correct sublist. + +Given `"listen"` and a list of candidates like `"enlists" "google" +"inlets" "banana"` the program should return a list containing +`"inlets"`. + +To run the tests simply run the command `go test` in the exercise directory. + +If the test suite contains benchmarks, you can run these with the `-bench` +flag: + + go test -bench . + +For more detailed info about the Go track see the [help +page](http://exercism.io/languages/go). + +## Source + +Inspired by the Extreme Startup game [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup) + +## Submitting Incomplete Problems +It's possible to submit an incomplete solution so you can see how others have completed the exercise. + -- cgit v1.2.3