Skip to content

8-string-to-integer-atoi

DevGod
DevGod
Vtuber
class Solution {
public int myAtoi(final String s) {
Integer val = new Integer(s.trim());
return val;
}
}