iT邦幫忙

2021 iThome 鐵人賽

DAY 20
0
自我挑戰組

30 天學 Golang?Go 啦哪次不 Go系列 第 20

Day20# Leetcode - Roman to Integer

  • 分享至 

  • xImage
  •  

第 20 天的 Leetcode 要開始拉,那我們就開始吧 ─=≡Σ(((っ›´ω`‹ )っ!

今天要寫的題目是 Roman to Integer,顧名思義就是把羅馬數字轉換成一般常見的阿拉伯數字。

Example:

Input: s = "III"
Output: 3
Input: s = "IV"
Output: 4
Input: s = "MCMXCIV"
Output: 1994
Explanation: M = 1000, CM = 900, XC = 90 and IV = 4.

困難的點是必須要去判斷像 IV 這種由兩個字組成的值。

I can be placed before V (5) and X (10) to make 4 and 9.
X can be placed before L (50) and C (100) to make 40 and 90.
C can be placed before D (500) and M (1000) to make 400 and 900.

結尾

怕超過時間,先待補


上一篇
Day19# Leetcode - Palindrome Number
系列文
30 天學 Golang?Go 啦哪次不 Go20
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言