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
x | y | aqi | note | |
---|---|---|---|---|
390 | 60 | 82 | Bang Plat | |
520 | 150 | 78 | Phaya Thai | |
750 | 160 | 99 | Wang Thonglang | |
530 | 260 | 74 | Pathum Wan | |
410 | 460 | 151 | Rat Burana | |
520 | 480 | 76 | Phra Pradaeng | |
730 | 460 | 65 | Bang Na | |
1060 | 140 | 255 | ? |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 sys | |
from argparse import ArgumentParser | |
from itertools import combinations | |
from random import seed, shuffle, randrange | |
sumsupto = lambda n: n*(n+1)//2 | |
tco = lambda t: f'\033[01;{31+t[1]}m{t[0]:02}\033[00m' |
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 |
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 | |
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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
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}') |
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(); |