Bläddra i källkod

Revert "Update 'README.md'"

This reverts commit 4897ebe5a7855471bb89feaabef238e8a155d85f.
Nhu Nguyen 6 år sedan
förälder
incheckning
7648bd18f1
1 ändrade filer med 0 tillägg och 1 borttagningar
  1. 0
    1
      README.md

+ 0
- 1
README.md Visa fil

@@ -5,7 +5,6 @@
5 5
 * **Purpose**
6 6
 	* To demonstrate practical understanding of arrays, loops, and basic composition.
7 7
 * **Instructions**
8
-    * The `IntegerDuplicateDeleter` and `StringDuplicateDeleter` both inherit from the abstract class `DuplicateDeleter`. The `DuplicateDeleter` class has two required methods that the IntegerDuplicateDeleter and StringDuplicateDeleter need to implement. You need to add the two methods into the two classes and add a constructor to call the `DuplicateDeleter` method to make your code compile.
9 8
     * Given an object, `IntegerDuplicateDeleter`, with a composite `Integer[]` object, write a method
10 9
         * `removeDuplicatesExactly` which removes all values in the array which occur exactly the specified number of times.
11 10
         * `removeDuplicates` which removes all values in the array which occur at least the specified number of times.