Quick actions

cmd+k|ctrl+k

Navigation

Languages

Exercise: Sorting Interview

Snippet info

Language

Python

Visibility

public

Author

rakeshbhatia87

Created

2023-01-12T03:50:24.124295Z

Updated

2023-01-13T07:23:05.560644Z

#1 - Sort 10 schools around your house by distance:
# Insertion sort

#2 - eBay sorts listings by the current Bid amount:
# Insertion sort

#3 - Sport scores on ESPN
# Insertion sort

#4 - Massive database (can't fit all into memory) needs to sort through past year's user data
# Merge sort

#5 - Almost sorted Udemy review data needs to update and add 2 new reviews
# Selection sort

#6 - Temperature Records for the past 50 years in Canada
# Insertion sort

#7 - Large user name database needs to be sorted. Data is very random.
# Merge sort

#8 - You want to teach sorting for the first time
# Bubble sort
INFO