gpt4 book ai didi

javascript - 为什么我的代码在 underscore.js 下可以工作,但在我使用 Ramda.js 时却不行?

转载 作者:行者123 更新时间:2023-11-30 12:27:24 25 4
gpt4 key购买 nike

我是 Javascript 的新手,我正在参加编码挑战,以进一步了解该语言。这与学校无关或类似的事情,完全是为了我自己的个人成长。这是挑战:

Return the sum of all odd Fibonacci numbers up to and including the passed number if it is a Fibonacci number.

过去 2 个晚上,我一直致力于解决这个挑战。当我使用 underscore.js 运行我的代码时,它起作用了。当我使用 Ramda.js 时,它显示 NaN。我认为两者都会返回 NaN。我很惊讶我能从一个人而不是另一个人那里得到正确答案。任何见解将不胜感激!

var R = require('ramda');

function sumFibs(num) {
var fib_Arr = [];
var new_Arr = [];
var total = 0;
// I use this to tell if the fib num is greater than 2
var the_Bit = "false";
// This is used to keep track of when to stop the loop
var fib_Num = 0;

// THIS WORKS FROM HERE
// This loop generates a list of fibonacci numbers then pushes them to the fib_Arr
for(var i = 0; total < num; i++){
if (i < 1){
fib_Arr.push(0);

}
else if (i === 1){
fib_Arr.push(i);
fib_Arr.push(1);
}
else if (i === 2){
fib_Arr.push(2);
the_Bit = "true";
}
else if (the_Bit === "true"){
temp_Arr = R.last(fib_Arr,2);
temp_Arr = temp_Arr[0] + temp_Arr[1];
fib_Arr.push(temp_Arr);
total = R.last(fib_Arr);
}
// Generating the fib Array works TO HERE!!!!
}

// console.log(fib_Arr); // Print out the generated fibonacci array
// if last Array element is greater than the original in
var last_Element = R.last(fib_Arr);
if (last_Element > num){
console.log("The last element of the array is bigger!");
fib_Arr.splice(-1,1); // This removes the last item from the array if it is larger than the original num input
}

// This loop removes all of the EVEN fibonacci numbers and leaves all of the ODD numbers
for (var j = 0; j < fib_Arr.length; j++){
if (fib_Arr[j] % 2 !== 0){
new_Arr.push((fib_Arr[j]));
}
}

// This checks if the original input num was a
if (num % 2 !== 0){
new_Arr.push(num);
}
else{
console.log("The original num was not a Fibonacci number!");
}
// if last Array element is the same as the original input num
var last = R.last(fib_Arr);
if (last === num){
console.log("Removing the last element of the array!");
new_Arr.splice(-1,1); // This removes the last item from the array if it is the same as the original num input
}

// Now to add all of the numbers up :-)
for (var k = 0; k < new_Arr.length; k++){
console.log("This is fib_Num: " + fib_Num);
// console.log(fib_N`);
fib_Num = fib_Num += new_Arr[k];
}
return fib_Num;
}
// TEST CASES:
// console.log(sumFibs(75025)); //.to.equal(135721);
console.log(sumFibs(75024)); //.to.equal(60696);

最佳答案

你在这些行上有问题:

temp_Arr = R.last(fib_Arr,2);
temp_Arr = temp_Arr[0] + temp_Arr[1];

除了 R.last 不带第二个参数(虽然不会失败)这一事实之外,您正在使用 temp_arr 作为数组,当它是数字。因此,temp_arr 得到一个 NaN 值。

您可能正在寻找 R.take(结合 R.reverse)或 R.slice


通过改变:

temp_Arr = R.last(fib_Arr,2);

与:

temp_Arr = R.take(2, R.reverse(fib_Arr));

或与:

temp_Arr = R.slice(fib_Arr.length - 2, fib_Arr.length)(fib_Arr);

或与(从右边减少奖金游戏):

temp_Arr = R.reduceRight(function(arr, elem) { 
return arr.length < 2 ? [elem].concat(arr) : arr;
}, [])(fib_Arr);

我们得到:

sumFibs(75024) === 60696

关于javascript - 为什么我的代码在 underscore.js 下可以工作,但在我使用 Ramda.js 时却不行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28933021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com