exercism / problem-specifications

Shared metadata for exercism exercises.
MIT License
326 stars 541 forks source link

pig latin in C track #2376

Closed EmVee381 closed 8 months ago

EmVee381 commented 8 months ago

i have noticed inconsistency between rule 3 Rule 3: If a word starts with a consonant sound followed by "qu", move it to the end of the word, and then add an "ay" sound to the end of the word (e.g. "square" -> "aresquay").

and test

static void test_word_beginning_with_qu(void)
{
   TEST_IGNORE();
   check_transate("queen", "eenquay");
}

i a not native english speaker, but if i follow the rule, i would not expect it describe also state when "qu" is in the beginning of the word as there is said "consonant sound followed by "qu" " but if i asked chatgpt it also understood it same as me and skipped state for rords beginning with "qu"

github-actions[bot] commented 8 months ago

Hello. Thanks for opening an issue on Exercism 🙂

At Exercism we use our Community Forum, not GitHub issues, as the primary place for discussion. That allows maintainers and contributors from across Exercism's ecosystem to discuss your problems/ideas/suggestions without them having to subscribe to hundreds of repositories.

This issue will be automatically closed. Please use [this link](https://forum.exercism.org/new-topic?title=pig%20latin%20in%20C%20track&body=i%20have%20noticed%20inconsistency%20between%20rule%203%0D%0A%60%0D%0ARule%203:%20If%20a%20word%20starts%20with%20a%20consonant%20sound%20followed%20by%20%22qu%22,%20move%20it%20to%20the%20end%20of%20the%20word,%20and%20then%20add%20an%20%22ay%22%20sound%20to%20the%20end%20of%20the%20word%20(e.g.%20%22square%22%20-%3E%20%22aresquay%22).%0D%0A%60%0D%0A%0D%0Aand%20test%0D%0A%60%60%60%0D%0Astatic%20void%20test_word_beginning_with_qu(void)%0D%0A%7B%0D%0A%20%20%20TEST_IGNORE();%0D%0A%20%20%20check_transate(%22queen%22,%20%22eenquay%22);%0D%0A%7D%0D%0A%60%60%60%20%0D%0Ai%20a%20not%20native%20english%20speaker,%20but%20if%20i%20follow%20the%20rule,%20i%20would%20not%20expect%20it%20describe%20also%20state%20when%20%22qu%22%20is%20in%20the%20beginning%20of%20the%20word%20as%20there%20is%20said%20%22consonant%20sound%20followed%20by%20%22qu%22%20%22%0D%0Abut%20if%20i%20asked%20chatgpt%20it%20also%20understood%20it%20same%20as%20me%20and%20skipped%20state%20for%20rords%20beginning%20with%20%22qu%22%0D%0A%0D%0A%0D%0A%0D%0A&category=support ) to copy your GitHub Issue into a new topic on the forum, where we look forward to chatting with you!

If you're interested in learning more about this auto-responder, please read this blog post.

EmVee381 commented 8 months ago

i have really no time for this... i don't care anymore...