From William Lyon Mackenzie C.I.
About
Hi!
Join the midrange grind! Here are the rules:
- Choose a set of comfortable problem difficulties (e.g. 10, 12, 15)
- Randomly pick 3 problems of the easiest diffculty (using DMOJ's random problem picker feature)
- Whenever you solve a problem, open up another random problem with lower difficulty (wrapping around)
- No skipping! ("Fun" problems such as language-based problems are skippable)
To generate a random problem, use the URL
dmoj.ca/problems/random/?search=&hide_solved=1&category=&point_start=[POINT_VALUE]&point_end=[POINT_VALUE]
Where [POINT_VALUE] is the number of points you want the problem to be.
User-script to hide problem types and editorials:
$(document).ready(function(){
$('#problem-types').hide();
$('#comments').hide();
var ele = $('div > a');
for(var i = 0; i < ele.length; i++)
if(ele[i].innerHTML == 'Read editorial')
$(ele[i]).hide();
var url = window.location.href.split('/');
if(url[url.length - 1] == 'editorial') window.location.href = url.slice(0, -1).join('/');
});