• + 0 comments

    static void printArray(T[] arr){

    for(T nums:arr){
    
    System.out.println(nums);
    
    }
    
    }