From 0ace9393e4df7ad70d7eca6881febea3ac855ef1 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 1 Sep 2020 17:08:14 +0100 Subject: - Tidied up solution. --- challenge-076/mohammad-anwar/perl/ch-2.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/challenge-076/mohammad-anwar/perl/ch-2.pl b/challenge-076/mohammad-anwar/perl/ch-2.pl index 56dc078a9d..94654f4c98 100755 --- a/challenge-076/mohammad-anwar/perl/ch-2.pl +++ b/challenge-076/mohammad-anwar/perl/ch-2.pl @@ -53,7 +53,6 @@ die "ERROR: Missing grid file.\n" unless defined $GRID; die "ERROR: Invalid word size [$SIZE].\n" unless (($SIZE =~ /^\d+$/) && ($SIZE > 0)); -#my $puzzles = fetch_puzzles($GRID, $SIZE); my $words = search_words($GRID, $SIZE); if (keys %$words) { print sprintf("\nFound %d unique words:\n%s\n", -- cgit