You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import sudoku.SudokuBoardGenerator;
import sudoku.SudokuFile;
public class BTSolverExample {
public static void main(String[] args)
{
SudokuFile sf = SudokuBoardGenerator.generateBoard(9, 3, 3, 12);
will convert to:
import sudoku.SudokuBoardGenerator
import sudoku.SudokuFile
class BTSolverExample(object):
""" generated source for class BTSolverExample """
@classmethod
def main(cls, args):
""" generated source for method main """
sf = SudokuBoardGenerator.generateBoard(9, 3, 3, 12)
but it should be:
import sudoku.SudokuBoardGenerator
import sudoku.SudokuFile
class BTSolverExample(object):
""" generated source for class BTSolverExample """
@classmethod
def main(cls, args):
""" generated source for method main """
sf = sudoku.SudokuBoardGenerator.generateBoard(9, 3, 3, 12)
to point it out, SudokuBoardGenerator should be sudoku.SudokuBoardGenerator
The text was updated successfully, but these errors were encountered:
for example:
will convert to:
but it should be:
to point it out,
SudokuBoardGenerator
should besudoku.SudokuBoardGenerator
The text was updated successfully, but these errors were encountered: