We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
방에 참가한 유저들 중에서
현재 문제를 더 많이 푼 순서대로,
똑같은 문제를 풀었다면, 마지막 문제를 더 빨리 푼 순서대로
정렬해서 앞단에 플레이어의 이름의 목록을 보내준다.
GET /room/{roomId}/ranking
{ "users": [ "kim", "lee", "park" ] }
The text was updated successfully, but these errors were encountered:
submission -> roomUser roomUser -> submission
circular dependency가 발생하는 것을 어떻게 해결할지?
https://blog.logrocket.com/avoid-circular-dependencies-nestjs/
위 글을 참고해서 submission, roomUser를 둘 다 import하는 중간 다리 서비스인
rankingService를 만들어서 해결해보겠습니다!
Sorry, something went wrong.
[ { "id": 1, "username": "mock", "numberOfProblemsSolved": 0, "mostRecentCorrectSubmissionTime": "" }, { "id": 2, "username": "mock2", "numberOfProblemsSolved": 0, "mostRecentCorrectSubmissionTime": "" } ]
일단은 이런 형태로 올 것 같습니다!
vimkim
Successfully merging a pull request may close this issue.
💎 개발할 기능
방에 참가한 유저들 중에서
현재 문제를 더 많이 푼 순서대로,
똑같은 문제를 풀었다면, 마지막 문제를 더 빨리 푼 순서대로
정렬해서 앞단에 플레이어의 이름의 목록을 보내준다.
request
response
The text was updated successfully, but these errors were encountered: