Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String[] cloneSubarray(String a[], int from, int to) {
int n = to - from;
String result[] = new String[n];
System.arraycopy(a, from, result, 0, n);
return result;
}
}