Given a non-empty string containing an out-of-order English representation of digits 0-9, output the digits in ascending order. Note: Example 1: Examp ...
分类:
其他好文 时间:
2016-11-17 13:53:17
阅读次数:
366
题目: Add Two Numbers 题目描述: You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of the ...
分类:
其他好文 时间:
2016-11-15 23:19:42
阅读次数:
269
Problem: Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, the process ...
分类:
其他好文 时间:
2016-11-10 07:39:17
阅读次数:
306
最近做的题记录下。 258. Add Digits Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num ...
分类:
其他好文 时间:
2016-11-06 13:54:12
阅读次数:
283
题意:在一个平面上,给定一个由 n 个点(4 <= n <= 300)组成的一封闭笔画图形(第一个端点与第 n 个端点重合),求这个图形将平面分成几个部分。 需要用到欧拉定理; 欧拉定理:设图的顶点数为 v ,边数(三维中为棱的个数)为 e ,面数为 f ,则v + f - e = 2. 则若求面数 ...
分类:
其他好文 时间:
2016-11-06 13:50:43
阅读次数:
250
参考网上的很多网站,以这篇为主:http://blog.csdn.net/yhl_leo/article/details/50961542 这篇算是自己对caffe学习的一个总结系列的开头。首先因为caffe的依赖项比较多,配置起来也比较麻烦。这篇算是比较详尽地把caffe的各种相关配置说清楚。转载 ...
分类:
系统相关 时间:
2016-11-04 23:36:15
阅读次数:
233
Problem Description For a number,if the length of continuous odd digits is even and the length of continuous even digits is odd,we call it odd-even nu ...
分类:
其他好文 时间:
2016-11-03 14:19:28
阅读次数:
225
Given a non-empty string containing an out-of-order English representation of digits 0-9, output the digits in ascending order. Note: Example 1: Examp ...
分类:
其他好文 时间:
2016-11-03 14:07:19
阅读次数:
209
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, the process is like: ...
分类:
其他好文 时间:
2016-11-02 23:24:56
阅读次数:
185
Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 ...
分类:
编程语言 时间:
2016-10-27 00:27:06
阅读次数:
194