Skip to content

Instantly share code, notes, and snippets.

View themoralpanda's full-sized avatar

Vigneshwar V themoralpanda

  • Senior Software Engineer
  • Hong Kong
View GitHub Profile
@themoralpanda
themoralpanda / answer1.java
Created March 27, 2018 03:21
Oursky Developer Pretest - haivicky@gmail.com
/*
Program to check if an array is a subset of another array
*/
public class answer1{
public static void main(String args[]){
char [] a ={'A','B','C','D','E'};
char [] b ={'A','D','D','Z'};
System.out.println(isSubset(a,b));