We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
select submissions.hacker_id,hackers.name from hackers
inner join submissions on hackers.hacker_id=submissions.hacker_id
inner join challenges on challenges.challenge_id=submissions.challenge_id
inner join difficulty on challenges.difficulty_level=difficulty.difficulty_level
where difficulty.score=submissions.score
group by submissions.hacker_id,hackers.name
having count(hackers.name)>1
order by count(hackers.name) desc,submissions.hacker_id asc
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Top Competitors
You are viewing a single comment's thread. Return to all comments →
select submissions.hacker_id,hackers.name from hackers inner join submissions on hackers.hacker_id=submissions.hacker_id inner join challenges on challenges.challenge_id=submissions.challenge_id inner join difficulty on challenges.difficulty_level=difficulty.difficulty_level where difficulty.score=submissions.score group by submissions.hacker_id,hackers.name having count(hackers.name)>1 order by count(hackers.name) desc,submissions.hacker_id asc