码迷,mamicode.com
首页 >  
搜索关键字:sorted    ( 5925个结果
LeetCode Solution-82
82. Remove Duplicates from Sorted List II Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from ...
分类:其他好文   时间:2020-02-02 12:06:41    阅读次数:68
[leetcode]Maximum Product of Word Lengths
用了python的set。为了效率,先做了预处理,并排序了。要注意,排序完才好预处理,否则i,j会对不上。 class Solution: def maxProduct(self, words: List[str]) -> int: maxProd = 0 words = sorted(words, ...
分类:其他好文   时间:2020-02-01 21:34:23    阅读次数:75
leedCode练题——21. Merge Two Sorted Lists(照搬大神做法)
1、题目 21. Merge Two Sorted Lists Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes ...
分类:其他好文   时间:2020-02-01 19:06:49    阅读次数:102
numpy基础--利用数组进行数据处理
1 利用数组进行数据处理 numpy数组可以将许多种数据处理任务表述为简洁的数组表达式,用数组表达式替换循环的做法,通常被称为矢量化。 例如:我们想要处理一组值(网格型)上计算函数sqrt(x^2 + y^2)。np.meshgrid函数接受两个一维数组,并产生两个二维矩阵(对应于两个数组中所有的( ...
分类:编程语言   时间:2020-02-01 16:34:23    阅读次数:81
LeetCode 167. Two Sum II - Input array is sorted
167. Two Sum II Input array is sorted(两数之和 II 输入有序数组) 链接 https://leetcode cn.com/problems/two sum ii input array is sorted 题目 给定一个已按照升序排列?的有序数组,找到两个数使 ...
分类:其他好文   时间:2020-01-31 14:06:24    阅读次数:72
数组排序返回索引-python和c++的实现
返回一个数组排序后的索引经常在项目中用到,所以这里总结一下c++和python两种语言的实现。 Python #!/usr/local/bin/python3 a=[2,3,4,5,63,4,32,3] # ascending #sorted sorted_indx = [idx for idx,v ...
分类:编程语言   时间:2020-01-31 12:46:23    阅读次数:145
记一次百度OCR的使用
title: 记一次百度OCR的使用 copyright: true tags: python abbrlink: 8d4a5af0 date: 2018 11 12 11:04:27 恰巧用到了OCR批量识别,鉴于准确度没有使用在本地训练的TensorFlow OCR,而是选择了百度OCR,可选的 ...
分类:其他好文   时间:2020-01-30 17:03:10    阅读次数:88
Redis 1.6、zset
1.6、zset sorted set,有序集合 元素为string类型 元素具有唯一性,不重复 每个元素都会关联一个double类型的score,表示权重,通过权重将元素从小到大排序 元素的score可以相同 命令 设置 添加 ZADD key score member [score member ...
分类:其他好文   时间:2020-01-30 09:40:27    阅读次数:59
[Algorithm] 88. Merge Sorted Array
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements initialized in nums1 and num ...
分类:其他好文   时间:2020-01-30 09:33:10    阅读次数:72
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
5925条   上一页 1 ... 32 33 34 35 36 ... 593 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!