About 29,800 results
Open links in new tab
  1. Basic word guessing game - Code Review Stack Exchange

    Dec 29, 2016 · As such, I decided to do a few basic string manipulation practices for myself. One of them, which I found in my old Java assignments, was a word guessing game. Very small, nothing …

  2. Python Guess the Word Game - Code Review Stack Exchange

    Jun 11, 2017 · Python Guess the Word Game Ask Question Asked 8 years, 5 months ago Modified 8 years, 1 month ago

  3. A simple Java game where the player guesses the word

    May 11, 2019 · It's a simple word guessing game. The game picks a random word - you guess a letter until it's correct, the game automatically starts a new one. Is my code readable? Am I doing anything …

  4. Java simple game - guess the word - Code Review Stack Exchange

    Mar 12, 2019 · I developed a simple and short java game in which a random word is selected and the user needs to guess it's letters one after another. I'm a java beginner so I'll be glad to hear your …

  5. string guessing game in java - Code Review Stack Exchange

    Apr 12, 2021 · Welcome to the guessing game! Guess one letter at a time. You have 5 incorrect guesses remaining. The Secret Word Is: ------ (6) Your Guess: a The word does not contain the letter …

  6. java - Word Guessing Game - Code Review Stack Exchange

    May 11, 2015 · A guess contains only capital letters and has the same length as the hidden word. Does that mean you can safely assume as such, or are you required to validate the input?

  7. java - Guessing the word game - Code Review Stack Exchange

    Nov 17, 2017 · Currently, your game is all static methods. If you start re-writing the game to use an instance of HangmanGame and use fields it will become easier. For example, good candidates for …

  8. A Simple Word Guessing Game - Code Review Stack Exchange

    Nov 6, 2019 · I have just finished learning basic-intermediate Python subjects and wanted to test myself. This word-guessing game is one of the first programs I have written. import random def …

  9. Command Line Hangman game - Code Review Stack Exchange

    Apr 13, 2025 · If I am interpreting the code correctly, every instance of a guessed letter appearing in the secret word is flagged and revealed for that single guess. A variation of the game might give credit …

  10. Python Hangman (guess the word) game - Code Review Stack Exchange

    Apr 2, 2019 · I implemented a Hangman/guess the word clone in Python. This is my first attempt at making an actual interactive app instead of just a list of functions or a static program. It is also the …