自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

转载 从大数据菜鸟走上大师的历程

大数据是用scala语言,和java有些不同又比java强大,省去了很多繁琐的东西,scala中的的接口用trait来定义,不同于java的接口,trait中可以有抽象方法也可以有不抽象方法。scala中的方法中还可以定义方法,这在java中是从来没有的。 大数据未来几年发展的重点方向,大数据战略已经在十八届五中全会上作为重点战略方向,中国在大数据方面才刚刚起步,但是在美国已经产生了上千亿的

2015-12-29 09:43:36 303

原创 Median of Two Sorted Arrays

class Solution:     # @return a float     def findTheNthNum(self, A, B, N):         if len(A)>len(B):             return self.findTheNthNum(B,A,N);                      if len(A)==0:          

2014-08-17 15:07:12 344

原创 Add Two Numbers

题目解释: Add Two Numbers  Total Accepted: 17823 Total Submissions: 78645My Submissions You are given two linked lists representing two non-negative numbers. The digits are stored i

2014-07-26 11:04:06 396

原创 leetcode:Maximum Subarray---python

题目描述: Maximum Subarray  Total Accepted: 19365 Total Submissions: 58198My Submissions Find the contiguous subarray within an array (containing at least one number) which has the larg

2014-07-20 16:05:48 524

原创 leetcode: Spiral Matrix---python

题目解释: Spiral Matrix  Total Accepted: 10384 Total Submissions: 50841My Submissions Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral o

2014-07-20 15:29:40 648

原创 leetcode: Jump Game--python

题目描述: Jump Game   Total Accepted: 14773 Total Submissions: 54655My Submissions   Given an array of non-negative integers, you are initially positioned at the first index of the arr

2014-07-20 15:29:30 636

空空如也

空空如也

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

TA关注的人

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