The crossword tag has no wiki summary.
0
votes
1answer
78 views
Placing a crossword puzzle into a tkiner in python 3.2
I managed to write code (through a tutorial) that runs for a simple crossword puzzle. I'm pretty new at Python so I mistakenly used some code from 2.7 and some from 3.2 I think I managed to fix ...
1
vote
5answers
78 views
Regular expression for crossword solution
This is a crossword problem. Example:
the solution is a 6-letter word which starts with "r" and ends with "r"
thus the pattern is "r....r"
the unknown 4 letters must be drawn from the pool of ...
1
vote
3answers
125 views
Crossword words (across and down) storage?
If I create a crossword puzzle, I'd want to store the words filled in on a 9 by 9 grid for example.
I considered a 2d array but can only store the Across words and not the Down words.
Even if each ...
0
votes
1answer
69 views
php marking grid intersections x/y coords
I am trying to take an array of data containing x/y coords and directional info (across or down) and linking shared cells with a incrementing number. This is for a crossword puzzle. Here is the ...
0
votes
3answers
144 views
interface builder to build Crossword grid [closed]
I want to create crossword grid for iOS app, and because i'm finding it little hard to code it programmatically, so should I go ahead with Interface builder for now. what are the pros and cons?
-1
votes
2answers
160 views
Java: read a txt file with a matrix of letters, and search for words inside
I am trying to write a basic program in Java, and I'm using BlueJ.
I have to read a text file (input.txt) with a 15x15 matrix composed of letters, and look up words in it. These words are already ...
-2
votes
2answers
247 views
Generating a 8-direction crossword puzzle [closed]
I'm curious on how games like this can be generated programatically:
-
(I don't know how it's called in English), but there are letters in the grid, and the player is supposed to find all words ...
-1
votes
1answer
256 views
Crossword with given grid and words [closed]
I have a crossword grid, for example
+-----+
| * |
| |
+-----+
and list of words
a
ababa
bb
cc
ba
bb
ca
cb
Every word must be used. The goal is finding all variants how this crossword can ...
2
votes
2answers
438 views
Helping with crossword filling algorithm
Such problem was given me at my university, maybe someone will have interesting algorithm how to solve the problem. There're several solutions for it on stackoverflow, but none of them is ok (because ...
0
votes
0answers
90 views
crossword puzzle in Mercury
I am doing a crossword solver in Mercury. Now I am facing an problem, how to filled word into the next blank.
For example, the puzzle is like:
_ _ _ _ _# _ _ _ _ # _ _ _
I am able to fill the ...
1
vote
1answer
61 views
Where can i get Anagram Dictionary words?
Hi Am Implementing an anagram crossword. I need lot of dictionary words for me to implement the crossword.
So Where Can i get the bulk of anagram words in the internet?. Help Please
0
votes
0answers
85 views
Writing Crossword Compiler's lst format
There is a proprietary software written in Java - Crossword Compiler. It uses own binary format for words lists - lst-files.
It can also convert txt-files to lst-files. But this may only be done ...
3
votes
4answers
959 views
Crossword solver in PROLOG
The creole of Paradise Island has 14 words: "abandon", "abalone", "ana-
gram", "boat", "boatman", "child", "connect", "elegant", "enhance", "is-
land", "man", "sand", "sun", and "woman". The Paradise ...
0
votes
0answers
380 views
Crossword Puzzle Implementation as a CSP
my program which is written in c#,gets a grid of black cells and blank cells and a list of words as input and it should fit the words into the grid.
I wanna generate this crossword puzzle by CSP ...
5
votes
2answers
3k views
Algorithm for crossword puzzle with given grid [closed]
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 ...
0
votes
1answer
326 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
144 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
769 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,
...
-1
votes
1answer
138 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 ...
1
vote
3answers
533 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 ...
9
votes
2answers
563 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: ...
0
votes
1answer
1k 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 ...
3
votes
1answer
267 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
1answer
979 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 ...
3
votes
1answer
705 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
1answer
1k views
PHP-based Crossword Creator code [duplicate]
Possible Duplicate:
PHP: Script for generating Crossword game?
Does anyone know any PHP-based simple Crossword Creator API?
Thanks in advance.
1
vote
3answers
1k 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
2answers
2k 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 ...
36
votes
7answers
14k 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 ...