This lesson continues our exploration of functions. We’ll present a bit more Kotlin syntax, and spend time reinforcing what we’ve learned about functions. Let’s get started!
for in
Loopfor in
LoopTo get us warmed up and ready to go, let’s check out a new bit of Kotlin syntax!
Remember how we started with this common while
loop:
and eventually arrived at this common for
loop:
Well, that for
loop became so common that there’s an even simpler way to work through the values in array using Kotlin’s for in
loop:
for
Loopfor
LoopWhen you should use the indexed for
(for (i in 0 until value)
) and when for in
?
(Technically they are both for in
loops, but the difference is whether the variable hold the index or a value from the array.)
Here are some things to consider:
for in
loopfor
loopFor many common array-processing tasks that we’ve encountered, the for in
loop is a much better fit, since avoiding the extra index variable leads to a cleaner loop declaration and value access within the loop.
For example, counting:
Next let’s get some more practice with functions!
Together we’ll write a method that determines when an IntArray
is a palindrome array: meaning that the values it contains are the same forward and backward.
For example, {1, 2, 4}
is not an array palindrome, but {1, 0, 2, 0, 1}
is!
Let’s go step by step and see how to approach constructing this method. First, let’s determine our method signature, and practice calling it on some sample inputs.
Next, let’s begin work on the body of the method. Our array access pattern here is a bit different than what we’ve seen previously, so let’s proceed carefully.
As a next step, let’s complete the job by adding the decision-making logic we need to determine if the passed array is an array palindrome. This should remind us a bit of the search pattern that we covered yesterday.
Finally, let’s make one small improvement to our code.
Early Facebook has a well-deserved reputation for being a male-dominated testosterone-driven workplace. So it may surprise you to find out that one of the software developers who was a core contributor to the first version of the News Feed—way back in 2006—was Ruchi Sanghvi.
She was also involved in Facebook’s response to the initial feedback on the News Feed. Users hated it! But Facebook kept it for one simple reason: Users were spending more time on the site. You should always keep this in mind when using Facebook, YouTube, TikTok, or any free site run by ad revenue. Their primary and sometimes only goal is for you to spend as much time as possible on their site. Regardless of whether that’s healthy or appropriate or useful to you.
Ruchi Sanghvi worked at several companies after leaving Facebook. In this video, she discusses some of what she learned along the way.
Need more practice? Head over to the practice page.