개발차
[알고리즘] 39. Find Digits
An integer is a divisor of an integer if the remainder of .Given an integer, for each digit that makes up the integer determine whether it is a divisor. Count the number of divisors occurring within the integer.Note: Each digit is considered to be unique, so each occurrence of the same digit should be counted (e.g. for , is a divisor of each time it occurs so the answer is ).Function Description..
[알고리즘] 38. Jumping on the Clouds: Revisited
Aerith is playing a cloud hopping game. In this game, there are sequentially numbered clouds that can be thunderheads or cumulus clouds. Her character must jump from cloud to cloud until it reaches the start again.To play, Aerith is given an array of clouds, and an energy level . She starts from and uses unit of energy to make a jump of size to cloud . If Aerith lands on a thundercloud, , her en..
[회고록] 계획과 회고
현재 10월 24일을 기준으로 시작. 각 분기별 계획과 이전 분기에 대한 목표 달성률과 회고에 대해서 되돌아 볼 것이다. 매년 1/1, 4/1, 7/1, 11/1 에 작성할 것이다! 계획을 짤 때는 무리하지 않고 현실적으로 이룰 수 있게 구성할 것이고, 분기 내에서도 다달이 나눠서 세부적인 계획을 세울 것이다. 계획 ( 분기별 계획 / 월별 계획 )계획은 세부적으로 작성! 그리고 이룰 수 있는 정도로만 계획! 계획을 이루기 위해 필요한 마인드 유지하기 회고 ( 목표 달성률 )이전에 계획했던 분기 목표를 이뤘다면, 앞으로 더 어떻게 발전시킬 것인지 계획(방향) 더 마련하기 계획을 이루지 못했다면 왜 이루지 못했는지, 이루기 위해서는 어떻게 했어야 했는지에 대한 회고 작성 공부정리공부하는 것들을 계속 블로그..
[알고리즘] 37. Sequence Equation
Given a sequence of integers, where each element is distinct and satisfies . For each where , find any integer such that and print the value of on a new line.For example, assume the sequence . Each value of between and , the length of the sequence, is analyzed as follows:, so , so , so , so , so The values for are .Function DescriptionComplete the permutationEquation function in the editor below..
[알고리즘] 36. Circular Array Rotation
John Watson knows of an operation called a right circular rotation on an array of integers. One rotation operation moves the last array element to the first position and shifts all remaining elements right one. To test Sherlock's abilities, Watson provides Sherlock with an array of integers. Sherlock is to perform the rotation operation a number of times then determine the value of the element a..
[C&C++] 00. 시작
인프런의 "https://www.inflearn.com/course/c%EC%96%B8%EC%96%B4-%EB%91%90%EB%93%A4%EB%82%99%EC%84%9C/dashboard" C 와 C++ 을 동시에 배워보자 - 두들낙서의 C/C++ 강의를 듣고 리뷰하면서 한 번 더 정리할 계획이다! 나중에 실력이 좀 된다면 기존에 Python으로 풀었던 HackerRank를 C로 풀어볼 것 이다.