5

チェス盤のような配列を作成するより良い (そしてより短い) 方法はありますか? ボードの要件は次のとおりです。

  • ボードは異なるサイズにすることができます (私の例では 3x3 です)
  • ボードの左下の四角は常に黒くする必要があります
  • 黒い四角は によって提示され"B"、白い四角は によって提示されます"W"

私が持っているコード:

def isEven(number):
    return number % 2 == 0

board = [["B" for x in range(3)] for x in range(3)]
if isEven(len(board)):
    for rowIndex, row in enumerate(board):
        if isEven(rowIndex + 1):
            for squareIndex, square in enumerate(row):
                if isEven(squareIndex + 1):
                    board[rowIndex][squareIndex] = "W"
        else:
            for squareIndex, square in enumerate(row):
                if not isEven(squareIndex + 1):
                    board[rowIndex][squareIndex] = "W"
else:
    for rowIndex, row in enumerate(board):
        if not isEven(rowIndex + 1):
            for squareIndex, square in enumerate(row):
                if isEven(squareIndex + 1):
                    board[rowIndex][squareIndex] = "W"
        else:
            for squareIndex, square in enumerate(row):
                if not isEven(squareIndex + 1):
                    board[rowIndex][squareIndex] = "W"

for row in board:
    print row

出力:

['B', 'W', 'B']
['W', 'B', 'W']
['B', 'W', 'B']
4

7 に答える 7

10

どうですか:

>>> n = 3
>>> board = [["BW"[(i+j+n%2+1) % 2] for i in range(n)] for j in range(n)]
>>> print board
[['B', 'W', 'B'], ['W', 'B', 'W'], ['B', 'W', 'B']]
>>> n = 4
>>> board = [["BW"[(i+j+n%2+1) % 2] for i in range(n)] for j in range(n)]
>>> print board
[['W', 'B', 'W', 'B'], ['B', 'W', 'B', 'W'], ['W', 'B', 'W', 'B'], ['B', 'W', 'B', 'W']]
于 2013-05-02T21:06:30.860 に答える
2

ここにitertools解決策があります:

from itertools import cycle
N = 4

colors = cycle(["W","B"])
row_A  = [colors.next() for _ in xrange(N)]
if not N%2: colors.next()
row_B  = [colors.next() for _ in xrange(N)]

rows = cycle([row_A, row_B])
board = [rows.next() for _ in xrange(N)]

N=4これにより、

['W', 'B', 'W', 'B']
['B', 'W', 'B', 'W']
['W', 'B', 'W', 'B']
['B', 'W', 'B', 'W']

これは複数の色 (「B」、「W」、「G」になるボードなど) に拡張できるはずです。これは、行のリストに新しい行と循環を必ず追加する場合です。

于 2013-05-02T21:14:58.187 に答える
2

一種のハックですが、

print [["B" if abs(n - row) % 2 == 0 else "W" for n in xrange(3)] for row in xrange(3)][::-1]

これは要件クリープか何かのようです =)

def make_board(n):
    ''' returns an empty list for n <= 0 '''
    return [["B" if abs(c - r) % 2 == 0 else "W" for c in xrange(n)] for r in xrange(n)][::-1]
于 2013-05-02T21:04:19.077 に答える
0
for i in range(len(board)):
    for j in range(len(board)):
        if isEven(i + j + len(board)):
            board[i][j] = "W"
于 2013-05-02T21:05:16.827 に答える
0

めちゃくちゃわかりやすい。さらに、長方形のボードを生成できます。

def gen_board(width, height):
    bw = ['B', 'W']
    l = [[bw[(j + i) % 2] for j in range(width)] for i in range(height)]
    # this is done to make sure B is always bottom left
    # alternatively, you could do the printing in reverse order
    l.reverse()

    ## or, we could ensure B is always bottom left by adjusting the index
    #offset = height%2 + 1
    #l = [[bw[(j + i + offset) % 2] for j in range(width)] for i in range(height)]
    return l

def print_board(b):
    for row in b:
        print row

試乗:

>>> print_board(gen_board(4, 3))
['B', 'W', 'B', 'W']
['W', 'B', 'W', 'B']
['B', 'W', 'B', 'W']
于 2013-05-02T21:22:17.190 に答える
0

これは、常に左下隅を「B」に正しく設定します。

def board(n):
    def line(n, offset):
        return [(i+offset) % 2 and 'W' or 'B' for i in range(n)]
    return [line(n,i) for i in range(n+1,1,-1)]
于 2013-05-02T21:12:48.663 に答える