You are viewing a single comment's thread. Return to all comments →
public static List reverseArray(List a) { ArrayList list=new ArrayList<>(a); Collections.reverse(list); return list; }
Seems like cookies are disabled on this browser, please enable them to open this website
Arrays - DS
You are viewing a single comment's thread. Return to all comments →
public static List reverseArray(List a) { ArrayList list=new ArrayList<>(a); Collections.reverse(list); return list; }