Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Find Most Similar Places

MediumPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Find Most Similar Places. Start with the requirements on the right.

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.

Problem

Yelp wants to recommend places similar to a user-selected business. Given a collection of places, a target place ID, and a number k, return the IDs of the k most similar other places.

Each place is represented by a dictionary containing an id, a two-dimensional location, and a list of categories. Similarity is defined by the Jaccard index of the category sets: intersection_size / union_size. Higher Jaccard similarity ranks first. If two places have equal category similarity, the place with the smaller squared Euclidean distance from the target ranks first. If both values are equal, sort by place ID in lexicographic order.

Formal Specification

Implement find_similar_places(places, target_id, k), where places is a list of dictionaries and each location is [x, y]. Return a list of place ID strings. Exclude the target place itself. If fewer than k other places exist, return all available places.

Constraints

  • 1 <= len(places) <= 10^5
  • 1 <= k <= len(places)
  • Every place ID is unique and target_id exists
  • Each category list contains strings and may be empty
  • Coordinates are integers or finite floating-point values

Function Signature

def find_similar_places(places, target_id, k):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output