Pārlūkot izejas kodu

Merge branch 'master' into feat/leon

Git-Leon 6 gadus atpakaļ
vecāks
revīzija
80007814c1
Revīzijas autora e-pasts nav piesaistīts nevienam kontam
3 mainītis faili ar 12 papildinājumiem un 9 dzēšanām
  1. 3
    7
      README-NumberUtilities.md
  2. 8
    1
      README-TriangleUtilities.md
  3. 1
    1
      README.md

+ 3
- 7
README-NumberUtilities.md Parādīt failu

@@ -1,5 +1,5 @@
1 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 3
     * `String getEvenNumbers(int start, int stop)` 
4 4
     * `String getOddNumbers(int start, int stop)`
5 5
     * `String getSquareNumbers(int start, int stop, int step)` 
@@ -12,11 +12,7 @@
12 12
 
13 13
 
14 14
 
15
-
16
-
17
-
18
-
19
-
15
+<br><br><br><br>
20 16
 ## `String getRange(int stop)`
21 17
 * **Description**
22 18
     * Given an integer, `stop`, return a `String` concatenation of all values between `0` and `stop` exclusively.
@@ -254,4 +250,4 @@
254 250
 
255 251
     ```
256 252
     25100225
257
-    ```
253
+    ```

+ 8
- 1
README-TriangleUtilities.md Parādīt failu

@@ -1,4 +1,11 @@
1 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 9
 ## `String getRow(int width)`
3 10
 * **Description**
4 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,4 +160,4 @@
153 160
     *************
154 161
     **************
155 162
     
156
-    ```
163
+    ```

+ 1
- 1
README.md Parādīt failu

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