91 - Build a pile of Cubes
Q.
Description:
Your task is to construct a building which will be a pile of n cubes. The cube at the bottom will have a volume of n^3, the cube above will have volume of (n-1)^3 and so on until the top which will have a volume of 1^3.
You are given the total volume m of the building. Being given m can you find the number n of cubes you will have to build?
The parameter of the function findNb (find_nb, find-nb, findNb, ...) will be an integer m and you have to return the integer n such as n^3 + (n-1)^3 + ... + 1^3 = m if such a n exists or -1 if there is no such n.
Examples:
findNb(1071225) --> 45
findNb(91716553919377) --> -1
A)
function findNb(m) {
let comp = 0;
for (let i = 1; i < m; i++) {
comp += i**3
if(comp === m) return i
if(comp > m) return -1
}
}
Author And Source
이 문제에 관하여(91 - Build a pile of Cubes), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@developerjhp/알고리즘-91-Build-a-pile-of-Cubes
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
function findNb(m) {
let comp = 0;
for (let i = 1; i < m; i++) {
comp += i**3
if(comp === m) return i
if(comp > m) return -1
}
}
Author And Source
이 문제에 관하여(91 - Build a pile of Cubes), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@developerjhp/알고리즘-91-Build-a-pile-of-Cubes저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)