Longest Substring Without Repeating Characters 问题描述Given a string, find the length of the longest substring without repeating characters. 2018-10-07 算法 #算法 #python
Add Two Numbers 问题描述You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and retu 2018-10-06 算法 #算法 #python
Two Sum 问题描述Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may not use the sam 2018-10-05 算法 #算法 #python
使用pyecharts绘制关系图 首先介绍下什么是pyecharts, 它是使用Echarts来生成图表的一个python库,我们知道Echarts是百度的一个开源数据可视化javascript库,提供了大量的图表样例,功能十分强大,用起来很方便。今天我们就用pyecharts来绘制一个关系图。 2018-10-04 经验技巧 #python #可视化
加一 要求:给定一个非负整数组成的非空数组,在该数的基础上加一,返回一个新的数组。最高位数字存放在数组的首位, 数组中每个元素只存储一个数字。你可以假设除了整数 0 之外,这个整数不会以零开头。 2018-07-19 算法 #python #数组
只出现一次的数字 要求:给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。(算法应该具有线性时间复杂度) 2018-07-17 算法 #python #数组
存在重复 要求:给定一个整数数组,判断是否存在重复元素。如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。 2018-07-17 算法 #python #数组
买卖股票的最佳时机Ⅱ 要求:给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。设计一个算法来计算你所能获取的最大利润。你可以尽可能地完成更多的交易(多次买卖一支股票)。注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。 2018-07-17 算法 #python #数组