Tagged Questions
The crossword tag has no wiki summary.
19
votes
7answers
7k views
Algorithm to generate a crossword
Given a list of words, how would you go about arranging them into a crossword grid?
It wouldn't have to be like a "proper" crossword puzzle which is symmetrical or anything like that: basically just ...
9
votes
2answers
356 views
Crosswords in Mathematica using Pattern Matching
Suppose I select all 3 char words from the Mathematica dictionary:
all3 = Characters /@ Select[DictionaryLookup[], StringLength[#] == 3 &];
and I want to form full scrabble-like sets, like: ...
5
votes
2answers
157 views
Algorithm for crossword puzzle with given grid
Before I write something about the problem, I need to let you know:
This problem is my homework (I had about 1 week to return working program)
I was working on this problem for about a week, every ...
3
votes
1answer
377 views
Generating all unique crossword puzzle grids
I want to generate all unique crossword puzzle grids of a certain grid size (4x4 is a good size). All possible puzzles, including non-unique puzzles, are represented by a binary string with the ...
1
vote
3answers
224 views
How to get multiple solutions for a crossword?
I have already seen the forums and different questions on this.
But i want to ask something different.
I have two wordlist of different words and one grid specified by 0 and 1.
i will have to select ...
1
vote
0answers
121 views
Crosswords Puzzle Database or Web Service
I would like to obtain an existing db dump of a collection of crossword puzzles or a web service through which I can get one. Is any one aware of any web sites that provide you with free dumps?
...
1
vote
2answers
380 views
logics for crossword
I have a task to create a crossword, a specific one. All the answers are given, but their places are unknown. Program must read a file with board scheme like this :
0 1 0 0 0 0 0 0 1 0 0
0 1 0 1 1 1 ...
1
vote
1answer
527 views
PHP-based Crossword Creator code [closed]
Possible Duplicate:
PHP: Script for generating Crossword game?
Does anyone know any PHP-based simple Crossword Creator API?
Thanks in advance.
1
vote
3answers
638 views
Java Crossword Application - what package to use?
I'm about to create a java crossword application but I am unsure of what packages to use to draw the crossword grid. I know you can manually draw grids with Graphics2D etc. but I'm not sure if this is ...
0
votes
1answer
86 views
2D array printing letters in middle of grid in forward direction
public void fill(ArrayList<String> a1) {
int i = 0;
while (i < a1.size()) {
if (i == 0) {
for (int j = 0; j < a1.get(i).length(); j++)
...
0
votes
1answer
36 views
More efficient/faster way to perform ImageIcon scaling?
I'm working on an application to create and edit crossword puzzles, the code for which I've posted at the end if it helps. I'm currently trying to sort out an issue that has cropped up in this portion ...
0
votes
1answer
370 views
Prolog - Formatting crossword
I've written a predicate called solve_crossword that looks like this:
solve_crossword(X,C):-
C= [A1,A2,A3,A4,A5,
B1,' ',B3, ' ', B5,
C1, C2,C3,C4,C5,
D1,' ',D3,' ', D5,
...
0
votes
1answer
528 views
Please can someone help me with code to produce a crossword like dataset?
I have to write a function that takes a list of string(words that vary in length), and an int(size of data set eg. int value of 4 will be 4 columns and four rows in table), and with this I must ...
0
votes
3answers
1k views
PHP: Script for generating Crossword game?
I need an script for generating crossword game. I have a list of 8 words for which I wnat to generate a crossword game, let's say for 15 column and 15 row.
I am not getting the concept of this ...
-1
votes
1answer
55 views
move between uitextview
After several attempts, I decided to write because I just can not figure out how to make it work. I refer to the crossword puzzle.
what I did is this:
- (void) viewDidLoad{
int move = 15;
int ...