From 0055ceb83c3aad8953a1e524eea07725712233f7 Mon Sep 17 00:00:00 2001 From: youngyangyang04 <826123027@qq.com> Date: Tue, 15 Dec 2020 20:23:56 +0800 Subject: [PATCH] Update --- problems/0035.搜索插入位置.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/problems/0035.搜索插入位置.md b/problems/0035.搜索插入位置.md index 64cb1075..50239d09 100644 --- a/problems/0035.搜索插入位置.md +++ b/problems/0035.搜索插入位置.md @@ -1,11 +1,12 @@ -# 题目地址 -https://leetcode-cn.com/problems/search-insert-position/ +![代码随想录](https://img-blog.csdnimg.cn/20201215202250351.png) > 二分查找法是数组里的常用方法,彻底掌握它是十分必要的。 # 编号35:搜索插入位置 +题目地址:https://leetcode-cn.com/problems/search-insert-position/ + 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。 你可以假设数组中无重复元素。