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
用了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
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
1 利用数组进行数据处理 numpy数组可以将许多种数据处理任务表述为简洁的数组表达式,用数组表达式替换循环的做法,通常被称为矢量化。 例如:我们想要处理一组值(网格型)上计算函数sqrt(x^2 + y^2)。np.meshgrid函数接受两个一维数组,并产生两个二维矩阵(对应于两个数组中所有的( ...
分类:
编程语言 时间:
2020-02-01 16:34:23
阅读次数:
81
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
返回一个数组排序后的索引经常在项目中用到,所以这里总结一下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
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
1.6、zset sorted set,有序集合 元素为string类型 元素具有唯一性,不重复 每个元素都会关联一个double类型的score,表示权重,通过权重将元素从小到大排序 元素的score可以相同 命令 设置 添加 ZADD key score member [score member ...
分类:
其他好文 时间:
2020-01-30 09:40:27
阅读次数:
59
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
| 分类 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