Help for this page
REWE MTAS KLET NVFO
sub find_boggle_words { $storage = prepare_boggle_search( @bogglelist ); ... sub test_boggle_word { # YOUR CODE HERE }
sub find_boggle_words { $storage = prepare_boggle_search( $n, @bogglelist ); ... @matched = grep { test_boggle_word( $_, $n, $storage ) } @$dict; return @matched; }