asrayousuf / ScrabbleWordRecommender

0 stars 0 forks source link

APIs #34

Open aravindsrivats opened 9 years ago

aravindsrivats commented 9 years ago

List out the API calls in your team's classes

ekanshmittal commented 9 years ago

Interface ConstraintHandlerService{ public String appendConstraintLetters(String constraintPattern); // append letters in constraint pattern to the rack and return the concatenated String

public HashMap<String, String> applyPatternMatching(
        HashMap<String, String> possibleWords, String constraintPattern); // Apply pattern matching on the list of possible words and return the ones matching them

}

Declare object as ConstraintHandlerService = new ConstraintHandlerServiceImpl();

These are the Team 3 API Calls