X Tutup
Skip to content

Commit 2b30dec

Browse files
authored
Update README.md
1 parent da16de6 commit 2b30dec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
<br><br><br><br>
21-
## Sample Behavior<br> `StringArrayUtils.removeValues(array, valueToRemove)`
21+
## Sample Behavior<br> `removeValues(array, valueToRemove)`
2222
* **Description**
2323
* Given an array of `String` objects named `array` and a `String` object named `valueToRemove`<br>create and return an array containing identical contents excluding objects whose value is equivalent to `valueToRemove`. Ensure that the length of the newly created array has been resized based on the removal of the undesired elements.
2424

@@ -104,7 +104,7 @@
104104
105105
106106
<br><br><br><br>
107-
## Sample Behavior<br> `StringArrayUtils.getNumberOfOccurrences(array, value)`
107+
## Sample Behavior<br> `getNumberOfOccurrences(array, value)`
108108
* **Description**
109109
* Given an array of `String` objects named `array` and a `String` object named `value`<br>return the number of times `value` appears in `arrays`
110110
@@ -195,7 +195,7 @@
195195
196196
197197
<br><br><br><br>
198-
## Sample Behavior<br> `StringArrayUtils.contains(array, value)`
198+
## Sample Behavior<br> `contains(array, value)`
199199
* **Description**
200200
* Given an array of `String` objects named `array` and a `String` object named `value`<br>return true if `value` appears in `arrays`.
201201
### Example 1

0 commit comments

Comments
 (0)
X Tutup