Hi
I am doing yet another euler project question (38). I have this function which returns a list of numbers but what I need is that list of numbers to be one number. It calculates the concatenated product of an integer.
f (a,b) = a*b
conProInt x n = map f (zip (replicate n x) ([1..n]))
prob38 = maximum [ (conProInt (x) (n)) | x <- [100..500], n <- [1..9], (sort $ nub $ (decToList $ (conProInt x n) )) == (sort $ (decToList $ (conProInt x n) )), (sort $ nub $ (decToList $ (conProInt x n))) == [1..9] ]
eg:
conProInt 192 3
returns: [192,384,576]
what I need returned is: 192384576
I have searched around and can't find a function or think of a function I could construct that would deliver what I need. How would I go about this?
EDIT:
I have updated the script to incorporate faster concatenation, but it doesn't return the correct result:
f (a,b) = a*b
conProInt x n =( combine (map f (zip (replicate n x) ([1..n]))))
prob38 = maximum [ (conProInt (x) (n)) | x <- [1..50000], n <- [2..40], (sort $ nub $ (decToList $ (conProInt x n) )) == (sort $ (decToList $ (conProInt x n) )), (sort $ nub $ (decToList $ (conProInt x n))) == [1..9] ]
I'm pretty sure the pandigital test:
(sort $ nub $ (decToList $ (conProInt x n) )) == (sort $ (decToList $ (conProInt x n) )), (sort $ nub $ (decToList $ (conProInt x n))) == [1..9]
won't fail and I tried to make the search as large as possible but the maximum 9-pandigital I got was 986315724, any suggestions? Is the range of values for n a very large one?

map f $ zip (replicate n x) [1..n]==map f $ zip (repeat x) [1..n]==zipWith (f x) [1..n], and your pandigital test could be shortened tosort (decToList $ conProInt x n) == [1..9]. Your bounds are actually a bit too wide (n>9makes no sense and givennyou can narrow the range ofx) but really you should try to figure out how you managed to produce 986315724: it's not actually a concatenated product of an integer with[1..n]. Possibly yourcombineordecToListis still wrong. – ephemient Oct 9 at 15:08lengthet al. set of functions returnInt, thus doing mixing them into your arithmetic requires everything to be typedInt. Your options are to useData.List.genericLengthet al. which return a genericNuminstance, or to usetoIntegerwhich... well, the name is pretty obvious. That being said, 987654321 only requires 30 bits to represent and should fit into an Int just fine, so that's unlikely to be your problem. – ephemient Oct 11 at 15:51