原題鏈接
Implement atoi to convert a string to an integer.
代碼
附上JavaScript版本
var myAtoi = function(str) {
return Math.max(Math.min(parseInt(str) || 0, 2147483647), -2147483648)
};
原題鏈接
Implement atoi to convert a string to an integer.
附上JavaScript版本
var myAtoi = function(str) {
return Math.max(Math.min(parseInt(str) || 0, 2147483647), -2147483648)
};