Skip to content

Commit

Permalink
Update logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleshot committed Aug 15, 2024
1 parent 9926dd7 commit 0e39b6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Algomap/roman_to_integer/roman_to_integer.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ def romanToInt(self, s):
else:
sum += d[s[i]]
i += 1
return sum
return sum

0 comments on commit 0e39b6b

Please sign in to comment.