728x90
SMALL

using System.Collections.Generic;

public class Solution {
    public int solution(string s) {
        int answer = 0;

        if(s[0].ToString() == "-")
        {
            s = s.Replace("-", "");
            answer = (-1) * int.Parse(s);
        }
        else
        {
            answer = int.Parse(s);
        }
        return answer;
    }
}

 

// -가 있으면 -를 붙인다.

728x90

설정

트랙백

댓글