source: Java_Quellcode_SOOP_Vorlesung/arrays/SudokuPuzzles.java @ 187

Last change on this file since 187 was 187, checked in by tr, 9 years ago

Aufräumarbeiten

File size: 927 bytes
Line 
1package eu.hsrw.tr.prog.vl.arrays;
2
3public class SudokuPuzzles {
4
5    protected static String sLeer     = "000000000000000000000000000000000000000000000000000000000000000000000000000000000";
6
7    protected static String sSchnell  = "005000060008700000000030009000006000003000007000500040090001000060000700000005008";
8    protected static String sSchnell2 = "000000000037000000000690010004050000000000103000000670000003007000006000908000005";
9
10    protected static String sLangsam  = "000000000000000960580030000070005000003000000000600105000000070600004000009070008";
11    protected static String sLangsam2 = "000000000000000740806009000000040300000030006900700000000000058004000000073001000";       
12
13    protected static String sExtreme1 = "040000000000000394008000000000008600005040080000030012074050000010490000280006001";
14    protected static String sExtreme2 = "600030000000700010000000000200000503070001000000000600500360000000200008009000040";
15}
Note: See TracBrowser for help on using the repository browser.