我已經不配在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(); }}
最新評論