Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Input Validation Function

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Input Validation Function. Start with the requirements on the right.

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.

Problem

Flow uses workspace slugs in URLs and invitation links. Write a function that determines whether a candidate workspace slug follows Flow's naming rules.

A slug is valid only if it satisfies every requirement below:

  1. Its length is between 3 and 20 characters, inclusive.
  2. It contains only lowercase English letters, digits, and hyphens (-).
  3. It starts and ends with a lowercase letter or digit.
  4. Hyphens cannot appear consecutively.

Return True when the slug is valid and False otherwise. Do not modify the input, such as by trimming whitespace or converting uppercase letters.

Formal Specification

Implement validate_flow_slug(slug), where slug is a string. Return a boolean. An empty string is invalid.

Constraints

  • 0 <= len(slug) <= 20
  • slug is a Python string
  • Valid characters are lowercase English letters, digits, and hyphens
  • A valid slug must have length between 3 and 20 inclusive

Function Signature

def validate_flow_slug(slug):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output