相关题目推荐
35.搜索插入位置(opens new window)
34.在排序数组中查找元素的第一个和最后一个位置(opens new window)
69.x 的平方根(opens new window)
367.有效的完全平方数(opens new window)
#其他语言版本
This commit is contained in:
whai 2023-12-03 11:48:04 +08:00
parent 07abe90335
commit f04d15a4f8
2 changed files with 17 additions and 0 deletions

View File

@ -46,6 +46,14 @@ import org.junit.Test;
* 0 <= nums.length <= 100 * 0 <= nums.length <= 100
* 0 <= nums[i] <= 50 * 0 <= nums[i] <= 50
* 0 <= val <= 100 * 0 <= val <= 100
*
* 相关题目推荐
* 26.删除排序数组中的重复项(opens new window)
* 283.移动零(opens new window)
* 844.比较含退格的字符串(opens new window)
* 977.有序数组的平方(opens new window)
* #其他语言版本
*
*/ */
public class LeetCode27 { public class LeetCode27 {

View File

@ -26,6 +26,15 @@ import org.junit.Test;
你可以假设 nums 中的所有元素是不重复的 你可以假设 nums 中的所有元素是不重复的
n 将在 [1, 10000]之间 n 将在 [1, 10000]之间
nums 的每个元素都将在 [-9999, 9999]之间 nums 的每个元素都将在 [-9999, 9999]之间
相关题目推荐
35.搜索插入位置(opens new window)
34.在排序数组中查找元素的第一个和最后一个位置(opens new window)
69.x 的平方根(opens new window)
367.有效的完全平方数(opens new window)
#其他语言版本
*/ */
public class LeetCode704 { public class LeetCode704 {