Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
5answers
2k views

Scrabble tile checking

For tile checking in scrabble, you make four 5x5 grids of letters totalling 100 tiles. I would like to make one where all 40 horizontal and vertical words are valid. The set of available tiles ...
16
votes
5answers
997 views

How can this Python Scrabble word finder be made faster?

I have no real need to improve it, it's just for fun. Right now it's taking about a second on a list of about 200K words. I've tried to optimize it as much as I know how (using generators instead of ...
11
votes
8answers
2k views

Writing an algorithm for scrabble

I'm working on a crossword-like problem, but I don't know how to design the algorithm. For example: there are words like 'car', 'apple' in the dictionary. the word 'app' is given on the board. ...
6
votes
6answers
659 views

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

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 ...
5
votes
2answers
123 views

Connect autonomous game model with Qt based UI

I've created a simple console based Scrabble game using Python. I tried to encapsulate the game model from the I/O as much as possible, meaning I created a few classes to describe the game with its ...
4
votes
9answers
167 views

Efficient hunting for words in scrambled letters

I guess you could classify this as a Scrabble style problem, but it started out due to a friend mentioning the UK TV quiz show Countdown. Various rounds in the show involve the contestants being ...
4
votes
2answers
137 views

largest possible rectangle of letters

Write a program to find the largest possible rectangle of letters such that every row forms a word (left to right) and every column forms a word (top to bottom). I found this interesting ...
4
votes
4answers
400 views

How to find a word from arrays of characters?

What is the best way to solve this: I have a group of arrays with 3-4 characters inside each like so: {p, {a, {t, {m, q, b, u, n, r, c v o s } } ...
4
votes
4answers
458 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 ...
3
votes
1answer
49 views

Initialize a Scrabble board's special tiles algorithmically?

Is there an algorithm to initialize the tiles on a scrabble board rather than manually laying them out like so: board[0][3]->setType(ScrabbleTile::TripleWord); ...
3
votes
3answers
135 views

Check if a string containing 2 words is in a dictionary

I have an array of dictionary words and a random string like "twowords" What is the fastest way to check if the entire string is made up of dictionary words? so "twojwords" would return false and ...
2
votes
8answers
3k 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 ...
1
vote
1answer
137 views

PyQt: Drag'n'Drop based Scrabble UI

I've written a simple Scrabble game with a simple Bot and Human part which can interact using consolebased I/O. Although there is already a Qt based overview of the current situation in the game: A ...
1
vote
3answers
165 views

Find all words placed on a Scrabble board

Any idea whats a simple and fast way to get all words placed on a Scrabble board while the board is represented by 2D Array of chars? Thanks in advance
1
vote
2answers
321 views

Scrabblecheater in Java: How to correctly write to a nested ArrayList

We have to write a basic program, that is supposed to read a wordlist from a file, find permutations of the words, and stores all the words that have the same normalized version together in one chain. ...
1
vote
4answers
1k views

French wordlist

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

Replace occurance of character with all letters in the alphabet

I have created a scrabble game with a computer opponent. If a blank tile is found in the computer's rack during the word generation if needs to be swapped out for every letter in the alphabet. I have ...
0
votes
2answers
260 views

Regex for finding possible words (scrabble-style)

I'm trying to create a "scrabble-solver" to run stress-tests on a scrabble-like game I'm developing. I have a database containing ~200.000 words and I'm now looking for a way to match the scrabble ...
0
votes
4answers
259 views

XCode 4 failing to compile a very large array, and questions about NSArray/NSString overhead

I'm new to Objective C and XCode, currently working on my first iPhone Game. The game must do some very fast spellchecking against a scrabble dictionary of over 250,000 words, ideally fast enough that ...
0
votes
4answers
420 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
1k views

Scrabble Anagram Generator

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: ...
-1
votes
1answer
235 views

What is wrong with my python program?

This program should give back all possible words given letters and words from a scrabble game, but when i run it, it doesn't work. For example, if i put in fat, for the word, and a bunch of letters ...
-4
votes
4answers
189 views

How to optimize my python code?

I am making a program, that given the words and letters of a scrabble board and player, will return possible words, but when i run the program it will take about 30 min. approx. to run or more. I know ...