what is the running time
String[] stringCombo = new String[5];
for (int i = 0; i < stringCombo.length; i++) {
stringCombo[i] = deleteCharAt(s,i);
s = original;
}
i am not sure if it is O(N), because the length is fixed to be 5.
private static String deleteFirstChar(String s) {
return s.substring(1);
}