Skip to content

Instantly share code, notes, and snippets.

View vikupilot's full-sized avatar

VIVEK KUMAR KUSHWAHA vikupilot

View GitHub Profile
@vikupilot
vikupilot / ArrayList.java
Last active February 12, 2018 20:06
collection
package collection;
import java.util.*;
public class Arraylistdemo {
public static void main(String[] args) {
// TODO Auto-generated method stub
ArrayList arr =new ArrayList();
arr.add("vivek");
arr.add("sumit");
arr.add("vikash");