scrabble

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 helloworld. Like in Scrabble for example. The input string can be any length, but rarely more than 16 chars. I've done a search and come up ...

French wordlist

I'm searching for a wordlist to make a scrabble like game which would be in french ...

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 valid words they can use, along with what score they will get for using those letters. Basically, what I want to do is extend the applica...

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 inputted: "ABCDEFG". And it will generate AB, but also AA, which isn't right. Please help. public class Scrabble1 { private String[] dictiona...

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 the local board? ...

C++ - How to efficiently find out if any string in a vector can be assembled from a set of letters

Hello, everyone! I am implementing a text-based version of Scrabble for a college project. I have a vector containing around 400K strings (my dictionary), and, at some point in every turn, I'm going to have to check if there's still a word in the dictionary which can be formed with the pieces in the player's hand. I'm checking if the p...