最新 最热

【每天一道编程系列-2018.2.26】(Ans)

Determine whether an integer is a palindrome. Do this without extra space.

2019-03-14
1

【每天一道编程系列-2018.3.2】(Ans)

Given a roman numeral, convert it to an integer.   Input is guaranteed to be within the range from 1 to 3999.

2019-03-14
1

关于常用的java工具类

一、PriorityQueue和QueuePriorityQueue<Integer> heap = newPriorityQueue<>(newmyCom()); Queue<Integer> queue = newLinkedList<>();class myCom implements Comparator...

2019-03-07
0

EXCEL快速合并相同值

Option Explicit Private srow As Integer Sub T() Application.ScreenUpdating = False Application.DisplayAlerts = False Dim i As Integer, lcol A...

2019-02-27
1

LightOJ 1118--Incredible Molecules(两圆相交)

1118 - Incredible Molecules PDF (English) Statistics Forum Time Limit: 0.5 second(s) Memory Limit: 32 MB In the biological lab, you were examining some o...

2019-02-20
1

LeetCode13 Roman to Integer

Given a roman numeral, convert it to an integer.

2019-02-19
1

使用R完成K近邻分类

使用数据集iris, 验证Petal.Length, Petal.Width两个特征的分类能力。代码如下:

2019-02-13
1

leetcode 172 Factorial Trailing Zeroes

Given an integer n, return the number of trailing zeroes in n!.

2019-01-18
0

每日一题(1)

如果不主动,除了时间,你什么都改变不了为了提供更大价值,将推出<每日一题>系列,未发表原创文章时将发表一期<每日一题>,在下一期公布答案及解析<每日一题>主要以陷阱题为主,容易出错的题目,比较考基础。最近在巩固基...

2019-01-17
0

[LeetCode]Reverse Integer题解[LeetCode]Reverse Integer题解

要点 本题考查的是整数相加的溢出处理,检查溢出有这么几种办法: – 两个正数数相加得到负数,或者两个负数相加得到正数,但某些编译器溢出或优化的方式不一样 – 对于正数,如果最大整数减去一个数小于另一个数,或者对于负数,...

2018-09-04
1