[LeetCode]小工具,统计数量,隐藏上锁的题目

LeetCode Problems List没有统计数量的功能,顺手写了一个。

下面两段只是用jquery调整网页上显示的内容,刷新网页就没用了。

比如想看题目里一共有多少Easy, Medium和Hard,就在浏览器Console中运行下面的代码。

还有一种用法,比如看还有多少没做,或者没做的题中有多少Easy, Medium和Hard,先选Unsolved Problems的filter,再用控制台运行该代码。

 

 1 //Count Problems
 2 var list = $("tbody > tr").not(".hide"), tdlist, html;
 3 console.log("---Count Problems: " + list.length);
 4 var countEasy = 0, countMedium = 0, countHard = 0;
 5 for(var i = 0; i < list.length; i++){
 6     tdlist = $(list[i]).find("td");
 7     html = $(tdlist[tdlist.length - 1]).html().toUpperCase();
 8     if(html === "EASY"){ 
 9          countEasy++;
10     }else if(html === "MEDIUM"){
11          countMedium++;
12     }else if(html === "HARD"){
13          countHard++;
14     }  
15 }
16 console.log("---Count Easy: " + countEasy);
17 console.log("---Count Medium: " + countMedium); 
18 console.log("---Count Hard: " + countHard);

 

下面一段是隐藏所有上锁的题目:

 

1 //hide locked problems
2 var list = $("tbody > tr");
3 for(var i = 0 ; i < list.length; i++){
4     if($(list[i]).find("td > i.fa-lock").length > 0){
5         $(list[i]).addClass("hide");
6         //list[i].remove();
7     }
8 }

 

posted @ 2015-11-28 23:43  `Liok  阅读(935)  评论(0编辑  收藏  举报