8. 字符串轉換整數 (atoi)

class Solution {     public int myAtoi(String str) {         int n = str.length();         int i = 0;         while(i < n && str.charAt(i) == ' ') {             i++;         }         if(i == n || !((
相關文章
相關標籤/搜索