Skip to content

Commit 065bcbd

Browse files
authored
Improved task 13.
1 parent fa115e7 commit 065bcbd

File tree

1 file changed

+0
-1
lines changed
  • src/main/kotlin/g0001_0100/s0013_roman_to_integer

1 file changed

+0
-1
lines changed

src/main/kotlin/g0001_0100/s0013_roman_to_integer/Solution.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class Solution {
1414
'C' -> x = getX(s, x, i, 100, 'D', 'M')
1515
'D' -> x += 500
1616
'M' -> x += 1000
17-
else -> {}
1817
}
1918
}
2019
return x

0 commit comments

Comments
 (0)