Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Cosine Similarity Implementation
00:00
5 left

Cosine Similarity Implementation

EasyPython

Problem

Implement a function that computes the cosine similarity between two high-dimensional numeric vectors. Cosine similarity is defined as the dot product of the vectors divided by the product of their magnitudes.

Formal Specification

Write a function cosine_similarity(vec1, vec2) that takes two lists of numbers of equal length and returns a floating-point value.

  1. If either vector has zero magnitude, return 0.0.
  2. The vectors may contain positive, negative, or zero values.
  3. Assume both inputs are valid Python lists of the same length.

Constraints

  • 1 <= len(vec1) == len(vec2) <= 10^5
  • -10^9 <= vec1[i], vec2[i] <= 10^9
  • Vectors are the same length
  • Return 0.0 if either vector has zero magnitude

Function Signature

def cosine_similarity(vec1, vec2):
Interviewer

Your question is Cosine Similarity Implementation. 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.