Browse Source

Merge branch 'master' into feat/leon

Git-Leon 6 years ago
parent
commit
80007814c1
No account linked to committer's email
3 changed files with 12 additions and 9 deletions
  1. 3
    7
      README-NumberUtilities.md
  2. 8
    1
      README-TriangleUtilities.md
  3. 1
    1
      README.md

+ 3
- 7
README-NumberUtilities.md View File

1
 # NumberUtilities
1
 # NumberUtilities
2
-* Ensure each of the test cases in the class [NumberUtilitiesTest]() successfully passes upon completion of each method stubs in the class [NumberUtilities]().
2
+* Ensure each of the test cases in the class [NumberUtilitiesTest](https://github.com/Zipcoder/CR-MicroLabs-Loops-NumbersTrianglesTables/blob/master/src/test/java/io/zipcoder/microlabs/mastering_loops/NumberUtilitiesTest.java) successfully passes upon completion of each method stubs in the class [NumberUtilities](https://github.com/Zipcoder/CR-MicroLabs-Loops-NumbersTrianglesTables/blob/master/src/main/java/io/zipcoder/microlabs/mastering_loops/NumberUtilities.java).
3
     * `String getEvenNumbers(int start, int stop)` 
3
     * `String getEvenNumbers(int start, int stop)` 
4
     * `String getOddNumbers(int start, int stop)`
4
     * `String getOddNumbers(int start, int stop)`
5
     * `String getSquareNumbers(int start, int stop, int step)` 
5
     * `String getSquareNumbers(int start, int stop, int step)` 
12
 
12
 
13
 
13
 
14
 
14
 
15
-
16
-
17
-
18
-
19
-
15
+<br><br><br><br>
20
 ## `String getRange(int stop)`
16
 ## `String getRange(int stop)`
21
 * **Description**
17
 * **Description**
22
     * Given an integer, `stop`, return a `String` concatenation of all values between `0` and `stop` exclusively.
18
     * Given an integer, `stop`, return a `String` concatenation of all values between `0` and `stop` exclusively.
254
 
250
 
255
     ```
251
     ```
256
     25100225
252
     25100225
257
-    ```
253
+    ```

+ 8
- 1
README-TriangleUtilities.md View File

1
 # TriangleUtilities
1
 # TriangleUtilities
2
+* Ensure each of the test cases in the class [TriangleUtilitiesTest](https://github.com/Zipcoder/CR-MicroLabs-Loops-NumbersTrianglesTables/blob/master/src/test/java/io/zipcoder/microlabs/mastering_loops/TriangleUtilitiesTest.java) successfully passes upon completion of each method stubs in the class [TriangleUtilities](https://github.com/Zipcoder/CR-MicroLabs-Loops-NumbersTrianglesTables/blob/master/src/main/java/io/zipcoder/microlabs/mastering_loops/TriangleUtilities.java).
3
+    * `String getSmallMultiplicationTable()`
4
+    * `String getLargeMultiplicationTable()`
5
+    * `String getMultiplicationTable(int tableSize)`
6
+    
7
+
8
+<br><br><br><br>
2
 ## `String getRow(int width)`
9
 ## `String getRow(int width)`
3
 * **Description**
10
 * **Description**
4
     * In the class, `Triangles` Write a method that returns a `String` representation of a row of asterisks whose length is equal to the `width` specified.
11
     * In the class, `Triangles` Write a method that returns a `String` representation of a row of asterisks whose length is equal to the `width` specified.
153
     *************
160
     *************
154
     **************
161
     **************
155
     
162
     
156
-    ```
163
+    ```

+ 1
- 1
README.md View File

1
-# ZCW-MicroLabs-Loops
1
+# Leon's Loopy Lab
2
 * Read through each of the following `README` files and complete each of the asks.
2
 * Read through each of the following `README` files and complete each of the asks.
3
     * [README-NumberUtilities.md](./README-NumberUtilities.md)
3
     * [README-NumberUtilities.md](./README-NumberUtilities.md)
4
     * [README-TriangleUtilities.md](./README-TriangleUtilities.md)
4
     * [README-TriangleUtilities.md](./README-TriangleUtilities.md)