public static Integer find(List<String> list, String name, int i) { if(list.get(i).equals(name)) { return i; } else return find(list, name, i+1) }