Skip to content

Fixed some typos #16

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

Merged
merged 1 commit into from
Oct 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Homework/Homework06/Homework06.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

-- Question 2
-- Write a function that takes in a list of integers and removes from it the smallest
-- element. If the element is occuring more then once, it should remove only the first
-- occurence of the smallest element.
-- element. If the element is occurring more then once, it should remove only the first
-- occurrence of the smallest element.

-- Chalange: Write the this function in such a way that if you add some code to it and
-- not remove any, the function will be removing all instances of the smallest eleement.
-- Challenge: Write the this function in such a way that if you add some code to it and
-- not remove any, the function will be removing all instances of the smallest element.


-- Question 3
Expand Down