Question: Write a function has _ unique _ characters ( string ) that takes a string as input and returns True if all characters in the

Write a function has_unique_characters(string) that takes a string as input
and returns True if all characters in the string are unique, and False otherwise (10 pts).
Examples
has_unique_characters('arm')---> returns True
has_unique_characters('common')---> returns False
Hint: 'T' and 't' are considered to be the same
"""
# Write your solution for problem 2 here.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!