I am trying to build a sudoku solver and I am getting an error which says mixing iteration and read methods would mix data

后端 未结 0 1322
盖世英雄少女心
盖世英雄少女心 2020-12-04 14:25

This is the code:-

import sys

def read_file(textfile):
    f=open(textfile,\'r\')
    next(f)
    i=0
    j=0
    matrix=[[0 for x in range(9)] for y in rang         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题