/
githubmirror
/
LeetCodeAnimation
Обзор
Документация
Войти
/
githubmirror
/
LeetCodeAnimation
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
problems/0035-search-insert-position/Code/1.java
11 строк
228 B
吴至波
docs: organize assets and add animation previews
10 июн 2026, 10:57
10 июн 2026, 10:57
3711846
Код
Авторство
О чём код?
class Solution1 { public int searchInsert(int[] nums, int target) { int i=0; for(;i<nums.length;i++){ if (nums[i]>=target){ break; } } return i; } }