|
@@ -1,4 +1,5 @@
|
1
|
1
|
# Java Fundamentals
|
|
2
|
+
|
2
|
3
|
* **Objective:**
|
3
|
4
|
* To complete the method stubs in each of the provided classes
|
4
|
5
|
* `MathUtilities`
|
|
@@ -17,6 +18,15 @@
|
17
|
18
|
* `StringUtilities`
|
18
|
19
|
|
19
|
20
|
* **Instructions**
|
|
21
|
+
|
|
22
|
+ * Fork this Repository
|
|
23
|
+ * [fork](https://help.github.com/articles/fork-a-repo/) this repository to your personal github account
|
|
24
|
+ * [clone](https://help.github.com/articles/cloning-a-repository/) **your** `forked` repository to your local machine.
|
|
25
|
+ * edit and create the required files.
|
|
26
|
+ * `git add` your changes to the list of your `commited` files.
|
|
27
|
+ * `git commit` your added files to the list of your `staged` files.
|
|
28
|
+ * `git push` your staged files to your remote repository.
|
|
29
|
+ * submit a `pull request` which compares Zipcoder `master` to your `master`.
|
20
|
30
|
* Complete each of the method stubs in the `main` classes provided.
|
21
|
31
|
* `main` classes are located in `src.main.java.com.zipcodewilmington.danny_do_better_exercises`
|
22
|
32
|
* There are comments above each method stub to describe the expected behavior.
|