Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Validate User IDs in Python

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

Your question is Validate User IDs in Python. 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

Moovit data pipelines receive user IDs as strings. Validate whether an ID follows the required format and contains a correct checksum.

A valid ID must have the exact structure MVT-MARKET-BODY-CHECK, where:

  1. MVT is the literal prefix.
  2. MARKET contains 2 to 4 uppercase ASCII letters.
  3. BODY contains 6 to 12 ASCII digits.
  4. CHECK contains exactly one ASCII digit.
  5. The check digit is the Luhn check digit for BODY. To calculate it, scan BODY from right to left, double digits at positions 0, 2, 4, and so on, subtract 9 when a doubled value exceeds 9, then choose the digit that makes the total divisible by 10.

Implement is_valid_user_id(user_id) and return True only when every rule is satisfied. Return False for malformed input, incorrect casing, invalid characters, or an incorrect checksum.

Constraints

  • 1 <= len(user_id) <= 30
  • The identifier uses exactly three hyphens
  • MARKET contains 2 to 4 uppercase ASCII letters
  • BODY contains 6 to 12 ASCII digits
  • CHECK contains exactly one ASCII digit
  • No leading or trailing whitespace is allowed

Function Signature

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