Skip to content

Commit

Permalink
Feat : Put multiple values in the temporary boxes, when the value ent…
Browse files Browse the repository at this point in the history
…ry is greater than 1 digit
  • Loading branch information
Lob2018 committed Feb 1, 2025
1 parent 6c954da commit 35dd498
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Binary file modified .myresources/design_and_modeling/images/SudokuFX_in_action.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .myresources/design_and_modeling/uml/uc/uc.drawio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .myresources/design_and_modeling/uml/uc/uc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public SecureRandomGenerator() {
* @param bound The upper limit (exclusive) for generating the random number.
* @return A random integer between 0 and bound.
*/
public int nextInt(int bound) {
public final int nextInt(int bound) {
return secureRandom.nextInt(bound);
}

Expand All @@ -39,7 +39,7 @@ public int nextInt(int bound) {
* @param bound The upper limit (exclusive) for generating the random number.
* @return A random integer between origin and bound.
*/
public int nextInt(int origin, int bound) {
public final int nextInt(int origin, int bound) {
return secureRandom.nextInt(bound - origin) + origin;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ iso VARCHAR(2) NOT NULL
CREATE TABLE background (
backgroundid BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
hexcolor VARCHAR(7) NOT NULL,
imagepath VARCHAR(260),
imagepath VARCHAR(1024),
isimage BOOLEAN DEFAULT FALSE NOT NULL,
);
-- Création de la table "gamelevel"
Expand All @@ -31,8 +31,8 @@ levelname VARCHAR(64) NOT NULL
-- Création de la table "grid"
CREATE TABLE grid (
gridid BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
defaultgridvalue VARCHAR(162) NOT NULL,
gridvalue VARCHAR(162) NOT NULL,
defaultgridvalue VARCHAR(81) NOT NULL,
gridvalue VARCHAR(810) NOT NULL,
difficulty TINYINT
);
-- Création de la table "player"
Expand Down

0 comments on commit 35dd498

Please sign in to comment.