Update roman-numerals.java (#901)

corrected the spelling mistake because of which my pull request failed the spell check
pull/906/head
AMIT KUSHWAHA 2022-10-03 19:14:29 +05:30 committed by GitHub
parent 62907b69ec
commit 5d18a66cd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import java.util.HashMap;
* ----------------------------------------------------------------------------------------------------------------
*
* Constraints:
* The input sting should contain only the characters ('I', 'V', 'X', 'L', 'C', 'D', 'M').
* The input string should contain only the characters ('I', 'V', 'X', 'L', 'C', 'D', 'M').
* It is guaranteed that the input is a valid roman numeral in the range [1, 3999].
*
* ----------------------------------------------------------------------------------------------------------------