| 1 | package String.Length_of_Last_Word; |
| 2 | |
| 3 | public class Sanghoo { |
| 4 | |
| 5 | public static int lengthOfLastWord(String s) { |
| 6 | String[] arr = s.split(" "); |
| 7 | return arr.length == 0 ? 0 : arr[arr.length-1].length(); |
| 8 | } |
| 9 | |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected