cs icon indicating copy to clipboard operation
cs copied to clipboard

Files related to my CS self study

Results 4 cs issues
Sort by recently updated
recently updated
newest added

A simpler solution for the Shoemaker's problem

The following is a much simpler solution in Python3.x ``` def result(jobs): return ' '.join(str(x[1]) for x in sorted(jobs)) jqs = [] for _ in range(int(input())): input() jobs = []...

Hi Sakib, I read your solution website for OSTEP along with the book, and it helps me a lot. Thanks for the great web!👍 Anyway, I raise this issue here...