- Hack Regular 16 點
- [v] 柔邊處理文字
- 使用粗體
- [v] 閃爍游標
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
爭清塗愁時月修聲,自前干中。 | |
衰丘步二 結況 | |
遮生月醉田,李音不忽君。歸朝不前遠,涼梅遠不留。 | |
庭答德二 項物 長能 |
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
#!/usr/bin/env python3 | |
# 題目: https://imgur.com/a/WvVHKUO | |
import string | |
base = 4 | |
digs = string.digits + string.ascii_letters | |
N = 4 ** 10 |
OlderNewer