You are given two integers xx and yy (it is guaranteed that x>yx>y). You may choose any prime integer pp and subtract it any number of times from xx. ...
分类:
其他好文 时间:
2019-10-10 22:31:13
阅读次数:
185
Problem Description Given two sequences of numbers : a[1], a[2], ...... , a[N], and b[1], b[2], ...... , b[M] (1 <= M <= 10000, 1 <= N <= 1000000). Yo ...
分类:
其他好文 时间:
2019-10-10 20:26:06
阅读次数:
72
1、全局作用域函数嵌套 程序执行,按照从下往下的顺序,把变量、函数名加入到命名空间,如果还未加入到命名空间,就调用了函数,将会报错。 如上程序,如果把three_max的调用,交换到two_max的前面,将会报错:NameError: name 'two_max' is not defined 2、 ...
分类:
编程语言 时间:
2019-10-10 15:31:55
阅读次数:
95
Easy Given a non-empty, singly linked list with head node head, return a middle node of linked list. If there are two middle nodes, return the second ...
分类:
其他好文 时间:
2019-10-10 10:29:24
阅读次数:
70
Python对接支付宝支付自实现 python coding: utf 8 import base64 import json import urllib.parse from datetime import datetime import requests from cryptography.ha ...
分类:
编程语言 时间:
2019-10-09 19:39:01
阅读次数:
101
一、Redis 介绍 1、Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。 2、它支持多种类型的数据结构,如: 字符串(strings), 散列(hashes), 列表(lists), 集合(sets), 有序集合(sorted sets) 与范 ...
分类:
其他好文 时间:
2019-10-09 19:00:46
阅读次数:
89
题目描述: 中文: 给定一个排序链表,删除所有重复的元素,使得每个元素只出现一次。 示例 1: 输入: 1->1->2输出: 1->2 示例 2: 输入: 1->1->2->3->3输出: 1->2->3 英文: Given a sorted linked list, delete all dupl ...
分类:
编程语言 时间:
2019-10-08 21:55:25
阅读次数:
86
Difficulty:easy More:【目录】LeetCode Java实现 Description https://leetcode.com/problems/remove-duplicates-from-sorted-array/ Given a sorted array nums, rem ...
分类:
其他好文 时间:
2019-10-08 16:13:29
阅读次数:
97
"CF660C" / reference: translation: n个长度的01串,可以改变k个0到1,求最长连续1的长度 n即是求最长只包含k个0的01串长度 solution: 1.O(n^3)枚举左右端点,判断其间0的个数是否k 时移动左端点到0的个数 using namespace st ...
分类:
其他好文 时间:
2019-10-08 12:22:33
阅读次数:
74
A.Median 这题的数据生成方式并没有什么规律,所以可以认为是随机数据。 维护一个桶,表示当前K长区间里的值域情况。 并且用变量记录中位数值域上的左侧有多少个数,当区间调整时一并调整桶和这个变量即可。 由于是随机数据,所以每次的调整幅度并不会很大,近似于常数。 复杂度$O(n)$。 B.Game ...
分类:
其他好文 时间:
2019-10-08 09:46:39
阅读次数:
110