Gidhub BE Developer

Check Input Data Format

2018-07-22
goodGid

Problem : Alphabet

Problem URL : 문자열 내림차순으로 배치하기

Code

bool solution(string s) {
    for (int i = 0; i < s.length(); i++) {
        if (s[i] >= 97 && s[i] <= 122) { // Lower Case
            lower.push_back(s[i]);
        }
        if (s[i] >= 65 && s[i] <= 90) { // Upper Case
            upper.push_back(s[i]);
        }
    }
    return true;
}

Problem : Int

Problem URL : 문자열 다루기 기본

Code

bool solution(string s) {
    for (int i = 0; i < s.length(); i++) {
        if (s[i] < 48 || s[i] > 57)
            return false;
    }
    return true;
}

Feed Back

  • 각 자릿수가 소/대문자, 인트인지 체크 !

Recommend

Index