Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Hot Function Profiling
00:00
5 left

Hot Function Profiling

MediumPython

Problem

Walk me through profiling and optimizing a hot function.

Implement an optimized version of the function below. Given a list of integers, return the sum of the squares of distinct values, preserving no ordering requirement. Explain which profiling evidence would justify the optimization and provide the function implementation.

Function: def sum_unique_squares(nums):

Input: A list of integers. Output: An integer equal to the sum of each distinct value squared.

Constraints

  • 0 <= nums.length <= 100000
  • -1000000000 <= nums[i] <= 1000000000
  • The result fits within Python's integer range
  • Input order does not affect the output

Function Signature

def sum_unique_squares(nums):
Interviewer

Your question is Hot Function Profiling. 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.