Find Cheapest Product
Medium📝 Description
Given a list of products, return the cheapest one.
Input Format
[ {"name": "Shirt", "price": 20}, {"name": "Jeans", "price": 50} ]
Output Format
{"name": "Shirt", "price": 20}
Constraints
List length ≤ 1000
🔍 Sample Input
[ {"name": "Shirt", "price": 20}, {"name": "Jeans", "price": 50} ]
✅ Sample Output
{"name": "Shirt", "price": 20}
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run