Skip to content

Instantly share code, notes, and snippets.

@gnmearacaun
Created April 14, 2017 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gnmearacaun/d34e4bea4bbd87b03d90545b85ee0e4d to your computer and use it in GitHub Desktop.
Save gnmearacaun/d34e4bea4bbd87b03d90545b85ee0e4d to your computer and use it in GitHub Desktop.
a word search puzzle
import java.util.*;
class Wsldriver {
public static void main (String[] args){
WordSearch wpuzzle = new WordSearch (new ArrayList<String>(Arrays.asList( "this", "that","these",
"those", "i", "you",
"them","us","it","is",
"on", "off", "up",
"down", "whatever")));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment