Add HZ part 3

This commit is contained in:
Matti 2024-05-28 23:03:34 +02:00
parent 318025d3df
commit 2a7ba7393c
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -29,3 +29,4 @@ bin/
.DS_Store .DS_Store
/Medien/Bilder & Co/Goldfrosch.pptx /Medien/Bilder & Co/Goldfrosch.pptx
/Medien/Bilder & Co/Goldfrosch.xlsx /Medien/Bilder & Co/Goldfrosch.xlsx
/src/HZ/

View File

@ -4,9 +4,9 @@ public class Demo {
public static void main(String[] args) { public static void main(String[] args) {
Queenproblem Q = new Queenproblem(); Queenproblem Q = new Queenproblem();
Q.solve(); Q.solve();
System.out.println("========\n"); // System.out.println("========\n");
Q.setField(new int[]{0,7,0,0,0,0,0,8}); // Q.setField(new int[]{0,0,0,0,0,0,0,0});
Q.solve(); // Q.solve();
} }
} }