Tagged Questions

0
votes
4answers
100 views

Scrabble board to board.

Is it best to communicate between two scrabble boards on separate computers by creating a cloud with a SQL table, simulating the board. And every time I move is made you contact the server and update …
0
votes
6answers
129 views

Scrabble Anagram Generator

Hi, I am trying to write a scrabble anagram generator. So far my code sort of works, but it's horribly slow, and has bugs. One being it will use letters more than once. For example: Letters …
3
votes
4answers
157 views

How do I search for a ‘blank tile’ in a scrabble application? (PHP)

I created this application a couple of months ago: http://www.mondofacto.com/word-tools/scrabble-solver.html The application lets the user enter the set of letters they are given, and echos back what …
-2
votes
1answer
78 views

implementing the board of scrabble

I am making Scrabble for my project in visualc++ 6.0. Can anyone tell me how should I implement the board? i.e what control should I use and how should it actually be implemented in the background?
0
votes
4answers
167 views

French wordlist

I'm searching for a wordlist to make a scrabble like game which would be in french
2
votes
8answers
573 views

Algorithm to get a list of all words that are anagrams of all substrings (scrabble)?

Eg if input string is helloworld I want the output to be like: do he we low hell hold roll well word hello lower world ... all the way up to the longest word that is an anagram of a substring of …