題目
題目翻譯
給一個連結陣列,交換兩兩相鄰的節點並且回傳。範例: 1->2->3->4, return 2->1->4->...
題目:給定一個二元樹,判斷這個二元樹是否是一個有效的二元搜尋樹(BST, Binary Search Tree)。
一個有效的二元搜尋樹必須滿足以下條件:
節...
Given an integer array nums, return the maximum result of nums[i] XOR nums[j], w...
You are given a string s and a robot that currently holds an empty string t. App...
今天第18題
題目
題目翻譯
給定一陣列和目標值(target),回傳陣列中所有取四數相加為target的可能,且不能包含重複的可能
解題步驟
問題描述:...
On day 1, one person discovers a secret.
You are given an integer delay, which m...