leetcode竞赛题目
leetcode排名搜索 (leetcode-ranking-search)
Leetcode contest ranking page lacks a search bar to search for the ranking of a specific user. So I implemented one.
Leetcode竞赛排名页面缺少搜索栏来搜索特定用户的排名。 所以我实现了一个。
Besides searching a username in a contest, I also implemented a feature to search the ranking history among contests for a user!!
除了在比赛中搜索用户名之外,我还实现了一项功能,可以在比赛中搜索用户的排名历史!
The contest data is updated every week by setting up a scheduled pipeline using Github Actions.
通过使用Github Actions设置排定的管道,竞赛数据每周都会更新。
爬行比赛结果 (Crawling contest results)
By simply executing the crawler.py
script, the contest results will be parsed and saved into data/<contest>.json
.
通过简单地执行crawler.py
脚本,竞赛结果将被解析并保存到data/<contest>.json
。
# crawling results of weekly contest 179
./crawler.py weekly-contest-179
网页界面 (Web UI)
The website is purely static which can be served on any web server directly!!
该网站是纯静态的,可以直接在任何Web服务器上使用!!
The UI is made with Vue.js and BootstrapVue.
UI由Vue.js和BootstrapVue组成 。

翻译自: https://vuejsexamples.com/leetcode-contest-ranking-searcher/
leetcode竞赛题目