Update exercise number of each exercise

This commit is contained in:
Michael Frank 2021-05-12 19:39:31 +12:00
parent 26ac56f75d
commit 321e943041
9 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,5 @@
# Exercise 08 - Calculator
The goal for this exercise is to create a calculator that does the following:
add, subtract, get the sum, multiply, get the power, and find the factorial

View File

@ -1,4 +1,4 @@
# Exercise XX - Fibonacci
# Exercise 10 - Fibonacci
Create a function that returns a specific member of the Fibonacci sequence:

View File

@ -1,4 +1,4 @@
# Find the Oldest
# Exercise 12 - Find the Oldest
Given an array of objects representing people with a birth and death year, return the oldest person.

View File

@ -1,4 +1,4 @@
# Get the Titles!
# Exercise 11 - Get the Titles!
You are given an array of objects that represent books with an author and a title that looks like this:

View File

@ -1,4 +1,4 @@
# Exercise 01 - Hello World.
# Exercise 01 - Hello World
The main purpose of this exercise is to walk you through the process of running the tests and make sure everything is set up and running correctly.

View File

@ -1,4 +1,4 @@
# Exercise XX - leapYears
# Exercise 06 - leapYears
Create a function that determines whether or not a given year is a leap year. Leap years are determined by the following rules:

View File

@ -1,4 +1,4 @@
# Exercise XX - palindromes
# Exercise 09 - Palindromes
Write a function that determines whether or not a given string is a palindrome.

View File

@ -1,4 +1,4 @@
# Exercise 02 - Reverse a String.
# Exercise 03 - Reverse a String
Pretty simple, write a function called `reverseString` that returns its input, reversed!

View File

@ -1,4 +1,4 @@
# Exercise 06 - tempConversion
# Exercise 07 - tempConversion
Write two functions that convert temperatures from Fahrenheit to Celsius, and vice versa:
```