Skip to content
Snippets Groups Projects
Commit 4c84e3b3 authored by Colin DAMON's avatar Colin DAMON
Browse files

Delete useless check

parent 668c6aa1
No related branches found
No related tags found
1 merge request!37Resolve "TCR Roman Numerals"
......@@ -3,10 +3,6 @@ package fr.ippon.kata.numeral;
public class Numerals {
public static String toRoman(int arabic) {
if (arabic == 0) {
return "";
}
return "I".repeat(arabic);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment