摘要:
def quick_sort(array, left, right): if left >= right: return low = left high = right key = array[low] while left < right: while left < right and array 阅读全文
摘要:
def hans_count(str): hans_total = 0 for s in str: # 基本汉字 if '\u4e00' <= s <= '\u9fef': hans_total += 1 # 基本汉字补充 if '\u9FA6' <= s <= '\u9FFF': hans_tot 阅读全文
摘要:
错误描述: 不知道因为什么原因,tmux挂掉了。 显示“failed to connect to server”消息 尝试使用tmux ls 获取当前正在运行的会话列表时。报错 failed to connect to server: Connection refused 使用tmux时,无法重新连 阅读全文