This file contains hidden or 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 ll long long | |
using namespace std; | |
bool isEmpty(char c) | |
{ | |
return c == ' ' or c == '\n' or c == '\t'; | |
} | |
string inv(string c) |
This file contains hidden or 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
{ | |
"^r": { | |
"prefix": "^r", | |
"body": [ | |
"ʳ" | |
], | |
"description": "^r" | |
}, | |
"^l": { | |
"prefix": "^l", |
This file contains hidden or 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 functools import reduce | |
from typing import List, Tuple | |
import operator | |
class SchemeList: | |
next = None | |
def __init__(self, value): | |
self.value = value |
NewerOlder