fun myAtoi(str: String): Int { var s = str.trim() if (s.isEmpty() || s.trim().get(0).isLetter()) return 0 //At this point, string can only ...
確定! 回上一頁