You are viewing a single comment's thread. Return to all comments →
In JavaScript,
var result=0; for(var i=1;i<=n;i++) { for(var j=1;j<=n;j++) { if(i*j<=p) { result = result+1; } } } return(result)
something is not working here.
Seems like cookies are disabled on this browser, please enable them to open this website
P-sequences
You are viewing a single comment's thread. Return to all comments →
In JavaScript,
something is not working here.