From 321e94304196f276ef1a4d76c14a8935b4810c93 Mon Sep 17 00:00:00 2001 From: Michael Frank Date: Wed, 12 May 2021 19:39:31 +1200 Subject: [PATCH] Update exercise number of each exercise --- calculator/README.md | 2 ++ fibonacci/README.md | 2 +- findTheOldest/README.md | 2 +- getTheTitles/README.md | 2 +- helloWorld/README.md | 2 +- leapYears/README.md | 2 +- palindromes/README.md | 2 +- reverseString/README.md | 2 +- tempConversion/README.md | 2 +- 9 files changed, 10 insertions(+), 8 deletions(-) diff --git a/calculator/README.md b/calculator/README.md index 8881dd7..e50b776 100644 --- a/calculator/README.md +++ b/calculator/README.md @@ -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 diff --git a/fibonacci/README.md b/fibonacci/README.md index 698c42d..9e65347 100644 --- a/fibonacci/README.md +++ b/fibonacci/README.md @@ -1,4 +1,4 @@ -# Exercise XX - Fibonacci +# Exercise 10 - Fibonacci Create a function that returns a specific member of the Fibonacci sequence: diff --git a/findTheOldest/README.md b/findTheOldest/README.md index a3d1cef..92d0bf3 100644 --- a/findTheOldest/README.md +++ b/findTheOldest/README.md @@ -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. diff --git a/getTheTitles/README.md b/getTheTitles/README.md index 94cc5d4..fb8bf95 100644 --- a/getTheTitles/README.md +++ b/getTheTitles/README.md @@ -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: diff --git a/helloWorld/README.md b/helloWorld/README.md index 69b3efd..e79ae19 100644 --- a/helloWorld/README.md +++ b/helloWorld/README.md @@ -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. diff --git a/leapYears/README.md b/leapYears/README.md index 6233ab8..c4134da 100644 --- a/leapYears/README.md +++ b/leapYears/README.md @@ -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: diff --git a/palindromes/README.md b/palindromes/README.md index fc2c2f6..b924a45 100644 --- a/palindromes/README.md +++ b/palindromes/README.md @@ -1,4 +1,4 @@ -# Exercise XX - palindromes +# Exercise 09 - Palindromes Write a function that determines whether or not a given string is a palindrome. diff --git a/reverseString/README.md b/reverseString/README.md index 4b52d40..05221ae 100644 --- a/reverseString/README.md +++ b/reverseString/README.md @@ -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! diff --git a/tempConversion/README.md b/tempConversion/README.md index bd3954e..081a650 100644 --- a/tempConversion/README.md +++ b/tempConversion/README.md @@ -1,4 +1,4 @@ -# Exercise 06 - tempConversion +# Exercise 07 - tempConversion Write two functions that convert temperatures from Fahrenheit to Celsius, and vice versa: ```