java-projects/anagrams/README.md

7 lines
386 B
Markdown

# Anagrams
This program focuses on recursive backtracking.
# Description
A class called Anagrams that uses a dictionary to find all anagram phrases that match a given word or phrase. You are provided with a client program AnagramMain that prompts the user for phrases and then passes those phrases to your Anagrams object. It asks your object to print all anagrams for those phrases.