You are viewing a single comment's thread. Return to all comments →
Haskell solution
main = do a <- getLine b <- getLine putStrLn . concat $ map (\(x, y) -> [x, y]) $ zip a b
Seems like cookies are disabled on this browser, please enable them to open this website
String Mingling
You are viewing a single comment's thread. Return to all comments →
Haskell solution