Skip to content

Commit 321e943

Browse files
author
Michael Frank
committed
Update exercise number of each exercise
1 parent 26ac56f commit 321e943

File tree

9 files changed

+10
-8
lines changed

9 files changed

+10
-8
lines changed

calculator/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Exercise 08 - Calculator
2+
13
The goal for this exercise is to create a calculator that does the following:
24

35
add, subtract, get the sum, multiply, get the power, and find the factorial

fibonacci/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise XX - Fibonacci
1+
# Exercise 10 - Fibonacci
22

33
Create a function that returns a specific member of the Fibonacci sequence:
44

findTheOldest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Find the Oldest
1+
# Exercise 12 - Find the Oldest
22

33
Given an array of objects representing people with a birth and death year, return the oldest person.
44

getTheTitles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Get the Titles!
1+
# Exercise 11 - Get the Titles!
22

33
You are given an array of objects that represent books with an author and a title that looks like this:
44

helloWorld/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise 01 - Hello World.
1+
# Exercise 01 - Hello World
22

33
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.
44

leapYears/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise XX - leapYears
1+
# Exercise 06 - leapYears
22

33
Create a function that determines whether or not a given year is a leap year. Leap years are determined by the following rules:
44

palindromes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise XX - palindromes
1+
# Exercise 09 - Palindromes
22

33
Write a function that determines whether or not a given string is a palindrome.
44

reverseString/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise 02 - Reverse a String.
1+
# Exercise 03 - Reverse a String
22

33
Pretty simple, write a function called `reverseString` that returns its input, reversed!
44

tempConversion/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Exercise 06 - tempConversion
1+
# Exercise 07 - tempConversion
22

33
Write two functions that convert temperatures from Fahrenheit to Celsius, and vice versa:
44
```

0 commit comments

Comments
 (0)