Make alphabets using the elements of an array
Given an array of positive integers, find all the alphabets that we can make using elements of the array. Examples : Input : arr[] = {6, 5} Output : A In this example, we can take 6 and 5 as 65 that gives us A. Input : arr[] = {5, 6, 6} Output : A B Here we can take 6 and 5 as 65 to make A. And 6 an