自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

我的博客

主人很懒没有写博客描述

  • 博客(8)
  • 收藏
  • 关注

原创 code hunt 题解八(java版)

07.01public class Program { public static String Puzzle(String one, String two, String three) { return two+three+one+one+three+two; }}07.02public class Program { publi

2015-06-26 10:47:50 534

原创 code hunt 题解七(java版)

06.01  。。。public class Program { public static Boolean Puzzle(String s) { return false; }}06.02  这一个没有三星,我试了很多种姿势都没有。。。有人三星的话求告知public class Program { public static String P

2015-05-16 12:19:05 531

原创 code hunt 题解六(java版)

转载请注明来自http://blog.csdn.net/wunaiyunaiwu05.01  多测几组数值就能看出规律了public class Program { public static String Puzzle(String s) { int len = s.length(); return len>14?"super long":(len

2015-05-14 20:13:13 561

原创 code hunt 题解五(java 版)

04.01public class Program { public static Boolean Puzzle(Boolean x, Boolean y) { return x|y; }}04.02  这题传进去的参数不只有布尔值。。。public class Program { public static Boolean Puzzle(Bo

2015-05-13 23:40:53 536

原创 code hunt 题解四(java 版)

03.01 这个貌似要写成递归才会有3星public class Program { public static int Puzzle(int number, int power) { return power<=0 ? 1 : number*Puzzle(number, power-1); }}03.02public class Program

2015-05-10 11:41:16 771

原创 code hunt 题解三 (java版)

02.01public class Program { public static int[] Puzzle(int n) { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = i; } return res; }

2015-05-09 09:38:32 664

原创 code hunt 题解二(java版)

01.06 这个有点难度public class Program { public static int Puzzle(int x) { return 4/x; }}01.07 public class Program { public static int Puzzle(int x, int y) { return x-y;

2015-05-08 19:23:32 584

原创 code hunt 题解一 (java 版)

终于把codehunt其中一个zone上的题做完了,是时候来一发了先来几道水题:)00.02public class Program {    public static int Puzzle(int x) {        return x+1;    }}00.03public class Program {    publi

2015-05-07 21:18:07 1831

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除