自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 [leetcode] 13. Roman to Integer[facebook](11)

Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 我的做法: 首先要知道罗马数字表示法:I(代表1)、V(代表5)、X(代表10)、L(代表50)、C代表100)、D(代表500)、M(代表1,000)

2017-12-14 09:21:35 140

原创 [leetcode]88. Merge Sorted Array[facebook](10)

Reverse a singly linked list. Hint: A linked list can be reversed either iteratively or recursively. Could you implement both? 我的做法: 我不会链表at all,so to save time,直接看的答案。 solution: 先说iterative

2017-12-14 09:03:29 193

原创 [leetcode]88. Merge Sorted Array[facebook](9)

Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold addit

2017-12-11 12:55:25 161

原创 [leetcode]125. Valid Palindrome[facebook]

Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example, "A man, a plan, a canal: Panama" is a palindrome. "race a car" is not a

2017-12-11 12:54:04 152

原创 [leetcode]543. Diameter of Binary Tree[facebook]

Given a binary tree, you need to compute the length of the diameter of the tree. The diameter of a binary tree is the length of the longest path between any two nodes in a tree. This path may or may n

2017-12-11 12:07:37 133

原创 [leetcode]257. Binary Tree Paths[facebook](todo)

Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: 1 / \ 2 3 \ 5 All root-to-leaf paths are: ["1->2->5", "1->3"] 我的做

2017-12-11 11:37:33 133

原创 [leetcode]121. Best Time to Buy and Sell Stock[facebook]

Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), d

2017-12-11 11:09:51 123

原创 [leetcode]1. Two Sum[facebook]

Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the sam

2017-12-11 09:40:22 182

原创 [leetcode]278. First Bad Version[facebook]

You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. Since each version is developed based on the

2017-12-11 09:12:35 221

原创 [leetcode]67. Add Binary[facebook]

Given two binary strings, return their sum (also a binary string). For example, a = "11" b = "1" Return "100". 我的做法: 先把两个字符都转换成数字,然后把数字加起来,然后再转换回二进制 缺点: 慢 改进: 利用了py

2017-12-11 05:50:58 229

原创 [leetcode]283. Move Zeroes[facebook]

Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. For example, given nums = [0, 1, 0, 3, 12], after calling you

2017-12-11 05:12:55 135

原创 python下根据csv将数据集按照类别分文件夹放置

代码如下: 图片地址根据实际情况修改。 import csv import os import shutil import string csvfile = open(csvfile, 'r') data = [] for line in csvfile: data.append(list(line.strip().split(','))) for i in range(len

2016-06-03 13:33:31 2168

原创 Network in Network 论文学习

Network in Network 论文学习

2016-05-27 13:03:48 871

原创 VERY DEEP CONVOLUTIONAL NETWORKS FOR LARGE-SCALE IMAGE RECOGNITION 论文学习

VERY DEEP CONVOLUTIONAL NETWORKS FOR LARGE-SCALE IMAGE RECOGNITION 论文学习

2016-05-27 13:00:22 513

原创 ImageNet Classification with Deep Convolutional Neural Networks 论文学习

ImageNet Classification with Deep Convolutional Neural Networks 论文学习

2016-05-27 12:56:52 568

原创 torch for mac 与 torch for linux

torch7 在ubuntu和mac os x的安装

2016-03-29 21:04:45 396

空空如也

空空如也

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

TA关注的人

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