79446138

Date: 2025-02-17 17:22:07
Score: 2
Natty:
Report link

Instead of intersperse, you could also use intercalate

import Data.List (intercalate)

insertSpace :: String -> String
insertSpace = intercalate " " . map (:[])
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anton Kesy