suryansh-code / hangman

Blank line contains whitespace FLK-W293
Style
Minor
6 months ago6 months old
blank line contains whitespace
281
282
283def hangman_with_hints(secret_word):
284        285    # FILL IN YOUR CODE HERE AND DELETE "pass"
286    guesses_remaining = GUESS_LIMIT
287    warnings_remaining = 3
blank line contains whitespace
 22    returns: boolean, True if all the letters of secret_word are in letters_guessed;
 23      False otherwise
 24    """
 25     26    secret_word_list = list(secret_word)
 27    blank_word = ""
 28    complete = 0
blank line contains whitespace
154                blank_char.append(index)
155    else:
156        return False
157    158    my_word_it = ''
159    other_word_it = ''
160