gpt4 book ai didi

javascript - 检查字符串是否包含任何没有正则表达式的字符串数组

转载 作者:行者123 更新时间:2023-11-29 16:04:41 25 4
gpt4 key购买 nike

<分区>

我正在检查一个字符串输入是否包含任何一个字符串数组。它通过了大部分测试,但未通过以下测试。

谁能分解我的代码为什么不能正常工作?

     function checkInput(input, words) {
var arr = input.toLowerCase().split(" ");
var i, j;
var matches = 0;
for(i = 0; i < arr.length; i++) {
for(j = 0; j < words.length; j++) {
if(arr[i] == words[j]) {
matches++;
}
}
}
if(matches > 0) {
return true;
} else {
return false;
}
};

checkInput("Visiting new places is fun.", ["aces"]); // returns false // code is passing from this test
checkInput('"Definitely," he said in a matter-of-fact tone.',
["matter", "definitely"])); // returns false; should be returning true;

感谢您的宝贵时间!

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