Course:CPSC312-2016-Project1- Scrabble

From UBC Wiki

Authors: Willis Peng, Joy Zhang

What is the problem?

We want to implement a game of scrabble on prolog. Some problems are how will we use prolog to generate words from an input of letters? How do we calculate the points from given words? How do we make the game fun with extra implementations?

What is the something extra?

We want to create extra constraints that allow the players to find words based on word lengths, letter positions. We also plan to import a dictionary of words to choose from.

What did we learn from doing this?

We learned how to use recursion to search through lists and make comparisons using built in predicates. We also used recursion to add up sums for issuing points for the scrabble words. As well we found out how to implement a dictionary into prolog.