python:实现使用分而治之找到单峰列表的峰值算法 from __future__ import annotations def peak(lst: list[int]) -> int: # middle index m =