8000 add planned exercises · dbateman3/javascript-exercises@15271b1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 15271b1

Browse files
committed
add planned exercises
1 parent 82dc28e commit 15271b1

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,20 @@ Before you start you should have a few things installed on your machine:
88

99
Each exercise includes 3 files, a markdown file with a description of the task, an empty (or mostly empty) javascript file, and a set of tests. To complete the exercise go to the exercise directory in a terminal and run `jasmine filename.spec.js`. This should find and run the test file and show you the output. Upon first running the tests you will find that the tests fail: this is by design! Your task is to open up the javascript file and write the code needed to get all of the tests to pass.
1010

11-
The first exercise, `helloWorld` will walk you through the process in more depth.
11+
The first exercise, `helloWorld` will walk you through the process in more depth.
12+
13+
14+
##planned exercises (in no particular order for the moment):
15+
1. calculate factorial
16+
1. temperature conversion
17+
1. book titles
18+
1. leap years
19+
1. Caesar Cipher
20+
1. Palindromes
21+
1. Pangrams
22+
1. Remove specific elements from array: remove([1,2,3,4], 3) <= remove 3 from that array
23+
1. repeat string given number of times
24+
1. sum numbers in range: sumAll(1,4) (sums all numbers between and including 1 and 4)
25+
1. pig latin
26+
1. fibonacci
27+
1. convert to snake case

0 commit comments

Comments
 (0)
0