V School | Better Humans, Better Outcomes

Sum All Odd Fibonacci Numbers

Given a positive integer num, return the sum of all odd Fibonacci numbers that are less than or equal to num. The first two numbers in the Fibonacci sequence are 1 and 1. Every additional number in the sequence is the sum of the two previous numbers. The first six

Warmup - Red Rover

You met a child, who due to physical disability, is unable to play red rover with his friends. Having seen his great despair, you decided to make a robot that the child can control and thus take part in the game with his friends. Your goal is to get the

Look It Up!

Using the readline-sync package, write a program that allows a user to create their own dictionary. When the program starts, a menu should display asking the user which of the following they would like to do: 1. Insert a word and its definition 2. Look up an existing word's definition

Warmup - StringSplosion

Create a function that, given any non-empty string, returns a string where each character is concocted with each of the preceding characters. Example: stringSplosion("ab") //Output: "aab" stringSplosion("abc") //Output: "aababc" stringSplosion("Code") //Output: "CCoCodCode" Hint: You'll first want to identify the pattern before writing the code.

Warmup - Snoozed

We want to program our alarm clock according to our schedule. In this exercise, we will create a function that has a parameter for weekdays and another for holidays. Both arguments, to be passed in, will be booleans. This function should know when we should sleep in, returning true. Example:

V School | Better Humans, Better Outcomes © 2026