File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -621,7 +621,7 @@ def exact_sqrt(n2):
621621 assert n * n == n2
622622 return n
623623
624- ## _____________________________________________________________________________
624+ #_____________________________________________________________________________
625625
626626class Wordlist :
627627 """This class holds a list of words. You can use (word in wordlist)
@@ -656,7 +656,7 @@ def __contains__(self, word):
656656 def __len__ (self ):
657657 return len (self .words )
658658
659- ## _____________________________________________________________________________
659+ #_____________________________________________________________________________
660660
661661class BoggleFinder :
662662 """A class that allows you to find all the words in a Boggle board. """
@@ -714,7 +714,7 @@ def __len__(self):
714714 "The number of words found."
715715 return len (self .found )
716716
717- ## _____________________________________________________________________________
717+ #_____________________________________________________________________________
718718
719719def boggle_hill_climbing (board = None , ntimes = 100 , verbose = True ):
720720 """Solve inverse Boggle by hill-climbing: find a high-scoring board by
You can’t perform that action at this time.
0 commit comments