最新 最热

图书管理系统代码 7GBC  网格组布…

public class GBC extends GridBagConstraints { public GBC(int gridx, int gridy) { this.gridx = gridx; this.gridy = gridy; }

2021-08-27
1

37 Number of Steps to Reduce a Number to Zero

Given a non-negative integer num, return the number of steps to reduce it to zero. If the current number is even, you have to divide it by 2, otherwise, you hav...

2021-08-18
1

23 Robot Return to Origin

There is a robot starting at position (0, 0), the origin, on a 2D plane. Given a sequence of its moves, judge if this robot ends up at (0, 0) after it completes...

2021-08-18
1

细说Java关键字--程序控制

关键字系列旨在服务于入门阶段的读者,帮助读者理解代码中每个关键字的含义及用法,希望对读者有所帮助。

2021-08-17
1

LeetCode 0199 - Binary Tree Right Side View

Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.

2021-08-11
1

LeetCode 0201 - Bitwise AND of Numbers Range

Given a range [m, n] where 0 <= m <= n <= 2147483647, return the bitwise AND of all numbers in this range, inclusive.

2021-08-11
1

LeetCode 0183 - Customers Who Never Order

Suppose that a website contains two tables, the Customers table and the Orders table. Write a SQL query to find all customers who never order anything.

2021-08-11
1

LeetCode 0176 - Second Highest Salary

Write a SQL query to get the second highest salary from the Employee table.

2021-08-11
1

LeetCode 0177 - Nth Highest Salary

Write a SQL query to get the nth highest salary from the Employee table.

2021-08-11
1

LeetCode 0179 - Largest Number

Given a list of non negative integers, arrange them such that they form the largest number.

2021-08-11
1