Michelle DiMarino 6 years ago
parent
commit
18e192a14b
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      src/main/java/com/zipcodewilmington/arrayutility/ArrayUtility.java

+ 12
- 0
src/main/java/com/zipcodewilmington/arrayutility/ArrayUtility.java View File

@@ -4,4 +4,16 @@ package com.zipcodewilmington.arrayutility;
4 4
  * Created by leon on 3/6/18.
5 5
  */
6 6
 public class ArrayUtility {
7
+    public Integer countDuplicatesInMerge(Integer[] arrayToMerge, Integer valueToEvaluate) {
8
+    }
9
+
10
+    public Integer getMostCommonFromMerge(Integer[] arrayToMerge) {
11
+    }
12
+
13
+    public Integer getNumberOfOccurrences(Integer valueToEvaluate) {
14
+    }
15
+
16
+
17
+    public Integer[] removeValue(Integer valueToRemove) {
18
+    }
7 19
 }