Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

User Input Processing and Validation

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

Your question is User Input Processing and Validation. 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

The monday Work Management API receives a batch of user-submitted item updates. Write a function that validates and normalizes the batch efficiently while preserving the order of accepted updates.

An update is valid when it is a dictionary containing item_id, column, and value where:

  1. item_id is a positive integer, but booleans are not accepted.
  2. column is a string whose surrounding whitespace is removed, and whose normalized value appears in allowed_columns.
  3. value is a string whose surrounding whitespace is removed, is not empty, and has at most 100 characters.
  4. No two valid updates target the same (item_id, column) pair. If a duplicate occurs, reject the later update.

Return a dictionary with two fields: valid, containing normalized update dictionaries, and invalid_indices, containing the zero-based indices of every rejected update in input order. Invalid updates must not reserve their item-column pair.

Constraints

  • 0 <= len(updates) <= 10^5
  • 1 <= len(allowed_columns) <= 10^4
  • Each update must contain item_id, column, and value to be valid
  • item_id must be a positive integer and booleans are invalid
  • value must contain at most 100 characters after trimming
  • Duplicate pairs are determined using normalized column names

Function Signature

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