feat(Map.java): ajout fromChars fonction

This commit is contained in:
2025-10-29 17:47:39 +01:00
parent 5a62b58e9e
commit 183e45dbd4
2 changed files with 17 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
public class Main {
public static void main(String[] args) {
System.out.println("Projet Livrable 1");
Map m = Map.fromChars(new Character[][] {
{'3', '#', '2'},
{'#', ' ', 'S'},
{'9', '#', 'F'},
});
}
}