From 065bcbda11ac8e4a6d2d1622bb867650e05b85fd Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Fri, 7 Jan 2022 17:49:11 +0200 Subject: [PATCH] Improved task 13. --- src/main/kotlin/g0001_0100/s0013_roman_to_integer/Solution.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/g0001_0100/s0013_roman_to_integer/Solution.kt b/src/main/kotlin/g0001_0100/s0013_roman_to_integer/Solution.kt index 22862ec96..a81087762 100644 --- a/src/main/kotlin/g0001_0100/s0013_roman_to_integer/Solution.kt +++ b/src/main/kotlin/g0001_0100/s0013_roman_to_integer/Solution.kt @@ -14,7 +14,6 @@ class Solution { 'C' -> x = getX(s, x, i, 100, 'D', 'M') 'D' -> x += 500 'M' -> x += 1000 - else -> {} } } return x