|
@@ -1,6 +1,6 @@
|
1
|
1
|
## Building Utility Class for String Array Objects
|
2
|
2
|
* **Objective**
|
3
|
|
- * Ensure [StringArrayUtilsTest](https://github.com/Zipcoder/CR-MicroLabs-Arrays-StringArrayUtilities/blob/master/src/test/java/com/zipcodewilmington/StringArrayUtilsTest.java) passes each test by completing the utility methods in the class [StringArrayUtils](https://github.com/Zipcoder/CR-MicroLabs-Arrays-StringArrayUtilities/blob/master/src/main/java/com/zipcodewilmington/StringArrayUtils.java)
|
|
3
|
+ * Ensure [StringArrayUtilsTest](https://github.com/Zipcoder/CR-MicroLabs-Arrays-StringArrayUtilities/blob/master/src/test/java/com/zipcodewilmington/StringArrayUtilsTest.java) passes each test by completing the methods [stubbed out](https://en.wikipedia.org/wiki/Method_stub) in the class [StringArrayUtils](https://github.com/Zipcoder/CR-MicroLabs-Arrays-StringArrayUtilities/blob/master/src/main/java/com/zipcodewilmington/StringArrayUtils.java)
|
4
|
4
|
* `int getNumberOfOccurrences(String[] stringArray, String stringToCheck)`
|
5
|
5
|
* `boolean contains(String[] stringArray, String stringToCheck)`
|
6
|
6
|
* `String[] removeValue(String[] stringArray, String stringToRemove)`
|