Hi, I kept hitting CTLE (Complication Time Limit Exceeded) Error when submitting my solution in Haskell, even with a simple wrong one that just printing "Hello world"
For example, I submitted the following solution to 2018 Round 1A - the first problem in practice mode. The answer is apparently wrong, I expected the result to be `WA`, but actually got `CTLE`. ``` import Data.List main :: IO () main = interact runFile runFile :: String -> String runFile _ = "Hello world" ``` However, if I remove the first line `import Data.List`, then it compiles and shows `WA`. Why is that? Thanks, Leo -- You received this message because you are subscribed to the Google Groups "Google Code Jam" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-code/58455526-6d76-4530-9153-2bdf3a7fab02%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
