Ad
  • Custom User Avatar

    handled

  • Default User Avatar

    Python 3! FINALLY (: Thank you so much!

  • Default User Avatar

    Dude, LPTHW is a way outdated book. A lot of people used it, and yeah it was good for its time. Trust me, I worked through the entire book one year ago. You WILL face a lot of problems trying to do the exercises when trying to download and install the packages recommended by the book because it was written so long ago. I have abandoned Python 2 and moved to Python 3, which has much better support.

  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Default User Avatar

    Readable would be nice (:

  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Default User Avatar

    just wondering, where in this solution does the block return true or false to update @items_processed?

  • Custom User Avatar

    That's true, but the description states "Only valid Christmas dates will be passed to the solution" so I didn't bother coding that in.

  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Default User Avatar

    Well, this works for the test data, but it does not filter out input which do not refer to Christmas day.

  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Default User Avatar

    I'm a beginner too, starting out in Ruby as my first language. However, before starting on Codewars, I completed the entire 9-hour length tutorial on Codecademy, as well as had some experience in trying to write some simple methods.

    I feel like Codewars really is a place to test your skills and find out your limits while trying to push them and learn about better ways to code than the ways you are used to. It acts as a supplement for your own learning of the language(s) (full blown-out tutorial series, or books/manuals) rather than replacing it altogether. So, if you find that you are starting to have trouble with katas frequently, it means you have to start doing some homework I guess? (which is the state I'm approaching now)

    After all, you don't go to battle without first sharpening your weapons! (or firming up your moves)

  • Default User Avatar

    You're right! Sometimes I wonder if it's better to just use return whenever we intend for a line to return a result.

    For short codes like this it's easy to spot when a line is meant to return even though it does not have the 'return' at the start of the line. But for longer codes and re-edited codes written over more than one sitting perhaps it's just better to use 'return' all the time as intended.

    P.S. I still do not get how to make code segments appear nicely in the comments.

  • Custom User Avatar

    you'd need a return statement in front of the string literal there if you did it that way; otherwise, it'd just throw away the result and proceed to return the last name.

  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Loading more items...