• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
LiaLialu
博客园 | 首页 | 新随笔 | 新文章 | 联系 | 订阅 订阅 | 管理

2016年9月26日

Oracle 电面
摘要: 有回苏州的打算,所以找人内推了苏州的oracle,苏州部分主要是做HCM的,感觉技术含量并不要求很高。 投了简历,然后hr打电话过来简单做一下英语的测试,通知给电面。 电面schedule的时间是2小时,但是实际只用了半个小时多一点,先是面试官问了下现在在做的项目,包括项目总体架构,以及以前遇到过的 阅读全文
posted @ 2016-09-26 20:19 LiaLialu 阅读(144) 评论(0) 推荐(0)
 
 

2016年9月24日

leetcode 198 House Robber
摘要: 暴力搜索: public class Solution { public int search(int idx, int[] nums){ if(idx<0){ return 0; } return Math.max(nums[idx] + search(idx-2, nums), search(i 阅读全文
posted @ 2016-09-24 16:23 LiaLialu 阅读(114) 评论(0) 推荐(0)
 
leetcode 1 Two Sum
摘要: public class Solution { public int[] twoSum(int[] nums, int target) { int n = nums.length; for(int i=0; i<n;i++){ for(int j=i+1; j<n;j++){ if(nums[i] 阅读全文
posted @ 2016-09-24 15:21 LiaLialu 阅读(101) 评论(0) 推荐(0)
 
leetcode 53 Maximum Subarray
摘要: public class Solution { public int maxSubArray(int[] nums) { int res = -1000000; int sum=0; for(int i=0; i<nums.length; i++){ sum += nums[i]; if(sum > 阅读全文
posted @ 2016-09-24 15:19 LiaLialu 阅读(98) 评论(0) 推荐(0)
 
 

公告


博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3