exercism-c/anagram/README.md
Blizzard Finnegan b92478b09c
Init commit
Leap, Difference of Squares, Grains, Collatz Conjecture, Queen Attack,
Darts, Hamming, and Space Age completed yesterday.

Binary and Linked List completed today.
2025-01-11 18:45:47 -05:00

804 B

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