July 4th Sale
Limited Time Deal: Unlock all premium questions for over 40% off
$10.42$6.25
10
:
09
:
30
:
24
Back to Dashboard
Article Ranking System
Medium
Design an article ranking system for a news platform. The system stores articles identified by a unique integer ID, a relevance score, and a category string. Implement the ArticleRanker class with the following operations:
addArticle(id, score, category)-- Add an article to the system. Returnstrueif the article was added successfully,falseif an article with the sameidalready exists. ...