最新 最热

SPOJ DETER3 Find The Determinant III(行列式求值取模)

题目链接:https://www.spoj.com/problems/DETER3/en/

2019-01-11
0

北大美女教授简短毕业致辞刷屏:是什么同时导致成功和热情?

导读:近日,北京大学汇丰商学院2018毕业典礼隆重举行。教师代表史蛟教授站上讲台,为即将毕业的各位同学送上寄语。

2018-08-16
0

Excel公式发送邮件、打开本文件目录、链接指定位置——HyperLink公式妙用

链接本工作表某位置(F4切换绝对引用$): =HYPERLINK("[" & SUBSTITUTE( CELL("filename",$A$1) ,"[","") & "!" & CELL("address",$A$1) , $A$1)链接当前工作簿另一工作表某位置 =HYPERLINK("[" & SUBSTI......

2018-06-20
1

leetCode刷题(找到两个数组拼接后的中间数)

There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(...

2018-06-14
1

No.004 Median of Two Sorted Arrays

4. Median of Two Sorted ArraysTotal Accepted: 104147Total Submissions: 539044Difficulty: Hard  There are two sorted arrays nums1 and nums2 of size m and n r...

2018-02-27
1

泛型List<T>使用示例

代码来源于"c#高级编程(第4版)",略作修改using System;using System.Collections;using System.Collections.Generic;using System.Text;namespace Wrox.ProCSharp.VectorAsCo...

2018-01-22
0

Leetcode 4 Median of Two Sorted Arrays

There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be ...

2018-01-12
1

Leetcode 53 Maximum Subarray

Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array [-2,1,-3,4,-1,2,1,-5,4],...

2018-01-12
0

Leetcode 129 Sum Root to Leaf Numbers

Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 which repre...

2018-01-12
0

Leetcode 154 Find Minimum in Rotated Sorted Array II

Follow up for "Find Minimum in Rotated Sorted Array": What if duplicates are allowed? Would this a

2018-01-12
1