View artgal.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
size = (1000,1000) | |
polygon = [ (612,661), (668,661), (668,612), (752,757), (668,757), (668,950), | |
(312,334), (284,383), (326,407), (159,407), (201,334), ( 33,238), | |
(745,238), (717,189), (675,213), (759, 68), (801,141), (968, 44), ] | |
guards = polygon[4::6] | |
View animation.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View monty_hall.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from random import randrange, shuffle, choice | |
from collections import Counter | |
class Judge(object): | |
def __init__(self): | |
self.doors = ['goat', 'goat', 'CAR'] | |
shuffle(self.doors) # move the prize into a random door |
View draw.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | y | |
* | | |
* . | |
* / \ | |
* z / \ x | |
* | |
*/ | |
const scene = new THREE.Scene(); |
View equal_sum.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import random | |
UPPER_BOUND = 10**9 | |
BINARY_BOUND = len(f'{UPPER_BOUND:b}') | |
def is_binary(x): | |
return x == 2**len(f'{x:b}') |
View chain_reactions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from operator import iconcat | |
from functools import reduce | |
sys.setrecursionlimit(100010) | |
class Node(object): | |
def __init__(self): | |
self.fun = 0 |
View sympy-interval.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View undividable_clique.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from itertools import combinations | |
def is_undividable_clique(family, number): | |
for subgraph in combinations(family, 4): | |
if sum(subgraph) % number == 0: | |
return False | |
return True |
View bruteforce-grid.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# change params here | |
N = 3 | |
M = 3 | |
PRINT_UNIQUE_ANSWERS = True | |
View generate.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# NOTE | |
# LAYERS is a non-empty list of integers. | |
# The n-gon can be determine by calc_ngon(LAYERS), e.g., | |
#LAYERS = [1, 2, 2] # heptagon (not constructible) | |
#LAYERS = [1, 4, 3] # heptadecagon (17 sides) | |
#LAYERS = [2, 2, 3, 2] # tetracontadigon (42) | |
#LAYERS = [4, 1, 4, 3, 2, 2] # 360-gon |
NewerOlder