문제설명
Description:
Some numbers have funny properties. For example:
89 --> 8¹ + 9² = 89 * 1
695 --> 6² + 9³ + 5⁴= 1390 = 695 * 2
46288 --> 4³ + 6⁴+ 2⁵ + 8⁶ + 8⁷ = 2360688 = 46288 * 51
Given a positive integer n written as abcd... (a, b, c, d... being digits) and a positive integer p we want to find a positive integer k, if it exists, such as the sum of the digits of n taken to the successive powers of p is equal to k * n. In other words:
Is there an integer k such as : (a ^ p + b ^ (p+1) + c ^(p+2) + d ^ (p+3) + ...) = n * k
If it is the case we will return k, if not return -1.
Note: n, p will always be given as strictly positive integers.
Examples :
나의 풀이
다른사람의 풀이
느낀점
다른사람이 푼 두 개의 인상깊은 풀이가 있었다. ES6문법은 잘 몰라서 첫번째 풀이는 이해가 시간이 걸렸지만, 두번째 풀이는 다 아는건데 생각지 못해서 아쉽다.많이 멀었구나 싶다.. 참 적절하게 연결이 잘 된 풀이인듯하다. 지금 내 풀이를 보면 당시에 왜 저렇게 풀었나 싶다. 그렇게 많이 써본 split 메서드인데 왜 안썼나.. 생각이 든다.
'algorithm > codewars' 카테고리의 다른 글
[7kyu] Homogenous array (0) | 2018.02.04 |
---|---|
[6kyu] crashing boxes (0) | 2018.01.28 |
[6kyu] multiples of 3 or 5 (0) | 2018.01.28 |
[6kyu] TGI Friday !! (0) | 2018.01.22 |
[8kyu] Century_From_Year !!!!!!!!!! (0) | 2018.01.21 |