%@ page import="uk.org.mafoo.wordsearch.*" %>
<%@ page import="java.util.*" %>
<%@ page errorPage="error.jsp" %>
<%
int height = Integer.parseInt(request.getParameter("height"));
int width = Integer.parseInt(request.getParameter("width"));
if (request.getParameter("words").length() > 2048) { throw new Exception("Input too large"); }
if (height > 100 || width > 100) { throw new Exception("Dimentions too large"); }
ListWordsearch builder
Words
<% for (String word : words) { %>
Grid
<% for(char[] row : grid) { %>
<% for(char c : row) { %>
<% } %>
<%= c %>
<% } %>