摘要:
题目说明 Given a binary tree, flatten it to a linked list in place. For example, Given 1 / \ 2 5 / \ \ 3 4 6 The flattened tree should look like: 1 \ 2 \ 阅读全文
摘要:
题目说明 Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. For example, given the followi 阅读全文