목록프로그래머스 (6)
지구정복
-문제 https://school.programmers.co.kr/learn/courses/30/lessons/42862?language=python3 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr -자바 풀이 import java.util.Arrays; class Solution { public int solution(int n, int[] lost, int[] reserve) { int answer = 0; //밑에 비교하는 반복문에서 0이나 n에서 앞뒤학생비교시 //값이 없으면 Out of Index에러나옴, 이를 피하기 위해 n+2로 만든다. in..
-문제 https://school.programmers.co.kr/learn/courses/30/lessons/43165. 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr -자바 class Solution { public int solution(int[] numbers, int target) { int answer = 0; answer = dfs(numbers, target, numbers[0], 1) + dfs(numbers, target, -numbers[0], 1); return answer; } public int dfs(int[] numbers, ..