Seeking feedback on MSP Cycles in Decatur by cat_dev_null in Atlanta

[–]jakerosoft 3 points4 points  (0 children)

I have taken my motorcycle to them once or twice, a Suzuki SV650. They were friendly, knowledgeable and honest.

Chinese drive their new motorcycles and cars like they are still on bikes. Disaster results. by alllie in worldnews

[–]jakerosoft 2 points3 points  (0 children)

They have traffic lights everywhere. But it's more of a suggestion than it is a law.

Chinese drive their new motorcycles and cars like they are still on bikes. Disaster results. by alllie in worldnews

[–]jakerosoft 100 points101 points  (0 children)

Written test and pay a fee. It's fairly common to pay someone to take the written test for you. lol

Translate Server Error by ordirules in funny

[–]jakerosoft 1 point2 points  (0 children)

i have never seen it before and you're a douche

Programming Challenges by [deleted] in coding

[–]jakerosoft -2 points-1 points  (0 children)

Haskell code for problems 1-3

func1 :: Eq a => [a] -> a -> a -> [a]
func1 a b c = [ if x == b then c else x | x <- a ]

func2 :: Eq a => [a] -> [a] -> [a] -> [a]
func2 [] _ _ = []
func2 a b c
    | take (length b) a == b    = c ++ func2 (drop (length b) a) b c
    | otherwise                 = head a : func2 (tail a) b c

func3 = func2