Portpolio221 프로그래머스 lv3. 단속카메라 java https://school.programmers.co.kr/learn/courses/30/lessons/12982 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr import java.util.Arrays; import java.util.Comparator; public class Solution { public int solution(int[][] routes) { // routes 배열을 진출 지점을 기준으로 오름차순 정렬 Arrays.sort(routes, Comparator.comparingInt(o -> o[1])); // 처음 카메라 위치는 맨 .. 2023. 12. 19. 프로그래머스 lv0. QR Code java https://school.programmers.co.kr/learn/courses/30/lessons/181903 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public String solution(int q, int r, String code) { String answer = ""; for (int i = r; i < code.length() ; i += q) { answer += String.valueOf(code.charAt(i)); } return answer; } } class Solution { public .. 2023. 12. 19. 프로그래머스 lv0. 두 수의 합 java https://school.programmers.co.kr/learn/courses/30/lessons/120802 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { int answer = -1; answer = num1 + num2; return answer; } } class Solution { public static void main(String[] args) { int solution1 = solution(3, 2); int solution2 =.. 2023. 12. 18. 프로그래머스 lv0. 나머지 구하기 java https://school.programmers.co.kr/learn/courses/30/lessons/120810 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { int answer = -1; answer = num1 % num2; return answer; } } class Solution { public static void main(String[] args) { int solution1 = solution(3, 2); int solution2 =.. 2023. 12. 18. 프로그래머스 lv.0 나이 출력 java https://school.programmers.co.kr/learn/courses/30/lessons/120820 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int age) { int answer = 0; answer = 2022 - age + 1; return answer; } } class Solution { public static void main(String[] args) { int solution1 = solution(40); int solution2 = solution(2.. 2023. 12. 18. 프로그래머스 lv0. 두 수의 차 java https://school.programmers.co.kr/learn/courses/30/lessons/120803 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { int answer = 0; answer = num1 - num2; return answer; } } class Solution { public static void main(String[] args) { int solution1 = solution(2, 3); int solution2 = .. 2023. 12. 18. 프로그래머스 lv0. 두 수의 곱 java https://school.programmers.co.kr/learn/courses/30/lessons/120804 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { int answer = 0; answer = num1 * num2; return answer; } } class Solution { public static void main(String[] args) { int solution1 = solution(3, 4); int solution2 = .. 2023. 12. 18. 프로그래머스 lv0. 몫 구하기 java https://school.programmers.co.kr/learn/courses/30/lessons/120805 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { int answer = 0; answer = num1 / num2; return answer; } } class Solution { public static void main(String[] args) { int solution1 = solution(10, 5); int solution2 =.. 2023. 12. 18. 프로그래머스 lv0. 숫자 비교하기 java https://school.programmers.co.kr/learn/courses/30/lessons/120807 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { if(num1 == num2) { return 1; } return -1; } } class Solution { public static void main(String[] args) { int solution1 = solution(2, 3); int solution2 = solution(11.. 2023. 12. 18. 네카라쿠배 코테 난이도는 어느 정도일까? 네카라쿠배 다들 가고 싶어 한다 내주변도르 근거로 프로그래머스 렙3 무난하게 풀고 렙4 어느 정도 풀수 있으면 ok라고 한다 (2023 기준) 반박시 니말다맞 2023. 12. 18. 이전 1 ··· 15 16 17 18 19 20 21 ··· 23 다음