- 博客(2)
- 收藏
- 关注
原创 184. Department Highest Salary - SQL
Description: The Employee table holds all employees. Every employee has an Id, a salary, and there is also a column for the department Id. The Department table holds all departments of the company. Write a SQL query to find employees who have the highest
2020-07-23 17:18:39
135
原创 118. Pascal‘s Triangle - Python
Description: Given a non-negative integer numRows, generate the first numRows of Pascal’s triangle. Code: class Solution: def generate(self, numRows: int) -> List[List[int]]: res=[] for i in range(0,numRows): temp =
2020-07-23 16:55:38
160
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人