Skip to content

Instantly share code, notes, and snippets.

@akashkumarcs19
Created June 23, 2021 05:28
Show Gist options
  • Save akashkumarcs19/51a9cd5680d958e628ff5e0655531c7a to your computer and use it in GitHub Desktop.
Save akashkumarcs19/51a9cd5680d958e628ff5e0655531c7a to your computer and use it in GitHub Desktop.
Non_primitive_dataarray_main
import java.util.Arrays;
import java.util.Scanner;
public class StudentArrayMain {
public static void main(String[] args) {
StudentArray studentArray = new StudentArray();
studentArray.insert("akash",1,1);
studentArray.traverse();
studentArray.deleteindex(0);
studentArray.traverse();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment