You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This program simulates the game of Battleship. The game was created with C. Since it's a two player game between a user vs the computer, there is some implementation of AI. Will be focusing more on…
A 2 dimensional array of characters that represents a maze. Each position can contain either be a wall or a blank. Starting at position (0, 0), list any path through the maze to get to location rig…