1、题目 Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. In Pascal's triangle, each number is the sum of the two nu ...
分类:
其他好文 时间:
2020-03-01 23:19:06
阅读次数:
67
题目 This is a problem given in the Graduate Entrance Exam in 2018: Which of the following is NOT a topological order obtained from the given directed g ...
分类:
编程语言 时间:
2020-03-01 20:12:25
阅读次数:
90
Array LeetCode Given an integer array of size n, find all elements that appear more than ? n/3 ? times. The algorithm should run in linear time and i.... ...
分类:
其他好文 时间:
2020-03-01 14:18:51
阅读次数:
71
Feb 24, 2020 ~ Mar 1, 2020 Algorithm Problem 371. Sum of Two Integers(两整数之和) "题目链接" 题目描述:给定两个数字,求两个数字之和。不能使用加法运算 思路为:不能使用加法运算,那么可以考虑使用位运算来实现加法。先观察只有一位 ...
分类:
其他好文 时间:
2020-03-01 12:45:50
阅读次数:
63
In a given grid, each cell can have one of three values: the value 0 representing an empty cell; the value 1 representing a fresh orange; the value 2 ...
分类:
其他好文 时间:
2020-03-01 12:42:36
阅读次数:
56
import java.util.Arrays /** * 252. Meeting Rooms * (Locked by Leetcode) * https://www.lintcode.com/problem/meeting-rooms/description * Given an array ...
分类:
其他好文 时间:
2020-03-01 00:30:35
阅读次数:
60
108. Convert Sorted Array to Binary Search Given an array where elements are sorted in ascending order, convert it to a height balanced BST. For this ...
分类:
编程语言 时间:
2020-02-29 22:03:51
阅读次数:
78
ShardingTaskExecutorPoolMaxSize 1 Maximum number of outbound connections each TaskExecutor connection pool can open to any given mongod instance. 2 Th ...
分类:
其他好文 时间:
2020-02-29 20:11:47
阅读次数:
80
原题链接在这里:https://leetcode.com/problems/confusing-number/ 题目: Given a number N, return true if and only if it is a confusing number, which satisfies the ...
分类:
其他好文 时间:
2020-02-29 13:10:38
阅读次数:
42
114 Flatten Binary Tree to Linked List Given a binary tree, flatten it to a linked list in place. 将二叉树展开成链表 [![]D:\dataStructure\Leetcode\114.png] (D: ...
分类:
编程语言 时间:
2020-02-29 12:58:17
阅读次数:
60