Algorithm: Battleship adding more code

Analyze the program to find the ship:
game1 = [0,0,0,0,1,1,0,0,0,0]
The first position on the list is not part of the board.

Add to the program a code to find the ship:
game2 = [0,1,1,0,0,0,0,0,0,0]
The first position on the list is not part of the board.

board_numbering