2025 init

This commit is contained in:
Romain Lefeuvre
2025-11-18 14:44:07 +01:00
commit ac81d61d01
21 changed files with 986 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package fr.istic.vv;
public class RomanNumeraUtils {
public static boolean isValidRomanNumeral(String value) { return false; }
public static int parseRomanNumeral(String numeral) { return 0; }
public static String toRomanNumeral(int number) { return ""; }
}