Well, here is the thing:
I have the following Haskell code, this one:
[ (a, b, c) | c <- [1..10], b <- [1..10], a <- [1..10], a ^ 2 + b ^ 2 == c ^ 2 ]
Which will returns
[(4,3,5),(3,4,5),(8,6,10),(6,8,10)]
For those who aren't familiar with this, I'll explain:
- It returns a
tuple(a,b,c), where each of these "definitions" (a,b,c) receive a list (1 up to 10) and his members are compared by thea ^ 2 + b ^ 2 == c ^ 2 ?expression (each member).
How can I do the same (one line if possible) in Python/Ruby?
P.S.: they are compared in lexicographical order.
filter (\(a,b,c) -> a^2+b^2==c^2) $ (,,) <$> [1..10] <*> [1..10] <*> [1..10]– FUZxxl Aug 21 '11 at 10:55