public interface Solution
Solution interface represents a solution to a Grid. It
consists of a list of paths, which should correspond to words
in the grid that appear in a given dictionary.| Modifier and Type | Method and Description |
|---|---|
void |
addPath(Path p)
Adds a path to this solution
|
java.util.List<Path> |
getPaths()
Returns the list of paths that comprise this solution.
|