Sort Unique Write a function 'SortUnique(strArr). It should accept an array of strings as input and return a single string containing the sorted unique elements of the input strings. For example, SortUnique(["Research", "Square"]) should return "RSacehqrsu". Examples Input: ["Research", "Square"] Output: RSacehqrsu Input: ["banana", "bandana"] Output: abdn 1 2 3 4 def SortUnique(strArr): #code goes here return strArr #keep this function call here 7 print (SortUnique (input()))

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.6: The Standard Template Library (stl)
Problem 8E
icon
Related questions
Question
Sort Unique
Write a function 'SortUnique(strArr). It
should accept an array of strings as input
and return a single string containing the
sorted unique elements of the input
strings. For example,
SortUnique(["Research", "Square"]) should
return "RSacehqrsu".
Examples
Input: ["Research", "Square"]
Output: RSacehqrsu
Input: ["banana", "bandana"]
Output: abdn
1
2
3
7
def Sortunique(strArr):
#code goes here
return strArr
#keep this function call here
print (SortUnique (input()))
Transcribed Image Text:Sort Unique Write a function 'SortUnique(strArr). It should accept an array of strings as input and return a single string containing the sorted unique elements of the input strings. For example, SortUnique(["Research", "Square"]) should return "RSacehqrsu". Examples Input: ["Research", "Square"] Output: RSacehqrsu Input: ["banana", "bandana"] Output: abdn 1 2 3 7 def Sortunique(strArr): #code goes here return strArr #keep this function call here print (SortUnique (input()))
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr