We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Find Minimum

As mentioned, an "algorithm" is just a set of instructions that can be carried out to solve a problem.

It's not any more magical than that.

Assignment

In this course, we'll be building pieces of a pretend social network: LockedIn. LockedIn is a place for professionals to virtue signal about how all the for-profit work they do is actually an altruistic endeavor. Think Facebook meets a job fair. It includes tools for influencers to track their growth.

We need to show our users the accounts they follow with the lowest follower counts. This will help them know who they follow that isn't popular enough to be worth following any more.

Implement the "find minimum" algorithm in Python by completing the find_minimum() function. It accepts a list of integers nums and returns the smallest number in the list.