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 ...
I'm searching for a wordlist to make a scrabble like game which would be in french
...
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...
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...
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?
...
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...