2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 761
這道題目要求我們反轉一棵二元樹,將它的左子樹和右子樹互換。這個操作類似於將樹沿著垂直軸左右鏡像翻轉。 題目:給定一棵二元樹的根節點 root,將該二元樹反轉,並...
Given a positive integer n, you can apply one of the following operations: If n...
You are given a 0-indexed integer array nums. For each index i (1 <= i <=...
題目 題目翻譯 將 k 個已經排好順序的 linked list 合併成為一個排好序的 list 解題步驟 初始化最小堆(優先隊列): 優先隊列可以幫助...
Problem : You are given an n x n 2D matrix representing an image, rotate the ima...
今天來寫第15題 題目 題目翻譯 給一包含n個整數的陣列nums,有任意三個元素a, b, c能夠使a + b + c = 0 成立嗎?找到所有陣列中的三個數...