알고리즘53 [프로그래머스] 음양 더하기 프로그래머스 1단계 음양 더하기 https://programmers.co.kr/learn/challenges 문제 설명 풀이 class Solution { public int solution(int[] absolutes, boolean[] signs) { int answer = 0; for (int i = 0; i < absolutes.length; i++) { int number = signs[i] ? 1 : -1; answer += absolutes[i] * number; } return answer; } } 2022. 4. 25. [프로그래머스] 제일 작은 수 제거하기 프로그래머스 1단계 제일 작은 수 제거하기 https://programmers.co.kr/learn/challenges 문제 설명 풀이 import java.util.*; class Solution { public int[] solution(int[] arr) { ArrayList result = new ArrayList(); int copyArr[] = Arrays.copyOf(arr, arr.length); if(arr.length == 1) { result.add(-1); } else { Arrays.sort(copyArr); int key = copyArr[0]; for(int i=0; i 2022. 4. 25. [프로그래머스] 부족한 금액 계산하기 프로그래머스 1단계 부족한 금액 계산하기 https://programmers.co.kr/learn/challenges 문제 설명 풀이 class Solution { public long solution(int price, int money, int count) { long answer = money; for (; count > 0; count--) { answer -= price * count; } return answer < 0 ? (answer * -1) : 0; } } 2022. 4. 25. [알고리즘] 달팽이 배열로 숫자 채우기 코드 public class Study1 { public static void main(String[] args) { int[][] array = new int[5][5]; int num = 0; int numberCount = 5; int sw = 1; int i = 0; int j = -1; while(true) { for(int x=0; x 2022. 4. 25. 이전 1 2 3 4 5 6 7 ··· 14 다음