Collections and Control Flow: Arrays
OK, last entry for today! A nice problem to have, for sure - and quite a contrast to the past few months where my entries were so rare. Of course, I'm not going to hide from the fact that I've been much keener because the content is easier and more familiar, etc etc. My point is that I don't want to pack TOO much in at once, as the information will not be retained or made as much sense of. So, starting with 'Collections and Control Flow', the first part that I'm going to focus on is Arrays. There are several videos ahead, so will work through one at a time. Introduction to Arrays Pasan starts with a brief recap that we've covered variables, constants etc. In programming, we often like to work with multiple values. So far, we've focused on simple objects - whether it be strings, ints etc. There are three collection types in Swift: Arrays Dictionaries Sets This course will focus on the first two. In an Array, a number is associated with each ...