...

/

Solution Review: Find a Number in a List

Solution Review: Find a Number in a List

See the solution to the exercise on finding a number in a list.

We'll cover the following...

Solution

Let’s look at the solution before jumping into the explanation:

Press + to interact
my $found = 0;
foreach (@list) {
if ($found = $_ eq $num) {
print 'Found the number';
last;
}
}
print 'Did not find the number' if !$found;

Explanation

...