-
프로그래머스 Lv2 (최대값, 최소값 구하기)프로그래머스 2020. 2. 4. 14:32
풀이 방법
split(" ") 으로 자른 후 비교해서 min, max를 판별한다.
내 코드
class Solution { public String solution(String s) { String answer = ""; String str[] = s.split(" "); int min, max, temp; min = max = Integer.parseInt(str[0]); for(int i=1; i<str.length; i++) { temp = Integer.parseInt(str[i]); if(temp > max) max = temp; else if(temp < min) min = temp; } return min + " " + max; } }
'프로그래머스' 카테고리의 다른 글
프로그래머스 Lv 1 (2016년) (0) 2020.01.06 프로그래머스 Lv2 (전화번호 목록) (0) 2019.12.16 프로그래머스 Lv1 (가운데 글자 가져오기) (0) 2019.12.12 프로그래머스 Lv 1 (두 정수 사이의 합) (0) 2019.12.12 프로그래머스 Lv1 (홀, 짝 구하기) (0) 2019.12.07