Skip to content

Commit 457b738

Browse files
refactor 35
1 parent 9748746 commit 457b738

File tree

1 file changed

+0
-16
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-16
lines changed

src/main/java/com/fishercoder/solutions/_35.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 35. Search Insert Position
5-
*
6-
* Given a sorted array and a target value,
7-
* return the index if the target is found.
8-
* If not, return the index where it would be if it were inserted in order.
9-
10-
You may assume no duplicates in the array.
11-
12-
Here are few examples.
13-
[1,3,5,6], 5 → 2
14-
[1,3,5,6], 2 → 1
15-
[1,3,5,6], 7 → 4
16-
[1,3,5,6], 0 → 0
17-
*/
18-
193
public class _35 {
204

215
public static class Solution1 {

0 commit comments

Comments
 (0)