Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
No-Repeating-Characters Check
00:00
5 left

No-Repeating-Characters Check

EasyPython

Problem

A Granicus content workflow needs to validate a string before processing it. Implement an algorithm that returns True when every character appears exactly once, and False when any character appears more than once.

Character comparisons are case-sensitive, and spaces and punctuation count as characters. For example, A and a are different characters.

Formal Specification

Implement has_unique_characters(s), where:

  • Input: s, a string containing zero or more characters.
  • Output: A boolean. Return True if no character occurs more than once; otherwise, return False.

Constraints

  • 0 <= len(s) <= 100,000
  • The string may contain Unicode characters
  • Spaces and punctuation count as characters
  • Character comparisons are case-sensitive

Function Signature

def has_unique_characters(s):
Interviewer

Your question is No-Repeating-Characters Check. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.