summaryrefslogtreecommitdiff
path: root/go/anagram/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'go/anagram/README.md')
-rw-r--r--go/anagram/README.md25
1 files changed, 25 insertions, 0 deletions
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.
+