Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Average Latency Function
00:00
5 left

Average Latency Function

EasyPython

Problem

Write a function to calculate the average latency in a series of network requests.

Implement def average_latency(latencies):, where latencies is a non-empty list of non-negative numbers measured in milliseconds. Return the arithmetic mean as a floating-point number. The input list must not be modified.

Constraints

  • 1 <= len(latencies) <= 1000
  • 0 <= latencies[i] <= 10^9
  • Each latency is an integer or floating-point number
  • The input list is non-empty and must not be modified

Function Signature

def average_latency(latencies):
Interviewer

Your question is Average Latency Function. 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.