Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Validate ISIN Format
00:00
5 left

Validate ISIN Format

EasyPython

Problem

BlackRock's Aladdin platform processes securities identified by ISINs. Write a function that validates whether a string has the required ISIN structure.

A valid ISIN must contain exactly 12 characters:

  1. Characters at positions 0 and 1 must be uppercase ASCII letters representing the country code.
  2. Characters at positions 2 through 10 must be ASCII letters or digits.
  3. Character at position 11 must be an ASCII digit representing the check digit.

This task validates the required format only. You do not need to calculate or verify the mathematical ISIN check-digit algorithm.

Formal Specification

Given a string isin, return True if it satisfies all rules above, and return False otherwise. The input is a Python string, and the output must be a Boolean.

Constraints

  • 0 <= len(isin) <= 10^5
  • The input is a Python string
  • The format is case-sensitive
  • Only the structure is validated, not the mathematical ISIN check-digit algorithm

Function Signature

def is_valid_isin(isin):
Interviewer

Your question is Validate ISIN Format. 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.