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
#include <bits/stdc++.h> | |
#define fast ios_base::sync_with_stdio(0); | |
#define io \ | |
cin.tie(0); \ | |
cout.tie(0) | |
#define endl '\n' | |
#define pb push_back | |
using namespace std; |
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
from libqtile import bar, layout, widget | |
from libqtile.config import Click, Drag, Group, Key, Match, Screen | |
from libqtile.lazy import lazy | |
from libqtile.utils import guess_terminal | |
mod = "mod4" | |
terminal = guess_terminal() | |
keys = [ | |
# A list of available commands that can be bound to keys can be found |
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 | |
# A simple bash script to compile and execute cpp files during contests | |
usage="[USAGE]: runcpp [file] -- compile and execute file with input from input.txt | |
[OR]: runcpp clean -- delete input.txt and a.out if they exist | |
[OR]: runcpp -h | --help -- print this help mesaage and exit" | |
if [ ! $# -eq 1 ]; then | |
echo "Invalid usage! \n" |