写点什么

ARTS 打卡 WEEK2

用户头像
编程之心
关注
发布于: 2020 年 05 月 31 日
ARTS 打卡 WEEK2

A


11. 盛最多水的容器


/** * [11. 盛最多水的容器](https://leetcode-cn.com/problems/container-with-most-water/) * 一个非负数组。寻找两个坐标,能构成最大面积水池。 * 输入:[1,8,6,2,5,4,8,3,7]  * 输出:49 * 方法1:双遍历,x从0开始,y从x+1开始,求面积 (y - x) * height_diff。O(n^2^) * 方法2:两边夹逼,取高度低的那个往里挪。O(n) */class Solution {    public int maxArea(int[] a) {        int max = 0;        for (int i = 0, j = a.length - 1; i < j; ) {            int minH = a[i] < a[j] ? a[i++] : a[j--];            max = Math.max(max, (j - i + 1) * minH);        }        return max;    }}
复制代码


R


https://frenxi.com/http-headers-you-dont-expect/


最酷的互联网公司现在把招聘信息放在了 HTTP 请求头 x-recruiting 里面


T


《数据结构与算法之美》笔记



S


新版 IntelliJ IDEA 的更新


https://blog.csdn.net/weixin_43413658/article/details/105839472


微信定时提醒应用(微定时)


https://blog.betacat.io/post/how-wecron-schedules/


LeetCode 前 300 题


https://leetcode.wang/


发布于: 2020 年 05 月 31 日阅读数: 90
用户头像

编程之心

关注

还未添加个人签名 2018.05.03 加入

还未添加个人简介

评论

发布
暂无评论
ARTS 打卡 WEEK2