Skip to content

Latest commit

 

History

History
31 lines (11 loc) · 1.16 KB

Challenges 61-70.md

File metadata and controls

31 lines (11 loc) · 1.16 KB

Challenges 61-70: "Pew pew!"

  1. Modify your game to make it possible for a player to play against the computer.

  2. Write a program to generate a desck of cards and shuffle them. Ask the user how many cards they want and deal them that number.

  3. Black Jack: Using your deck of cards program write a program to play Black Jack - allow the user to lpay against the computer or another human.

  4. Battleships: Create a game of battleships. Use a standard board layout for the ships.

  5. Battleships 2: Extend your battleships game and get the somputer to layout the ships randomly - make sure they don't overlap.

  6. Battleships 3: Extend your battleships game so that we can have a 2 player game (both boards should be laid out by the computer).

  7. Sudoku 1: Write a sudoku checker - make sure that a given sudoku grid is valid.

  8. Sudoku 2: Write a sudoku solver - you're given a sudoku puzzle and have to solve it.

  9. Sudoku 3: Create a user interface for your sudoku solver, if you haven't done so already. Use Tkinter, pygame or some other UI module.

70 .Sudoku 4: Using what you've done before, generate a new sudoku puzzle and ask the user to solve it.