exercism / prolog

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

Queen Attack solution template too empty #174

Closed berezovskyi closed 2 years ago

berezovskyi commented 2 years ago

First of all, thank you so much for putting this course together!

The solution template for the Queen Attack problem is too empty and does not even list the arities of the predicates we are to implement. Also, the purpose and the requirements for the create/1 predicate are not explained in any way. I simply wrote create((Dim, Dim)). in place of that, but I saw some community solutions to limit the board size between 0 and 7.

ErikSchierboom commented 2 years ago

Looking into the stub file, it does look like it is less helpful than other stubs (e.g. https://github.com/exercism/prolog/blob/main/exercises/practice/rna-transcription/rna_transcription.pl). Would you be willing to submit a PR to improve this?