Lv.1文字列を整数に置換


問題の説明


文字列sを数値に変換した結果の関数を返します.

せいげんじょうけん


sの長さは1または5以下である.
sの一番前に記号(+,-)があるかもしれません.
sは記号と数字のみからなる.
sは「0」で始まりません.

イニシャルコード

class Solution {
    public int solution(String s) {
        int answer = 0;
        return answer;
    }
}

説明する

class Solution {
    public int solution(String s) {
        int answer = Integer.valueOf(s);
        return answer;
    }
}