Event Emitter — LeetCode 2694 Python Solution

MediumJavaScript
Problem
#2694
Reading time
2 min

The problem

Design an EventEmitter class. This interface is similar (but with some differences) to the one found in Node.js or the Event Target interface of the DOM.

Example

Input
actions = ["EventEmitter", "emit", "subscribe", "subscribe", "emit"],
Output
[[],["emitted",[]],["subscribed"],["subscribed"],["emitted",[5,6]]]
Explanation
const emitter = new EventEmitter();

Complexity

MeasureComplexity
TimeO(n)
SpaceO(1) to O(n) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2694. Event Emitter?
LeetCode 2694. Event Emitter is rated Medium on LeetCode.
What topics does LeetCode 2694. Event Emitter cover?
LeetCode 2694. Event Emitter is tagged JavaScript on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview