1. Customer insights understanding customers rather than just asking what they want The Empathy Map 2. Ideation Thus, ideation has two main phases: id ...
分类:
其他好文 时间:
2020-02-17 15:38:49
阅读次数:
64
原题链接在这里:https://leetcode.com/problems/two-city-scheduling/ 题目: There are 2N people a company is planning to interview. The cost of flying the i-th per ...
分类:
其他好文 时间:
2020-02-17 13:58:18
阅读次数:
70
Last time, we talk about separate under one cluster backup into two diffetent AG backup. Does it works ? How is it ? Let we it this time: Unfortunatel ...
分类:
数据库 时间:
2020-02-16 17:56:16
阅读次数:
109
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
1 """ 2 Given a matrix consists of 0 and 1, find the distance of the nearest 0 for each cell. 3 The distance between two adjacent cells is 1. 4 Exampl ...
分类:
其他好文 时间:
2020-02-15 11:50:37
阅读次数:
74
病毒扩散仿真程序,用 python 也可以。 概述 事情是这样的,B 站 UP 主 @ele 实验室,写了一个简单的疫情传播仿真程序,告诉大家在家待着的重要性,视频相信大家都看过了,并且 UP 主也放出了源码。 因为是 Java 开发的,所以开始我并没有多加关注。后来看到有人解析代码,发现我也能看懂 ...
分类:
编程语言 时间:
2020-02-14 16:48:57
阅读次数:
393
转自:https://blog.csdn.net/qq_42711381/article/details/90451301 由于刚好也遇到这个问题,记录下来 使用的DataFrame的 当使用 frame2['year']['two'] = 10000, 即df名[列名][行名]的方式去赋值就会报错... ...
分类:
其他好文 时间:
2020-02-14 12:31:36
阅读次数:
75
使用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
1 """ 2 Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. 3 According to the definition of LCA on Wikipedia: ...
分类:
其他好文 时间:
2020-02-13 22:33:56
阅读次数:
67
sorted_set类型 新的存储需求:数据排序有利于数据的有效展示,需要提供一种可以根据自身特征进行排序的方式 需要的存储结构:新的存储模型,可以保存可排序的数据 sorted_set类型:在set的存储结构基础上添加可排序字段 基本操作 添加数据 获取全部数据 删除数据 按条件获取数据 条件删除 ...
分类:
其他好文 时间:
2020-02-13 21:08:03
阅读次数:
84