Skip to content
Advertisement

Automate the Boring Stuff – Chapter 5 – Chess Dictionary Validator [closed]

First post, new to programming and having fun! All feedback on this post and my questions are welcome.

I’m working through Automate the Boring Stuff and attacking the first Chapter 5 problem Chess Dictionary Validator.

In this chapter, we used the dictionary value {‘1h’: ‘bking’, ‘6c’: ‘wqueen’, ‘2g’: ‘bbishop’, ‘5h’: ‘bqueen’, ‘3e’: ‘wking’} to represent a chess board. Write a function named isValidChessBoard() that takes a dictionary argument and returns True or False depending on if the board is valid.

A valid board will have exactly one black king and exactly one white king. Each player can only have at most 16 pieces, at most 8 pawns, and all pieces must be on a valid space from ‘1a’ to ‘8h’; that is, a piece can’t be on space ‘9z’. The piece names begin with either a ‘w’ or ‘b’ to represent white or black, followed by ‘pawn’, ‘knight’, ‘bishop’, ‘rook’, ‘queen’, or ‘king’. This function should detect when a bug has resulted in an improper chess board.

my questions and code:

  1. Is evaluating dictionary keys/values through these for loops + multiple if statements the “best practice”? It seems like a lot of code. Changing to include some elif caused issues if it followed with another if statement in the for loop.
  2. Line 23 if i[0] == 'b': errors out because the chess spaces which are empty string values have no character at i[0]. What’s the best way to express/evaluate empty values? If it is with ”, should I add leading condition in the loop which evaluates value == ”, and then ‘continue’?
  3. Why can I not collapse line 15 into 11 such that I have one statement: if 'bking' or 'wking' not in board.values():? If I try that, the statement result is True; however the dictionary contains both values so shouldn’t it evaluate to False and keep the code running?
JavaScript

Advertisement

Answer

Edit: When you define valid count, it doesn’t take into consideration that you might get a pawn to the other end of the board and end up with two queens, though I don’t know how you could fix this without causing the program to accept wonky answers (such as two queens at the start of a game for instance). Any help here would be appreciated!

Since you asked if there was an alternative I present the following.

Steps

  • Define the set of all chess pieces
  • Define the valid count range of pieces by type
  • Count the pieces on the board
  • Check pieces counts in a valid range
  • Check that positions are valid
  • Check that pieces names are valid

Code

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement