7 kyu

Adding words - Part I

581 of 1,874osofem
Description
Loading description...
Mathematics
Fundamentals
  • Please sign in or sign up to leave a comment.
  • AndyHawk Avatar

    The kata is nice, but maybe 6 kyu rate will be more appropriate for this one. And also I think that adding the OOP tag would be useful

  • saudiGuy Avatar

    python new test framework is required. updated in this fork

  • clcraig Avatar

    Java translation

    Please review.

  • TotalForce Avatar

    This comment has been hidden.

  • bestwebua Avatar

    @osofem, thanks for the nice kata. But I think that it was more logical to change the current value of the object when using the add method.

  • donaldsebleung Avatar

    This comment has been hidden.

  • iphark Avatar

    This comment has been hidden.

  • s7ee1rat Avatar

    I don't see the point of having 2 parts of the 'Adding words' kata. If you solved the second part first (like I did) you can just copy the solution to part I and it will work.

  • user2828412 Avatar

    I enjoyed figuring this out! Thanks for the Kata.

  • lechevalier Avatar

    I don't really see the point of making POO for such a tiny need.

  • adrian.eyre Avatar

    Ruby and Python translations, please check and accept :-)

  • JohanWiltink Avatar

    JavaScript by convention uses camelCase, where identifiers start with a lowercase letter. Capitalised identifiers are reserved for constructor functions (which arith is), and fully uppercased identifiers are reserved for constants (which n is not).

    CodeWars recommends following these de facto standards.

    With a little work, you can change the tests to expect either Trotter or trotter if you don't want to invalidate existing solutions.

    Please follow conventions.