KavidiDeSilva/romanToInteger
Challenge 1. This is a Java program that converts Roman numerals to integers using a loop to iterate through each character in the input string and calculate the total value based on the values of adjacent characters. It defines a helper function to map each Roman numeral character to its corresponding integer value.
Java