generate new test that did already exist & update all module snippets with declaration
This commit is contained in:
@ -1 +1 @@
|
||||
module.exports = n => (n % 2 == 0 ? n / 2 : 3 * n + 1);
|
||||
module.exports = collatz = n => (n % 2 == 0 ? n / 2 : 3 * n + 1);
|
||||
Reference in New Issue
Block a user