프로그래머스 - Level1 자릿수 더하기 문제 설명 자연수 N이 주어지면, N의 각 자릿수의 합을 구해서 return 하는 solution 함수를 만들어 주세요.예를들어 N = 123이면 1 + 2 + 3 = 6을 return 하면 됩니다. 제한사항 N의 범위 : 100,000,000 이하의 자연수 🙋♂️나의 풀이 요구사항 파악 ...
HackerRank - Jumping on the Clouds (JavaScript)
HackerRank - Jumping on the Clouds Problem There is a new mobile game that starts with consecutively numbered clouds. Some of the clouds are thunderheads and others are cumulus. The player ca...
HackerRank - Repeated String (JavaScript)
HackerRank - Repeated String Problem There is a string, $s$ , of lowercase English letters that is repeated infinitely many times. Given an integer, $n$, find and print the number of letter a...
프로그래머스 Level 1 - 정수 내림차순으로 배치하기 (JavaScript)
프로그래머스 - Level1 정수 내림차순으로 배치하기 문제 설명 함수 solution은 정수 n을 매개변수로 입력받습니다. n의 각 자릿수를 큰것부터 작은 순으로 정렬한 새로운 정수를 리턴해주세요. 예를들어 n이 118372면 873211을 리턴하면 됩니다. 제한사항 n은 1이상 8000000000 이하인 자연수입니다. 🙋♂️나의 ...
프로그래머스 Level 1 - 자연수 뒤집어 배열로 만들기 (JavaScript)
프로그래머스 - Level1 자연수 뒤집어 배열로 만들기 문제 설명 자연수 n을 뒤집어 각 자리 숫자를 원소로 가지는 배열 형태로 리턴해주세요. 예를들어 n이 12345이면 [5,4,3,2,1]을 리턴합니다. 제한사항 n은 10,000,000,000이하인 자연수입니다. 🙋♂️나의 풀이 두 가지 풀이를 할 수 있다. 1. 나머지를 ...
프로그래머스 Level 1 - 정수 제곱근 판별 (JavaScript)
프로그래머스 - Level1 정수 제곱근 판별 문제 설명 임의의 양의 정수 n에 대해, n이 어떤 양의 정수 x의 제곱인지 아닌지 판단하려 합니다. n이 양의 정수 x의 제곱이라면 x+1의 제곱을 리턴하고, n이 양의 정수 x의 제곱이 아니라면 -1을 리턴하는 함수를 완성하세요. 제한사항 n은 1이상, 50000000000000 이하인...
HackerRank - Counting Valleys (JavaScript)
HackerRank - Counting Valleys Problem An avid hiker keeps meticulous records of their hikes. During the last hike that took exactly steps, for every step it was noted if it was an uphill, , ...
HackerRank - Sales by Match (JavaScript)
HackerRank - Sales by Match Problem There is a large pile of socks that must be paired by color. Given an array of integers representing the color of each sock, determine how many pairs of so...
프로그래머스 Level 1 - 제일 작은 수 제거하기 (JavaScript)
프로그래머스 - Level1 제일 작은 수 제거하기 문제 설명 정수를 저장한 배열, arr 에서 가장 작은 수를 제거한 배열을 리턴하는 함수, solution을 완성해주세요. 단, 리턴하려는 배열이 빈 배열인 경우엔 배열에 -1을 채워 리턴하세요. 예를들어 arr이 [4,3,2,1]인 경우는 [4,3,2]를 리턴 하고, [10]면 [-1]을...
프로그래머스 Level 1 - 소수 찾기 (JavaScript)
프로그래머스 - Level1 소수 찾기 문제 설명 1부터 입력받은 숫자 n 사이에 있는 소수의 개수를 반환하는 함수, solution을 만들어 보세요. 소수는 1과 자기 자신으로만 나누어지는 수를 의미합니다.(1은 소수가 아닙니다.) 제한사항 n은 2이상 1000000이하의 자연수입니다. 🙋♂️나의 풀이 function solut...