python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is there a way to make a "clickable" button, that is actually a text field?
I am making a Sudoku App using Java & Swing, and I was wondering if there was a way to edit one "box" in the 2d array using a MouseEvent and getX(), getY(). So for example, if the board ...
eswcs
Votes: 0
Answers: 1
How to reset randomness in a function in a sudoku generator in javascript
I am building a sudoku generator which has randomness in it. In my code, there is a function that generates that sudoku. The problem is that I can't get the two sudoku's to be different
I tried runnin...
Emiel VdV
Votes: 0
Answers: 1
Get all the subgrids from a Sudoku board using only NumPy methods
I have to write a SudokuBoard class using only NumPy. As part of this class I want to define the get_block_idx_with_highest_sum() function which will return the index of the subgrid (3x3) which has th...
Zoltán Orosz
Votes: 0
Answers: 0
Solve Sudoku using iterative Breadth First Search
I have a task to solve sudoku using iterative Breadth first Search algorithm but I'm struggling with applying this algorithm exactly to this problem.
I figured out that I need a queue and I have to lo...
Vadim Sheremetov
Votes: 0
Answers: 1