Sha256: fec614114687b7c045e05672056677d8bcbfb3e42e03716f8cb4b4c192768ec8
Contents?: true
Size: 353 Bytes
Versions: 185
Compression:
Stored size: 353 Bytes
Contents
class PrimeFactors { for(num) { const factors = []; let currentFactor = 2; while (num !== 1) { if (num % currentFactor === 0) { factors.push(currentFactor); num /= currentFactor; currentFactor = 2; } else { currentFactor++; } } return factors; } } export default PrimeFactors;
Version data entries
185 entries across 185 versions & 1 rubygems