http
学过网络模型的都知道,HTTP 协议是 Hyper Text Transfer Protocol(超文本传输协议)的缩写,http是基于tcp协议传输数据的,而tcp是一种数据流传输协议。那么我们发送的数据,就会以明文的方式传输
http…
34. Find First and Last Position of Element in Sorted Array
题意:找到非递减序列中目标的开头和结尾
我的思路
用二分法把每一个数字都找到,最后返回首尾两个数
代码 Runtime12 ms Beats 33.23% Memory14 MB Beats 5.16%
class Solution {…