I'm wanting to remove the non-prime numbers from an Array, the following is only removing the even numbers instead of the prime numbers.
function sumPrimes(num) {
//Produce an array containing all number of to and including num
let numArray = [];
for (let i = 1; i <= num; i++) {
numArray.push(i);
}
//Remove non-prime numbers from the array
numArray.map((number) => {
for (let i = 2; i < number; i++) {
if(number % i === 0) {
let index = numArray.indexOf(number);
return numArray.splice(index, 1);
}
}
});
return numArray;
}
sumPrimes(10);
This is currently returning:
[1, 2, 3, 5, 7, 9]
However, prime numbers are 1, 2, 3, 5, 7 (not include 9);
I'm wanting to remove the non-prime numbers from an Array, the following is only removing the even numbers instead of the prime numbers.
function sumPrimes(num) {
//Produce an array containing all number of to and including num
let numArray = [];
for (let i = 1; i <= num; i++) {
numArray.push(i);
}
//Remove non-prime numbers from the array
numArray.map((number) => {
for (let i = 2; i < number; i++) {
if(number % i === 0) {
let index = numArray.indexOf(number);
return numArray.splice(index, 1);
}
}
});
return numArray;
}
sumPrimes(10);
This is currently returning:
[1, 2, 3, 5, 7, 9]
However, prime numbers are 1, 2, 3, 5, 7 (not include 9);
Share Improve this question edited Jun 14, 2017 at 0:47 Nims asked Jun 14, 2017 at 0:40 NimsNims 2152 gold badges3 silver badges13 bronze badges 3- The output for me is 4, 6, 8, 9, 10, which is correct. You have programmed it to print when it finds a divisible number, not a non-divisible one. – Akshat Mahajan Commented Jun 14, 2017 at 0:42
-
map
doesn't remove anything. Did you meanfilter
? Do not usesplice
within a loop. – Bergi Commented Jun 14, 2017 at 0:43 -
Your callback will need to
return
something meaningful, notundefined
. – Bergi Commented Jun 14, 2017 at 0:43
4 Answers
Reset to default 6Use filter()
instead:
var numArray = [2, 3, 4, 5, 6, 7, 8, 9, 10]
numArray = numArray.filter((number) => {
for (var i = 2; i <= Math.sqrt(number); i++) {
if (number % i === 0) return false;
}
return true;
});
console.log(numArray);
The previous answer doesn't work correctly for negative numbers.
As you can see here, the simplest way to find prime numbers is:
const array = [-5, -3, -2, -1, ...Array(20).keys()];
// Array(20).keys() generates numbers from 0 to 19.
function isPrime(num) {
for (let start = 2; num > start; start++) {
if (num % start == 0) {
return false;
}
}
return num > 1;
}
console.log(array.filter(isPrime)); // [2, 3, 5, 7, 11, 13, 17, 19]
The answer by Farnaz Kakhsaz works great, but it is slow. You only need to check until the root of 'num'. Thanks!
const array = [-5, -3, -2, -1, ...Array(20000).keys()];
function isPrime(num) {
for (let i = 2; i <= Math.sqrt(num); i++) {
if (num % i === 0) {
return false;
}
}
return num > 1;
}
console.log(array.filter(isPrime));
My solution for find prime numbers in an array in javascript using forEach().
let num = [-1,-2,-3,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];
let result = [];
function isPrime(num) {
if(num < 2) return false;
for (let k = 2; k < num; k++){
if(num % k == 0){
return false;
}
}
return true;
}
num.forEach(function (element) {
const item = isPrime(element);
if (item) {
result.push(element);
}
});
console.log(result); // [ 2, 3, 5, 7, 11, 13, 17, 19]
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743620475a4479692.html
评论列表(0条)