LeetCode 0034. Find First and Last Position of Element in Sorted Array在排序数组中查找元素的第一个和最后一个位置【Medium】【Python】【二分】 Problem "LeetCode" Given an array of i ...
分类:
编程语言 时间:
2020-02-23 09:45:30
阅读次数:
68
data_dic = {'20190105': [{'name':'bbb','value': '222'}, {'name':'aaa', 'value': '111'}], '20190101': [{'name':'bbb','value': '333'}, {'name':'aaa', 'v ...
分类:
编程语言 时间:
2020-02-21 14:42:23
阅读次数:
108
注:本文仅列举了几个常用的内置函数,更多内置函数请参考官方文档:。 filter 函数原型: filter(function, iterable) 示例:过滤掉偶数,只保留基数,代码如下: foo = [1, 2, 3, 4, 5] bar = filter(lambda x: True if x% ...
分类:
编程语言 时间:
2020-02-21 09:57:48
阅读次数:
69
1 memcached介绍 Memcached是一个自由开源的,高性能,分布式内存对象缓存系统。 Memcached是以LiveJournal旗下Danga Interactive公司的Brad Fitzpatric为首开发的一款软件。现在已成为mixi、hatena、Facebook、Vox、Li ...
分类:
系统相关 时间:
2020-02-18 15:08:49
阅读次数:
97
Given a m * n matrix grid which is sorted in non-increasing order both row-wise and column-wise. Return the number of negative numbers in grid. Exampl ...
分类:
其他好文 时间:
2020-02-18 13:04:04
阅读次数:
75
五大数据类型 String(字符串) Hash(哈希) List(列表) Set(集合) zset(sorted set:有序集合) ...
分类:
编程语言 时间:
2020-02-18 12:53:32
阅读次数:
71
原题链接在这里:https://leetcode.com/problems/elimination-game/ 题目: There is a list of sorted integers from 1 to n. Starting from left to right, remove the fi ...
分类:
其他好文 时间:
2020-02-18 09:56:29
阅读次数:
79
1. 原题链接:https://leetcode.com/problems/remove duplicates from sorted list/ 2. 解题思路 1. 删除链表节点会涉及到两个指针:prev指针和cur指针 3. 算法 1. prev指针和cur指针分别指向前两个节点 2. 从cu ...
分类:
其他好文 时间:
2020-02-15 15:24:21
阅读次数:
78
病毒扩散仿真程序,用 python 也可以。 概述 事情是这样的,B 站 UP 主 @ele 实验室,写了一个简单的疫情传播仿真程序,告诉大家在家待着的重要性,视频相信大家都看过了,并且 UP 主也放出了源码。 因为是 Java 开发的,所以开始我并没有多加关注。后来看到有人解析代码,发现我也能看懂 ...
分类:
编程语言 时间:
2020-02-14 16:48:57
阅读次数:
393
使用python的sorted函数,该函数默认从小到大排序。 1.对列表中元素排序 ①列表中为普通元素 a = [5,2,9,8,6] a = sorted(a) print(a) 倒序排序为从大到小排序,使用reverse=True a = [5,2,9,8,6] a = sorted(a,rev ...
分类:
编程语言 时间:
2020-02-14 10:37:00
阅读次数:
93