Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Implement a DOM Store
00:00
5 left

Implement a DOM Store

MediumPython

Problem

Implement DOMStore: a store that lets you set, get and delete arbitrary data associated with a DOM node.

Asked in the technical phone screen stage. This was the first of the two phone screen questions, and the candidate notes it can be searched directly on bigfrontend.dev.

I/O Contract

Represent each DOM node with an opaque string ID. operations contains objects with op, node, and, for set, value. Return results only for get and delete, in operation order. get returns null when no value exists, while delete returns a Boolean.

Constraints

  • 1 <= operations.length <= 1000
  • Each operation is set, get, or delete.
  • Node IDs are strings.
  • Values may be any JSON-compatible value.
  • Set operations always include a value.

Function Signature

def dom_store(operations):
Interviewer

Your question is Implement a DOM Store. 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.