-
-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the palindrome-products exercise #270
Conversation
While it is not hard to come up with a solution that produces correct results, the real challenge of the exercise is doing so in an efficient manner. A solution that is inefficient will probably (depending on the processing power you can muster to throw at it) not pass all tests since they will time out. @NobbZ What do you think, is that a case where a |
eee4925
to
2ee5668
Compare
config.json
Outdated
"difficulty": 6, | ||
"topics": [ | ||
"algorithms", | ||
"mathematics", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Per the recent discussion in exercism/exercism#4110, would you mind making this 'math' instead of 'mathematics'?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, np, I made the requested changes :)
2ee5668
to
84a8776
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I think the HINTS.md
is a good start. But I've not done this exercise in any language for ages, and I can not remember having had any runtime issues ever.
@@ -0,0 +1,30 @@ | |||
%% Erlang compiler options | |||
{erl_opts, [debug_info]}. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please add warnings_as_errors
here?
84a8776
to
445e194
Compare
May I ask why you have closed the PR? |
Actually, I didn't, don't know how this happened. Can you reopen it? |
oh... it's because the commits disappeared :\ looks like something went very wrong at my end. will check |
ok, here it is again, with the |
Thank you! |
accumulate
since it is somehow similar tochange
anddominoes
6
(estimation taken from thehaskell
track`)