package com.zipcodewilmington; /** * Created by leon on 1/29/18. */ public class StringArrayUtils { /** * @param array - array of String objects * @param value - value to check array for * @return - number of occurrences the specified `value` has occurred */ // TODO public static int getNumberOfOccurrences(String[] array, String value) { return 0; } /** * @param array - array of String objects * @param value - value to check array for * @return - true if the array contains the specified `value` */ public static boolean contains(String[] array, String value) { return false; } /** * @param array - array of String objects * @param valueToRemove - value to remove from array * @return - array with identical contents excluding values of `value` */ public static String[] removeValue(String[] array, String valueToRemove) { return null; } }