Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>CalMask</title>
<script type="text/javascript" charset="utf-8" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>
<style type="text/css">
#feedback { font-size: 1.4em; }
#!/usr/bin/env python
#-*- coding:utf-8 -*-
# Usage: python test_generator.py <number_of_tests> <length_of_tests>
import sys
import random
n, length = [int(i) for i in sys.argv[-2:]]
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import sys
rdl = sys.stdin.readline
def check_sublist(current, desired, missing, to_catch):
"""Returns True if elements of desired list are in current list in the same
order even if there are other elements in the between"""
it = iter(desired)