tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
|
|
@ -0,0 +1,16 @@
|
|||
var onmessage = function(event) {
|
||||
postMessage({"n" : event.data.n,
|
||||
"factors" : factor(event.data.n),
|
||||
"id" : event.data.id});
|
||||
};
|
||||
|
||||
function factor(n) {
|
||||
var factors = [];
|
||||
for(p = 2; p <= n; p++) {
|
||||
if((n % p) == 0) {
|
||||
factors[factors.length] = p;
|
||||
n /= p;
|
||||
}
|
||||
}
|
||||
return factors;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue