Chris Ching Course Part 5 (Challenge 3)
Four days?! Wow, that's longer than I thought! This is not going to be a typical thing - such big gaps between coding. To make up for this, I will be sure to have a good session today and tomorrow - at least an hour for each. So, last time, I completed both of the Chris Ching challenges. I got MOST of the elements correct, though the second one had me puzzled in places. For the last part of the Chris Ching course, there is the third and final challenge. Here we go! // Challenge #3: The Library Challenge // // Instructions: // Complete the class definition so that you get the expected output in the console (specified below the class definitions). See TODOs. // class Person { var name: String ! init ( _ fullName: String ) { name = fullName } } class Book { var title: String ! var author: S...