Skip to content

tdd-kata for solving crossword puzzles written in python

Notifications You must be signed in to change notification settings

payneal/word_search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Word Search Kata

  • completed

to implement the solution

  • using python 2.7
  • can create virtualenv if you want but no pip installs where used
  • add from word_search import Word_search
  • search = Word_search('fileLocation.txt')
  • search.solve()
  • will print out all cross word puzzle answers

Instructions

  • Given a text file consisting of a list of words, and a series of rows of single-character lists representing the word search grid, this program should search for the words in the grid and return a set of x,y coordinates for each word found

example

BONES,KHAN,KIRK,SCOTTY,SPOCK,SULU,UHURA
U,M,K,H,U,L,K,I,N,V,J,O,C,W,E
L,L,S,H,K,Z,Z,W,Z,C,G,J,U,Y,G
H,S,U,P,J,P,R,J,D,H,S,B,X,T,G
B,R,J,S,O,E,Q,E,T,I,K,K,G,L,E
A,Y,O,A,G,C,I,R,D,Q,H,R,T,C,D
S,C,O,T,T,Y,K,Z,R,E,P,P,X,P,F
B,L,Q,S,L,N,E,E,E,V,U,L,F,M,Z
O,K,R,I,K,A,M,M,R,M,F,B,A,P,P
N,U,I,I,Y,H,Q,M,E,M,Q,R,Y,F,S
E,Y,Z,Y,G,K,Q,J,P,C,Q,W,Y,A,K
S,J,F,Z,M,Q,I,B,D,B,E,M,K,W,D
T,G,L,B,H,C,B,E,C,H,T,O,Y,I,K
O,J,Y,E,U,L,N,C,C,L,Y,B,Z,U,H
W,Z,M,I,S,U,K,U,R,B,I,D,U,X,S
K,Y,L,B,Q,Q,P,M,D,F,C,K,E,A,B

Output

The output of the program is the location of each word found, each on a separate line. The location will be represented as a series of x,y coordinates, where both x and y start at zero at the top-left of the grid. From this position both x and y will increase, i.e. they will never be negative.

Given the example input above, the following output would be expected:

BONES: (0,6),(0,7),(0,8),(0,9),(0,10)
KHAN: (5,9),(5,8),(5,7),(5,6)
KIRK: (4,7),(3,7),(2,7),(1,7)
SCOTTY: (0,5),(1,5),(2,5),(3,5),(4,5),(5,5)
SPOCK: (2,1),(3,2),(4,3),(5,4),(6,5)
SULU: (3,3),(2,2),(1,1),(0,0)
UHURA: (4,0),(3,1),(2,2),(1,3),(0,4)

User Stories

  • As the Puzzle Solver

  • I want to search horizontally

  • So that I can find words on the X axis

  • As the Puzzle Solver

  • I want to search vertically

  • So that I can find words on the Y axis

  • As the Puzzle Solver

  • I want to search diagonally descending

  • So that I can find words the descend along the X axis

  • As the Puzzle Solver

  • I want to search diagonally ascending

  • So that I can find words that ascend along the X axis

As the Puzzle Solver

  • I want to search backwards
  • So that I can find words in reverse along all axes

FAQ

  • It looks hard to generate test data. How can do do this easily?

  • If you need to generate test data there are many sites which will generate puzzles for you, such as this one.

  • How large can the grid be?

  • Big or small, this is really up to you as long as you remember that the grid will always be square and that your solution should meet the requirements described above. This question is really outside the scope of the kata; the point is to focus on Test-Driving and software craftsmanship.

  • How long or short can the words be?

  • Words will be a minimum of two letters long, and will always fit within the grid along the axis on which it can be located.

About

tdd-kata for solving crossword puzzles written in python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages