KATO-Hiro / Somen-Soupy

Python3 implementation of competitive programming library inspired by spaghetti-source/algorithm
Creative Commons Zero v1.0 Universal
1 stars 1 forks source link

文字列の変換 #330

Open KATO-Hiro opened 1 year ago

KATO-Hiro commented 1 year ago
# See:
# https://docs.python.org/ja/3/library/stdtypes.html#str.maketrans
table = str.maketrans(strings_before, strings_after)
results = text.translate(table)