Posts by Monitchov • 11 points
1 post
-
-2
votes1
answer131
viewsQ: Generate splitter list of a given number n
guru = function (n){ if (n>0){ x = (n%%(1:n) == 0) cat(x) } } So I need to create a vector that contains all the splitters of n, but when I test, with some value of n, it tells me logically if…