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 setproctitle | |
setproctitle.setproctitle("qutebrowser") | |
# Bindings | |
config.bind("gi", "hint inputs") | |
config.bind("<f12>", "inspector") | |
config.unbind("+") | |
config.unbind("-") | |
config.unbind("=") |
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 | |
import numpy as np | |
KEYPADS = [ | |
np.array([ | |
["1", "2", "3"], | |
["4", "5", "6"], | |
["7", "8", "9"], |
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 | |
steps = next(sys.stdin).split(", ") | |
x = 0 | |
y = 0 | |
for step in steps: |
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 | |
import numpy as np | |
data = np.loadtxt(sys.stdin).T.reshape(-1, 3).T | |
data.sort(axis=0) | |
print(np.sum(sum(data[:2]) > data[2])) |
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
#!/bin/sh | |
set -e | |
TRACK_ID="$1" | |
CLIENT_ID="..." | |
CLIENT_SECRET="..." | |
REFRESH_TOKEN="..." | |
ACCESS_TOKEN=$( |
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 itertools | |
import sys | |
lines = (x.split(" ")[::2] for x in sys.stdin.readlines()) | |
routes = {frozenset(x[:2]): int(x[2]) for x in lines} | |
places = set.union(*(set(x) for x in routes.keys())) | |
path_len = lambda path: sum(routes[frozenset(x)] for x in zip(path, path[1:])) | |
lengths = [path_len(x) for x in itertools.permutations(places)] |
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 functools | |
import sys | |
OPERATORS = { | |
None: lambda arg: arg(0), | |
"NOT": lambda arg: ~arg(1), | |
"AND": lambda arg: arg(0) & arg(2), | |
"OR": lambda arg: arg(0) | arg(2), |
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 | |
MOVES = { | |
">": ( 1, 0), | |
"<": (-1, 0), | |
"^": ( 0, 1), | |
"v": ( 0, -1), | |
} |
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 collections | |
print("Syötä viestin tekstirivejä. Lopeta syöttämällä tyhjä rivi.") | |
teksti = "" | |
while True: | |
syöte = input() |
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 | |
class Kartta: | |
def __init__(self, koko, auto): | |
self.koko = koko | |
self.auto = auto | |
def tulosta(self): | |
for rivinumero in reversed(range(1, self.koko + 1)): | |
print(self._rivi(rivinumero)) |
NewerOlder