原创 8.13筆記

230. 二叉搜索樹中第K小的元素 class Solution(object): def kthSmallest(self, root, k): """ :type root: TreeNode

原创 8.15筆記

61. 旋轉鏈表 class Solution(object): def rotateRight(self, head, k): """ :type head: ListNode