Implementing a factorisation method in Haskell
Hi I am doing question 266 at project euler and after a bit of searching, found this method of quickly finding the factors of a number. What you do is find all the permutations of the prime factors of a number, these are its factors. I already have a module to find the prime power factors of a number, eg: Main> primePowerFactors 196 [(...