add planned exercises
This commit is contained in:
parent
82dc28ef1e
commit
15271b14e7
16
README.md
16
README.md
|
@ -9,3 +9,19 @@ Before you start you should have a few things installed on your machine:
|
||||||
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.
|
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.
|
||||||
|
|
||||||
The first exercise, `helloWorld` will walk you through the process in more depth.
|
The first exercise, `helloWorld` will walk you through the process in more depth.
|
||||||
|
|
||||||
|
|
||||||
|
##planned exercises (in no particular order for the moment):
|
||||||
|
1. calculate factorial
|
||||||
|
1. temperature conversion
|
||||||
|
1. book titles
|
||||||
|
1. leap years
|
||||||
|
1. Caesar Cipher
|
||||||
|
1. Palindromes
|
||||||
|
1. Pangrams
|
||||||
|
1. Remove specific elements from array: remove([1,2,3,4], 3) <= remove 3 from that array
|
||||||
|
1. repeat string given number of times
|
||||||
|
1. sum numbers in range: sumAll(1,4) (sums all numbers between and including 1 and 4)
|
||||||
|
1. pig latin
|
||||||
|
1. fibonacci
|
||||||
|
1. convert to snake case
|
Loading…
Reference in New Issue