iT邦幫忙

2022 iThome 鐵人賽

DAY 16
0
自我挑戰組

30天HackerRank 1 Month Preparation Kit系列 第 16

Day 16 Tower Breakers用Golang

  • 分享至 

  • xImage
  •  

題目

https://ithelp.ithome.com.tw/upload/images/20220916/20151833JK597vAyQE.png
https://ithelp.ithome.com.tw/upload/images/20220916/20151833RnZ6r49cMS.png

解題想法

func towerBreakers(n int32, m int32) int32 {
    // Write your code here
    if m==1{
        return 2
    }
    if n==1&&m>1{
        return 1
    }
    if n%2==0{
     return 2   
    }else{
        return 1
    }
}

結果

https://ithelp.ithome.com.tw/upload/images/20220916/20151833wXG0nQVnAr.png
https://ithelp.ithome.com.tw/upload/images/20220916/20151833JLrt64t76p.png


上一篇
Day 15 Drawing Book用Golang
下一篇
Day 17 Caesar Cipher用Golang
系列文
30天HackerRank 1 Month Preparation Kit30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言