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 pyperclip | |
dic = [ | |
("A","\U000F1900"), | |
("AKESI","\U000F1901"), | |
("ALA","\U000F1902"), | |
("ALASA","\U000F1903"), | |
("ALE","\U000F1904"), | |
("ANPA","\U000F1905"), | |
("ANTE","\U000F1906"), | |
("ANU","\U000F1907"), |
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 operator,copy | |
from abc import abstractmethod,ABCMeta | |
colors = dict( | |
RED = "red", | |
BLUE = "blue", | |
GREEN = "green", | |
ORANGE = "orange", | |
WHITE = "white", | |
CYAN = "cyan", | |
BROWN = "brown", |
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
#ifndef SCP_CPPP | |
#define SCP_CPPP | |
#include<unordered_map> | |
#include<unordered_set> | |
#include<string_view> | |
#include<type_traits> | |
#include<functional> | |
#include<filesystem> | |
#include<exception> | |
#include<optional> |