목록SOFTEER (2)
today_is
https://softeer.ai/practice/7374 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai 코드import java.io.*;import java.util.*;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int arr[][] = new int[3][3]; int cost = 1000; for(int i=0; i 한 줄씩 해석 Scanner 객체를 생성한다 int로 2차원 배열을 3 * 3으로 생성 우선, cost는 터무니 없이 큰 값으로 초기화 시켜준다 (나중에 co..
https://softeer.ai/practice/7628 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai 오늘은 프로그래머스 대신에, 실제 기업에서 나올 법한 문제를 풀어보았다 ! 코드import java.util.*;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); int arr[] = new int[num]; for(int i=0; i map = new HashMap(); for(int i=0; i 한 ..