Ok , I want to write a program , that unscrambles words , I have a list of words , lets say 50 words , and I type 10 scarmbled words , and I want that program would unscramble them , can somebody tell me what functions I should use? I don't know where to start.
e.g
for (loop through unscrambled words) {
for (loop through scrambled letters) {
check for match
if match then continue;
if not match then break;
}
was there a match?
}