exercism / prolog

Exercism exercises in Prolog.
https://exercism.org/tracks/prolog
MIT License
29 stars 37 forks source link

Fix tests and exmaple of Anagram #90

Closed Average-user closed 1 year ago

Average-user commented 4 years ago

It was necessary to change anagram.example since it was not working correctly:

 anagram("galea", ["eagle"], Xs).
Xs = ["eagle"].

I replaced it from my solution in exercism.io. Suggestions are welcomed.

And that was unnoticed because of the problem exposed in #81