suryansh-code / hangman

Missing module/function docstring PY-D0003
Documentation
Minor
6 months ago6 months old
Docstring missing for hangman_with_hints
280            print("Sorry, you ran out of guesses. The word was %s." % secret_word)
281
282
283def hangman_with_hints(secret_word):284        
285    # FILL IN YOUR CODE HERE AND DELETE "pass"
286    guesses_remaining = GUESS_LIMIT
Docstring missing for countDis
  7TOTAL_WARNINGS = 3
  8
  9
 10def countDis(str): 11
 12    s = set(str)
 13    return len(s)