Quellcode durchsuchen

Update README.md

Git-Leon vor 6 Jahren
Ursprung
Commit
c7994ceb81
Es ist kein Account mit dieser Commiter-Email verbunden
1 geänderte Dateien mit 5 neuen und 1 gelöschten Zeilen
  1. 5
    1
      README.md

+ 5
- 1
README.md Datei anzeigen

@@ -5,7 +5,11 @@
5 5
 * **Purpose**
6 6
 	* To demonstrate practical understanding of `while`, `for`, and `for each` loops.
7 7
 * **Instructions**
8
-    * Given an object, `DuplicateDeleter`, with a composite `Integer[]` object, write a method
8
+    * Given an object, `IntegerDuplicateDeleter`, with a composite `Integer[]` object, write a method
9
+        * `removeDuplicatesExactly` which removes all values in the array which occur exactly the specified number of times.
10
+        * `removeDuplicates` which removes all values in the array which occur at least the specified number of times.
11
+	<br><br>
12
+    * Given an object, `StringDuplicateDeleter`, with a composite `String[]` object, write a method
9 13
         * `removeDuplicatesExactly` which removes all values in the array which occur exactly the specified number of times.
10 14
         * `removeDuplicates` which removes all values in the array which occur at least the specified number of times.
11 15