I need a Java algorithm for a String permutation with a few conditions:
- Every letter just once per word
- The word has to end with a certain String
- Only words that have a certain length should be shown.
- Every letter can be in lower and upper case.
For example:
String perm = "abcdefgh";
Word length should be 7 or 8 and it should always end with "g" or "gh".
Okay:
abcdefgh ABCdefgh ABCDEFGH acbdefgh abdcefg abcdefg
Not okay:
abc abcdeghf