To Be Or Not To Be — LeetCode 2704 Python Solution

EasyJavaScript
Problem
#2704
Reading time
2 min

The problem

Write a function expect that helps developers test their code. It should take in any value val and return an object with the following two functions.

Example

Input
func = () => expect(5).toBe(5)
Output
{"value": true}
Explanation
5 === 5 so this expression returns true.

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2704. To Be Or Not To Be?
LeetCode 2704. To Be Or Not To Be is rated Easy on LeetCode.
What topics does LeetCode 2704. To Be Or Not To Be cover?
LeetCode 2704. To Be Or Not To Be 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