Sort Posts by Likes
Medium📝 Description
Sort a list of posts by the number of likes in descending order.
Input Format
[ {"post": "Hello", "likes": 10}, {"post": "Hi", "likes": 20} ]
Output Format
[ {"post": "Hi", "likes": 20}, {"post": "Hello", "likes": 10} ]
Constraints
Number of posts ≤ 1000
🔍 Sample Input
[ {"post": "Hello", "likes": 10}, {"post": "Hi", "likes": 20} ]
✅ Sample Output
[ {"post": "Hi", "likes": 20}, {"post": "Hello", "likes": 10} ]
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run