728x90 반응형 알고리즘 문제풀이146 프로그래머스 - 점의 위치 구하기 class Solution { public int solution(int[] dot) { int answer; if(dot[0] > 0){ if(dot[1] > 0) answer = 1; else answer = 4; }else{ if(dot[1] > 0) answer = 2; else answer= 3; } return answer; } } 2023. 2. 21. 프로그래머스 - 피자 나눠 먹기(1) class Solution { public int solution(int n) { int answer; if(n 2023. 2. 21. 프로그래머스 - 양꼬치 class Solution { public int solution(int n, int k) { int count = n/10; return (n*12000) + ((k-count)*2000); } } 2023. 2. 21. 프로그래머스 - 배열의 평균값 class Solution { public double solution(int[] numbers) { int sum = 0; for(int i=0; i 2023. 2. 21. 이전 1 ··· 31 32 33 34 35 36 37 다음 728x90 반응형