-
-
Notifications
You must be signed in to change notification settings - Fork 848
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
completed first assignment #536
base: main
Are you sure you want to change the base?
Conversation
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.
Amazing job! 👏🏼
src/Chapter1.hs
Outdated
-- DON'T FORGET TO SPECIFY THE TYPE IN HERE | ||
lastDigit n = error "lastDigit: Not implemented!" | ||
lastDigit :: Int->Int | ||
lastDigit n = mod n 10 |
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.
Your implementation is almost correct 🆗
Unfortunately, it returns negative numbers on negative inputs because of how mod
works. Sometimes corner cases can be tricky to spot and fix...
src/Chapter1.hs
Outdated
let last = mod n 10 | ||
x = div n 10 |
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.
That is a wonderful solution! 👏🏼 You correctly noticed that it is the div
and mod
, cool 😎
One hint to make your solution even shorter: you can see that you use both:
mod m 10
div m 10
The standard library has the divMod
function, that actually combines inside both div
and mod
. And this is exactly what you use!.
So you could write it this way:
(x, y) = divMod m 10
You can see how we could pattern match on the pair 🙂
Co-authored-by: Veronika Romashkina <[email protected]>
Co-authored-by: Veronika Romashkina <[email protected]>
Thank you so much for the valuable feedback I have made the necessary changes as per your suggestion |
Solutions for Chapter 1
cc @vrom911 @chshersh