Recall:
Then,
$$$$/* | |
* Custom CSS for Feign running with OBS/Discord Streaming Kit. | |
* | |
* Recommended browser size: w2600 x h400 | |
* | |
* Modified based on: | |
* - https://piyonyuxu.fanbox.cc/posts/4943228 | |
* - https://obs-discord-picture.alfebelow.com/ | |
* - https://koumi-hashiba.fanbox.cc/posts/7790890 | |
*/ |
/* | |
* Custom horizontal layout CSS running with OBS/Discord Streaming Kit. | |
* | |
* Recommended browser size: w2600 x h400 | |
*/ | |
[class*="Voice_voiceStates__"] { | |
display: flex; | |
flex-wrap: nowrap; | |
margin: 32px 2px 2px 2px; |
REPO
with the path to your local clone of the GitHub repository.REPO
contains the problems
directory.docker pull problemtools/icpc
#!/usr/bin/env python | |
import sys | |
import fileinput | |
import re | |
diff = -8 | |
def repl(matched): | |
h = int(matched.group(1)) + diff |
static inline int encode_distance(int start, int distance) { return ((start + 1) << 4) + distance; } | |
static inline int decode_distance(int x) { return x & ((1 << 4) - 1); } | |
static inline int node_visited(int x, int v) { return (x >> 4) == v + 1; } | |
template <typename Graph> | |
static void extend_closed_neighborhood(Graph const& G, Graph& H, int v, int radius, int buffer[]) { | |
assert(0 <= v && v < G.number_of_nodes()); | |
assert(radius >= 0); |
#!/bin/bash | |
TIMEOUT=timeout | |
run_with_timeout() { | |
oldopt=$- | |
set +e | |
$TIMEOUT $@ | |
ret=$? | |
if [[ $ret -eq 124 ]]; then |