์ฒด๊ฐ Level : โ
โ โ Review: ์กฐ๊ฑด์ด ํท๊ฐ๋ ค์ ์กฐ๊ธ ํ๋ค์๋ค ์ํ๊ณต๋ถ๋ฅผ ๋ค์ํด์ผํ๋ ๐คฃ |
๐ก์ผ๊ฐํ์ ๋ ๋ณ์ ๊ธธ์ด๊ฐ ๋ด๊ธด ๋ฐฐ์ด sides์ด ๋งค๊ฐ๋ณ์๋ก ์ฃผ์ด์ง๋๋ค. ๋๋จธ์ง ํ ๋ณ์ด ๋ ์ ์๋ ์ ์์ ๊ฐ์๋ฅผ return
1. ์ต๋๊ฐ , ์ต์๊ฐ์ ์ฐพ์์ค๋ค.
2. ๋์คํ๋๊ฐ ํฐ ๊ฐ์ผ๋ = ํฐ๊ฐ-์์๊ฐ + 1 ~ ํฐ๊ฐ๊น์ง ๊ฐ์
3. ๋๋จธ์ง ๋ค๋ฅธ ํ๋๊ฐ ํฐ๊ฐ์ผ๋ = ํฐ๊ฐ + 1 ~ ํฐ๊ฐ+์์๊ฐ ๊ฐ์
class Solution {
public int solution(int[] sides) {
int cnt = 0;
int max = Math.max(sides[0], sides[1]);
int min = Math.min(sides[0], sides[1]);
for(int i = max-min+1 ; i <= max ; i ++) {
cnt++;
}
for(int i = max+1 ; i < max+min ; i ++) {
cnt++;
}
return cnt;
}
}