String with maximum number of unique characters
Given an array of strings, the task is to print the string with the maximum number of unique characters. Note: Strings consists of lowercase characters.If multiple strings exists, then print any one of them.Examples: Input: arr[] = ["abc", "geeksforgeeks", "gfg", "code"]Output: "geeksforgeeks" Expla