Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, November 29, 2012

Codecademy: ...and Seek!


#sample solution


import random

board = []

for x in range(0,5):
  board.append(["O"] * 5)

def print_board(board):
  for row in board:
    print " ".join(row)

def random_row(board):
return random.randint(0,len(board)-1)

def random_col(board):
return random.randint(0,len(board[0])-1)

ship_row = random_row(board)
ship_col = random_col(board)

guess_row = input("Guess Row:")
guess_col = input("Guess Col:")

1 comment:

  1. FIX 2015
    ---------------
    import random

    board = []

    for x in range(0,5):
    board.append(["O"] * 5)

    def print_board(board):
    for row in board:
    print " ".join(row)

    def random_row(board):
    return random.randint(0,len(board)-1)

    def random_col(board):
    return random.randint(0,len(board[0])-1)

    ship_row = random_row(board)
    ship_col = random_col(board)

    guess_row = int(raw_input("Guess Row:"))
    guess_col = int(raw_input("Guess Col:"))

    ReplyDelete


This is an example of scrolling text using Javascript.

Popular Posts