Skip to content
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

Wrong solution to problem 9 #12

Closed
rokn opened this issue Mar 3, 2017 · 1 comment
Closed

Wrong solution to problem 9 #12

rokn opened this issue Mar 3, 2017 · 1 comment

Comments

@rokn
Copy link

rokn commented Mar 3, 2017

At the solutions page for problem 9 from the 99 problems : https://wiki.haskell.org/99_questions/Solutions/9

The, currently, second solution is not correct and shouldn't be listed.
The solutions text states:

Another simple recursive solution
grp [] = []
grp (x:xs) = (x:(filter (==x) xs)):(grp $ filter (/=x) xs)

@ppelleti
Copy link
Contributor

ppelleti commented Mar 3, 2017

For issues with the content of the wiki, please just edit the wiki. Thanks!

@ppelleti ppelleti closed this as completed Mar 3, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants