pub fn my_atoi(s: String) -> i32
Expand description

字符串转换为 32 位整型数

参数

  • s - 待转换字符串

示例

use leetcode_rust::problems_cn::p000_0xx::p000_008::my_atoi;

assert!(my_atoi(String::from("-12.5")) == -12);