iT邦幫忙

0

請問 leetcode 9. Palindrome Number 我用swift和typescipt寫出現錯誤,該怎麼處理呢?

  • 分享至 

  • xImage

各位大大好!我今天練習leetcode的9.Palindrome Number,我用swift和Typescript寫法出現錯誤,我要怎麼處理呢?語法寫錯嗎?不知道是哪一行出問題?

程式碼圖片,如下:

Typescript:
https://ithelp.ithome.com.tw/upload/images/20221108/20145992eg9yPtQXVC.png

swift:
https://ithelp.ithome.com.tw/upload/images/20221108/20145992JYKC2C8AAl.png

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

2
tryit
iT邦研究生 4 級 ‧ 2022-11-08 01:04:55

swift

class Solution {
    func isPalindrome(_ x: Int) -> Bool {
    if x<0{
        return false
    }
    var temp = x;
    var rev = 0;
    
    return  rev == x
    }
}

Typescript

function isPalindrome(x: number): boolean {
    if (x < 0){
      return false;  
    } 
    let rev = 0;

    return rev === x;
}

如果不知道自己錯哪,建議將底下的錯誤訊息拿去google。
我隱藏了部分程式碼,除非你有將你以前問的問題選取最佳解答。

謝謝妳

我要發表回答

立即登入回答