Question regarding theis mailing list and Google Groups

16 Dec
2004
16 Dec
'04
8:48 p.m.
Does anybody out there use Google Groups Beta to post to the `fa.haskell' group? I am directly subscribed to the email list, however I was trying some new things and it seemed like `fa.haskell' was vaguely related to the Haskell Café list. However, my post has not shown up on Haskell Café. Does anyone here know what's going on? I posted the following code to the `Haskell problem please help' thread:
rotations:: [a] -> [[a]] rotations xs = rotate (xs ++ xs) len where len = length xs rotate _ 0 = [] rotate ys n = (take len ys):(rotate (tail ys) (n - 1))
Did anyone receive this? -Arjun
7506
Age (days ago)
7506
Last active (days ago)
0 comments
1 participants
participants (1)
-
Arjun Guha