You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 쌍을 이루는 약수 중 하나만 찾으면 나머지는 확인하지 않아도 된다. 그러므로 제곱근까지만 확인하면 된다constisPrime=(num)=>{//1을 예외처리if(num===1)returnfalse;// 1. Array.from({length:n}) => [undefined * n], Array.from의 두번째 인자 mapFn을 통해 2 <= numbers <= sqrtNum 배열을 생성 constpotentialDivisors=Array.from({length: Math.floor(Math.sqrt(num))-1},(_,index)=>index+2);// 2. num을 균일하게 나누는 수(약수)만을 필터링, 1은 potentialDivisors에 존재할 수 없으며 sqrt이하의 수들이기 때문에 숫자 자신은 포함될 수 없음.constdivisors=potentialDivisors.filter(divisor=>num%divisor===0);// 3. 따라서 나눌 수 있는 수가 존재하지 않아야함.returndivisors.length===0;}constisPrime=(num)=>{returnnum!==1&&Array.from({length: Math.floor(Math.sqrt(num))-1},(_,index)=>index+2).filter(divisor=>num%divisor===0).length===0;}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Beta Was this translation helpful? Give feedback.
All reactions