프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 📚 문제 자연수 n이 매개변수로 주어집니다. n을 3진법 상에서 앞뒤로 뒤집은 후, 이를 다시 10진법으로 표현한 수를 return 하도록 solution 함수를 완성해주세요. 📝 문제 해결 매개변수 n을 3진수로 만들고 다시 3진수를 10진수로 변환해주었다. n진수 -> 10진수 변환하기 : Integer.parseInt(string str, int 진수) ※ n진수 값을 String 타입으로 변환해 변수로 넣어줘야함 💻 코드 class Solution { public int solution(int n) {..
프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 📚 문제 정수 배열 numbers가 주어집니다. numbers에서 서로 다른 인덱스에 있는 두 개의 수를 뽑아 더해서 만들 수 있는 모든 수를 배열에 오름차순으로 담아 return 하도록 solution 함수를 완성해주세요. 📝 문제 해결 배열의 모든 수를 더해 중복값을 허용하지 않는 HashSet에 저장해주고 다시 int 배열로 바꿔 정렬한 뒤 리턴하면 된다. hs.stream().mapToInt(Integer::intValue).sorted().toArray(); 스트림을 사용하면 배열이나 컬렉션(List..
Find Pivot Index - LeetCode Can you solve this real interview question? Find Pivot Index - Given an array of integers nums, calculate the pivot index of this array. The pivot index is the index where the sum of all the numbers strictly to the left of the index is equal to the sum of leetcode.com 📚 문제 Given an array of integers nums, calculate the pivot index of this array. The pivot index is the..