1

私は現在、最初の Python コースを受講しており、次の演習を受けました。

# THREE GOLD STARS

# Sudoku [http://en.wikipedia.org/wiki/Sudoku]
# is a logic puzzle where a game
# is defined by a partially filled
# 9 x 9 square of digits where each square
# contains one of the digits 1,2,3,4,5,6,7,8,9.
# For this question we will generalize
# and simplify the game.

# Define a procedure, check_sudoku,
# that takes as input a square list
# of lists representing an n x n
# sudoku puzzle solution and returns the boolean
# True if the input is a valid
# sudoku square and returns the boolean False
# otherwise.

# A valid sudoku square satisfies these
# two properties:

#   1. Each column of the square contains
#       each of the whole numbers from 1 to n exactly once.

#   2. Each row of the square contains each
#       of the whole numbers from 1 to n exactly once.

# You may assume the the input is square and contains at
# least one row and column.

correct = [[1,2,3],
           [2,3,1],
           [3,1,2]]

incorrect = [[1,2,3,4],
             [2,3,1,3],
             [3,1,2,3],
             [4,4,4,4]]

incorrect2 = [[1,2,3,4],
             [2,3,1,4],
             [4,1,2,3],
             [3,4,1,2]]

incorrect3 = [[1,2,3,4,5],
              [2,3,1,5,6],
              [4,5,2,1,3],
              [3,4,5,2,1],
              [5,6,4,3,2]]

incorrect4 = [['a','b','c'],
              ['b','c','a'],
              ['c','a','b']]

incorrect5 = [ [1, 1.5],
               [1.5, 1]]

def check_sudoku():


#print check_sudoku(incorrect)
#>>> False

#print check_sudoku(correct)
#>>> True

#print check_sudoku(incorrect2)
#>>> False

#print check_sudoku(incorrect3)
#>>> False

#print check_sudoku(incorrect4)
#>>> False

#print check_sudoku(incorrect5)
#>>> False

私の考えは、次のことを行うことでこれを解決することでした。

  1. まず、すべての列をリストに追加する必要があります
  2. 次に、次から始まるインデックスを作成し、数独の各要素をネストされた for ループとしてチェックできますif soduko.count(index) != 1 --> return false

ただし、1 つの数独は文字列の文字で構成されます。私はそれをどうするかわかりません。a = 97 の場合、リスト内の各要素を ord() を使用して ASCII に変換し、ASCII コードからインデックスを開始することができます。その前に、リストが数値か文字列かを確認する必要があります。どうやってやるの?

ありがとう!

4

4 に答える 4

1

私が理解している限り、入力に整数ではない要素が含まれている場合、それは有効な数独正方形ではないと確信できます。したがって、型チェックは必要ありません。

def isValidSudokuSquare(inp):
  try:
    # .. validation that assumes elements are integers
  except TypeError:
    return False

(余談/ヒント: setsを使用すると、Python の約 2 行の非常に読みやすい行で、この検証の残りを実装できます。)

于 2013-10-13T16:29:29.907 に答える
1

項目が文字列の場合、 メソッドisdigit()isalpha()メソッドを使用できます。それらが文字列であることを確認する必要があります。そうしないと、例外が発生します。

if all([isinstance(x, int) for x in my_list]):
    # All items are ints
elif all([isinstance(x, str) for x in my_list]):
    if all([x.isdigit() for x in my_list]):
        # all items are numerical strings
    elif all([x.isalpha() for x in my_list]):
        # all items are letters' strings (or characters, no digits)
    else:
        raise TypeError("type mismatch in item list")
else:
    raise TypeError("items must be of type int or str")
于 2013-10-13T16:30:09.273 に答える
0
def check_sudoku( grid ):
    '''
    list of lists -> boolean

    Return True for a valid sudoku square and False otherwise.
    '''

    for row in grid:        
        for elem in row:
            if type(elem) is not int:
                return False # as we are only interested in wholes 
            # continue with your solution
于 2013-10-13T17:32:38.150 に答える