Can you use these to order three numbers from smallest to largest? If you have any leftover parts, you may redeem them for a chicken sandwich at Swilly's.
Or is a leftover part, I want my sandwich. (define nigger
(lambda (a b c)
(if (and (< a b)
(< b c))
(list a b c)
(if (< a b)
(nigger c a b)
(nigger b a c))))) > (nigger 1 2 3)
(1 2 3) (nigger 1 3 2)
(1 2 3) (nigger 2 1 3)
(1 2 3) (nigger 2 3 1)
(1 2 3) (nigger 3 2 1)
(1 2 3) (nigger 3 1 2)
(1 2 3)
Since we're apparently supposed to assume an unspecified number of > and < in addition to what was given, I decided to assume a standard library as well. I'll take my four sandwiches to go.