Converting a LinkedHashSet to an Array


import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.Set;

import javax.management.monitor.StringMonitor;

public class LinkedHashSetToArray {
public static void main(String[] args) {
// creating our LinkedHashSet
Set<String> lhs = new LinkedHashSet<>();
// adding element to our set
// insertion order is maintained here
lhs.add("Neha");
lhs.add("Nisha");
lhs.add("Nishu");
lhs.add("Rekha");
lhs.add("Madhu");
lhs.add("Disha");
lhs.add("Tara");
lhs.add("Tara"); // duplicate element can't be added

Object[] ar_copy = new Object[lhs.size()];
ar_copy = lhs.toArray();
for (Object o : ar_copy) {
System.out.print(o + ",");
}
System.out.println();

}
}

Google Script for Data Entry Form in Google Spreadsheet

// function to validate the entry made by user in user form function validateEntry (){ // declare a variable and referernece of active goog...