# Anagram Welcome to Anagram on Exercism's C Track. If you need help running the tests or submitting your code, check out `HELP.md`. ## Instructions An anagram is a rearrangement of letters to form a new word. Given a word and a list of candidates, select the sublist of anagrams of the given word. Given `"listen"` and a list of candidates like `"enlists" "google" "inlets" "banana"` the program should return a list containing `"inlets"`. ## Source ### Created by - @kdar ### Contributed to by - @bcc32 - @Gamecock - @gea-migration - @h-3-0 - @hintjens - @JacobMikkelsen - @kytrinyx - @lpil - @patricksjackson - @QLaille - @RealBarrettBrown - @ryanplusplus - @siebenschlaefer - @wolf99 - @xihh87 ### Based on Inspired by the Extreme Startup game - https://github.com/rchatley/extreme_startup