Replies: 3 comments
-
General idea is: do not block any modules. Blocking modules is difficult to get right, and tests which try to block modules usually end up unnecessarily convoluted and not even 90% cheat-proof. Additionally, challenges based on blocking some modules need a really good reason to do so, otherwise they turn out to be just an artificial obstacle in an otherwise easy problem. A lot of things depends on language, and what exactly you want to block. If you still want to try, you can ask for some hints on Codewars Discord and its |
Beta Was this translation helpful? Give feedback.
-
I want to make a permutation task, and there exists things like
itertools.permutation. But i want users to think, to use recursion or just
loop with condition.
пн, 2 груд. 2024 р., 22:45 користувач hobovsky ***@***.***>
пише:
… General idea is: do not block any modules. Blocking modules is difficult
to get right, and tests which try to block modules usually end up
unnecessarily convoluted and not even 90% cheat-proof. Additionally,
challenges based on blocking some modules need a *really* good reason to
do so, otherwise they turn out to be just an artificial obstacle in an
otherwise easy problem. A lot of things depends on language, and what
exactly you want to block.
If you still want to try, you can ask for some hints on Codewars Discord
and its #help-author channel.
—
Reply to this email directly, view it on GitHub
<#3311 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A2J2THNASYBWSOJT7JDRXHD2DTBFDAVCNFSM6AAAAABS3X44WKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNBUGEYDIOI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
You can use clear instructions in your kata description that says that the use of built in modules for permutations is not allowed. Emphasize that the goal is to implement the solution using recursion or loops. or design your test cases to validate the correctness of the permutations, and you can include edge cases that would be hard to handle without a proper understanding of recursion or loops. hope this helps :) |
Beta Was this translation helpful? Give feedback.
-
I try to create a kata and want to make it with a restriction of using modules. How can i make that? Help please
Beta Was this translation helpful? Give feedback.
All reactions