首頁>技術>

我已經不配在LeeCode刷題了碼,#程式設計師招聘##刷題#

58. 最後一個單詞的長度我在本地執行這個測試資料

這是我的程式碼

public class Main {    public static void main(String[] args) {        System.out.println("最後一個單詞的長度:" + lengthOfLastWord("a"));    }    public static int lengthOfLastWord(String s) {        if(s == null){            return 0;        }        if(s.length() <= 0){            return 0;        }        char[] chars = s.toCharArray();        for(int i = chars.length - 1; i >= 0; i--){            if(chars[i] == ' '){                return chars.length - 1 - i;            }        }        return s.length();    }}

13
最新評論
  • BSA-TRITC(10mg/ml) TRITC-BSA 牛血清白蛋白改性標記羅丹明
  • 系統理解 iOS 庫與框架