This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Solo Challenge (Unit 2, Week 4) | |
# Take your time to see what concepts you feel comfortable and confident with. You are welcome to conduct research online, but make sure your code represents your own work. Please refrain from asking others for help. | |
# Overview | |
# Create a class BoggleBoard that includes the functionality of your methods from the previous challenge. | |
# To do this, take a look at the methods you've created. How can they be integrated into your BoggleBoard class? What needs to change? | |
# 1) Instantiate a new board object | |
# Transform your driver code so that it creates a new board object. You'll need to pass the original 2D array as an argument (let's call that dice_grid because boggle_board is going to be an object now.) |