编程之路
ithouse
这个作者很懒,什么都没留下…
展开
-
编程容易疲劳怎么办
本文作者Arnold Foster是PsdToHtmlHint的创办者,也是一位自由设计者,同时还是一位拥有数百位忠实客户的动漫设计师。在这篇文章里,它主要是针对有些程序员在编程过程中遇到的一些比较纠结的问题,给出了自己的见解和意见。有些事情我们不得不去面对,就像有的时候你可能会觉得自己不是一个很优秀的程序员,就因为一个简单的程序都会出现很多的bug;或者你认为简单的方法最后竟然无法实现。转载 2014-10-21 11:29:36 · 736 阅读 · 0 评论 -
Valid Parentheses(48.24%)
Given a string containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[’ and ‘]’, determine if the input string is valid.The brackets must close in the correct order, “()” and “()[]{}” are all valid but “转载 2016-06-22 10:02:02 · 345 阅读 · 0 评论 -
输出2的100次方
public class PowerResult { public static void main(String[] args) { List<Integer> result = new ArrayList<Integer>(); result.add(2); // 2的100次方,当然是用2乘99次2啦,难道不是...原创 2018-10-03 15:21:07 · 2521 阅读 · 1 评论