I am new to f#
I am try to calculate the Cartesian products of a list of numbers. I "borrowed" this.
let xs = [1..99]
let ys = [1..99]
seq {for x in xs do for y in ys do yield x * y}
Is there a better or more elegant way?
Gary
|
|
I am new to f# I am try to calculate the Cartesian products of a list of numbers. I "borrowed" this.
Is there a better or more elegant way? Gary
|
||
|
|
|
Another possibiltiy to tackle the problem based on functionality provided by the List module would be:
which avoids the extra calls to .concat and should also do the job. But I'd stick with your solution. It should be the most readable which is a real matchwinner. (Just try to read the codes out loud. Yours is perfectly understandable and Noldorins or mine are not.) |
||||||
|
|
|
There is indeed a slightly more elegant way (at least in the functional sense) to calculate the Cartesian products, which uses the functions that exist within the Try this:
Slightly longer admittedly, though more functional in style, it would seem. |
||||||||||
|
|
|
Disclaimer: I don't have a machine with the current F# installed, so I can't test my code. Basically, though, if you steal
and run it as
Here's how to write
Then you can write your program as
Like I said, I can't test this, but I hope it will work. You might have to change some However, the number of people who can guess the meaning of your non-general list comprehension is probably a lot more than will recognise the name |
||||
|