We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1843cb1 commit 9b0a0c5Copy full SHA for 9b0a0c5
src/main/java/array/lower_bound_upper_bound/FirstLastPosition.java
@@ -22,8 +22,8 @@ public class FirstLastPosition {
22
* @param nums A non-decreasingly sorted array of integers.
23
* @param target The value to search for.
24
* @return An array of two integers {@code [start, end]} representing the
25
- * first and last indices of the target. If the target is not found,
26
- * it returns {@code [-1, -1]}.
+ * first and last indices of the target. If the target is not found,
+ * it returns {@code [-1, -1]}.
27
*/
28
public int[] searchRange(int[] nums, int target) {
29
if (nums == null || nums.length == 0) {
0 commit comments