Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Sensor Read Function With Error Handling
00:00
5 left

Sensor Read Function With Error Handling

MediumPython

Problem

Write a function to read data from a sensor and handle possible errors. Model each sensor attempt as a dictionary with ok and, when successful, value; return the first successful value within max_attempts, or None if every allowed attempt fails. Implement read_sensor(readings, max_attempts) without attempting reads beyond the retry limit.

Constraints

  • 1 <= len(readings) <= 10^4
  • 1 <= max_attempts <= len(readings)
  • Each reading is a dictionary containing an ok boolean
  • A successful reading contains a numeric value
  • Return the first successful value within the allowed attempts

Function Signature

def read_sensor(readings, max_attempts):
Interviewer

Your question is Sensor Read Function With Error Handling. 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.