码迷,mamicode.com
首页 >  
搜索关键字:most    ( 3834个结果
Performance Profiling Zeebe
转自:https://zeebe.io/blog/2019/12/zeebe-performance-profiling/ by Josh Wulf and Klaus Nji on Dec 22 2019 in BenchmarksPerformance. We frequently get qu ...
分类:其他好文   时间:2020-02-01 21:41:08    阅读次数:82
[leetcode]Longest Substring with At Most K Distinct Characters
Python3,双指针,注意K为0的情况。 class Solution: def lengthOfLongestSubstringKDistinct(self, s: str, k: int) -> int: if k == 0: return 0 charMap = {} result = 0 ...
分类:其他好文   时间:2020-01-31 15:49:02    阅读次数:57
Leetcode总结帖【11-20】
11. Container with Most Water 使用双指针i和j,分别指向数组的两端。每次最大值是res = max(res, (j - i) * min(height[j], height[i]))。每次根据比较height[i]和height[j]的大小来更新i和j。 只有下一个he ...
分类:其他好文   时间:2020-01-31 01:04:57    阅读次数:92
Alpine makes Python Docker builds 50× slower, and images 2× larger
转自:https://pythonspeed.com/articles/alpine-docker-python by Itamar Turner-TrauringLast updated 29 Jan 2020, originally created 29 Jan 2020 When you’re ...
分类:编程语言   时间:2020-01-30 12:49:18    阅读次数:94
SpringBoot对SpringMVC的支持
7.1.1. Spring MVC Auto-configuration Spring Boot provides auto-configuration for Spring MVC that works well with most applications. The auto-configura ...
分类:编程语言   时间:2020-01-30 12:47:35    阅读次数:129
Docker packaging guide for Python
以下是一些关于python 集成docker 的文章,很不错 The basics Broken by default: why you should avoid most Dockerfile examplesMost Dockerfile examples you’ll find on the ...
分类:编程语言   时间:2020-01-30 12:46:48    阅读次数:79
消息队列如何处理重复消息
一、消息重复现象 在 MQTT 协议中,给出了三种传递消息时能够提供的服务质量标准: At most once:最多一次,这种情况会丢失部分数据,一般日志收集这种对数据不严格的可以使用 At least once:最少一次,这种会导致一条消息重复发送 Exactly once:正好一次,一条消息只会 ...
分类:其他好文   时间:2020-01-30 09:14:17    阅读次数:500
80 remove duplicates from sorted array 2
| 分类 leetcode | Follow up for "Remove Duplicates":What if duplicates are allowed at most twice?For example,Given sorted array nums = [1,1,1,2,2,3],You... ...
分类:其他好文   时间:2020-01-29 12:53:10    阅读次数:91
66 plus one
| 分类 leetcode | Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most signifi... ...
分类:其他好文   时间:2020-01-29 12:44:58    阅读次数:82
刷题11. Container With Most Water
一、题目说明 11.Container With Most Water,这个题目难度是 Medium 。 二、我的做法 乍一看,简单啊,两个for循环就可以了,我在本地写的。 真是亮瞎我的钛合金狗眼啊。醉了! ...
分类:其他好文   时间:2020-01-28 09:18:29    阅读次数:339
3834条   上一页 1 ... 23 24 25 26 27 ... 384 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!