Ad
  • Custom User Avatar
  • Custom User Avatar

    Missing sample and fixed tests for y and Y in all languages except F#

  • Custom User Avatar

    Missing fixed and sample tests for empty strings and @@@ in

    • C#

    • Python

  • Custom User Avatar

    Ruby 3.0 should be enabled, see this to learn how to do it

    Please organize the structure of test fixture as following (although it has been mentioned in the attached link, I'm repeated here again)

    describe "<This message should describe the categories of test groups inside this block>" do
      it "<A short message describing this test group>" do
        expect(...).to eq(...) #Assertions
        #Or Test.assert_equals(user_response, reference_response)
      end
    end
    
  • Default User Avatar

    Has a lot in common with the kata - <8 kyu> Area or Perimeter
    Should we add some specifics to it to make them a bit different?

  • Custom User Avatar

    As this is an 8 kyu level Kata, I understand the intention of not needing to validate inputs as a way to keep it simple for beginners, but didn't get the point of including the function inside a class. Wouldn't that probably confuse beginners as they could think the class was a necessary element for the function to work?
    Otherwise, good Kata for comprehending the usefulness of programming for little things like finding the perimeter of a rectangle.

  • Default User Avatar

    it's too easy add a strings in width and or length values

  • Custom User Avatar

    I think there can be less original code - if anything that confused me on how I would write it by myself.

  • Default User Avatar

    The initial setup for JS is unnecessary complicated. Instead, a single function can be used, like this:

    function getPerimeter(width, length){
      // Your code goes here
    }
    

    or this:

    const getPerimeter = (width, length) => {
      // Your code goes here
    }
    

    As this kata is too simple, it will appeal more to beginners. The simple syntax will be more helpful for them, as they might not understand the complicated initial code.

  • Custom User Avatar

    CoffeeScript Translation Kumited! Please Accept :D