Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 268 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 268 Bytes

30.Roman To Integer

Description

Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999.

Example

Input: VII
Output: 7

From

LeetCode