自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 leetcode amazon 面试题(三)

leetcode 21.  merge two sorted lists大概的意思就是 给两个list, 然后把它们按照所有元素的 从小到大的顺序排序。这里分享一个比较简洁的写法:class Solution(object): def mergeTwoLists(self, l1, l2): dummy = cur = ListNode(0) while l...

2018-03-20 04:10:34 1134

原创 Leetcode amazon 面试题(二)

242. valid anagram给定两个字符串,问是否是 anagram(同字母异序)python 的做法很简单,一行就好了def isAnagram(self, s, t): return sorted(s) == sorted(t)这个是时间复杂度是 O(nlogn)想要提高 速度的话 可以用 hash table用两个list 存每个字符出现次数,然后比较。时间复杂度是O...

2018-03-01 09:54:26 977

原创 Leetcode amazon 面试题系列(一)

最近在刷亚麻的面试题,然后顺便想练一练python的技巧,所以就用python刷了一边。然后mark一下以后可以复习。leetcode 771.大概就是给定两个字符串a 和b,问b 中出现了多少次a 的字符。记录一个python的用法:def numJewelsInStones(self, J, S): return sum(map(J.count, S))这里利用了 python 的几个...

2018-02-23 04:54:33 4799

原创 Leetcode 647. Palindromic Substrings

找到字符串中的回文子序列的个数 比如 给定一个字符串“aaa”, 它的子序列的个数就是 a, a, a, aa, aa, aaa 如果给定的是“abc”, 那么它的子序列就是a, b, cstring[i]到 string[j] 这个子串是回文的可能性只有当 string[i] == string[j] 而且string[i + 1] 到 string[j - 1] 是回文。 但是考虑到如果中间

2017-08-29 01:25:03 504

原创 Leetcode 65. Valid Number

判断是否为一个数 注意: 1. .35,00 可以算做小数, 只有一个”.” 不算 2. 要注意 空格 3. 可以有正负号 4. 如果有e 的话,那么一定要是AeB 这样的形式,而且B 是整数, 可以带正负号。 A 可以是整数也可以是小数,带正负号算法就是把字符串分成A 和B 两个子字符串,按照A 和B 的规则是找在discussion 里面看到了一个python的解法:class Sol

2017-08-28 23:25:02 459

原创 Leetcode 459. Repeated Substring Pattern

Given a non-empty string check if it can be constructed by taking a substring of it and appending multiple copies of the substring together. You may assume the given string consists of lowercase Englis

2017-05-19 10:56:02 389

原创 Leetcode 394. Decode String

Given an encoded string, return it’s decoded string.The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times. Note that k is guaran

2017-05-18 15:09:26 318

原创 [leetcode 583] Delete Operation for Two Strings

Description: Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one character in either string.Example 1: I

2017-05-17 16:18:10 1065

原创 [LEETCODE]230. Kth Smallest Element in a BST

Given a binary search tree, write a function kthSmallest to find the kth smallest element in it.Note: You may assume k is always valid, 1 ≤ k ≤ BST’s total elements.Follow up: What if the BST is mod

2016-07-30 20:05:20 408

转载 [leetcode] 368. Largest Divisible Subset

题目链接: https://leetcode.com/problems/largest-divisible-subset/Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satis

2016-07-30 11:53:50 393

原创 【LEETCODE】328. Odd Even Linked List

Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the value in the nodes.You should try to do it in plac

2016-07-30 11:36:23 338

转载 绑定cpu 核

As multi-core CPUs become increasingly popular on server-grade hardware as well as end-user desktop PCs or laptops, there have been growing efforts in the community (e.g., in terms of programming model

2016-07-27 13:01:55 760

原创 mac opencv 找不到库解决办法

opencv 在mac 上面的使用非常的麻烦 mark 下以备不时之需要编译的的filter.cpp 其中添加的库有:#include "opencv2/highgui/highgui.hpp"#include "opencv2/imgproc/imgproc.hpp"#include "opencv2/core/core.hpp"#include "opencv2/video/video.

2016-07-26 13:06:01 1962

原创 scp不用密码远程拷贝

scp 不用密码远程拷贝

2016-07-25 15:50:57 670

转载 【shell】scp网络详解

linux之cp/scp命令+scp命令详解

2016-07-25 15:38:16 1444

原创 [LEETCODE] 287. Find the Duplicate Number

[LEETCODE] 287. Find the Duplicate NumberGiven an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate number must exist. Assume tha

2016-07-24 13:08:54 1142

原创 [LEETCODE]318. Maximum Product of Word Lengths

[LEETCODE]318. Maximum Product of Word Lengths

2016-07-24 12:47:20 977

原创 [LEETCODE]52. N-Queens II

[LEETCODE]52. N-Queens IIFollow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.

2016-07-24 09:58:55 1004

原创 [leetcode] 319.Bulb Switcher

[leetcode] 319.Bulb SwitcherThere are n bulbs that are initially off.

2016-07-23 23:27:53 1075

原创 [LEETCODE] 268. Missing Number

[LEETCODE]268. Missing NumberGiven an array containing n distinct numbers taken from 0, 1, 2, …, n, find the one that is missing from the array.

2016-07-23 21:06:11 321

原创 [LEETCODE] 372. super pow

【LEETCODE】372.super powYour task is to calculate ab mod 1337 where a is a positive integer and b is an extremely large positive integer given in the form of an array.Example1:a = 2 b = [3]Result: 8

2016-07-23 20:41:01 347

原创 [LEETCODE] 376. Wiggle Subsequence

376.Wiggle Subsequence 解题报告 A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and negative. The first difference (if o

2016-07-23 20:02:32 491

转载 【翻译】Understanding LSTM Networks

【翻译】Understanding LSTM Networks

2016-07-22 08:48:06 416

原创 leetcode 375. Guess Number Higher or Lower II

leetcode 375. Guess Number Higher or Lower II

2016-07-20 16:59:09 506

原创 vi/ vim 光标移动命令

vim 光标命令

2016-07-19 15:36:45 483

原创 leetcode 347. Top K Frequent Elements

Given a non-empty array of integers, return the k most frequent elements.For example, Given [1,1,1,2,2,3] and k = 2, return [1,2].

2016-07-16 11:38:39 261

原创 leetcode 350. Intersection of Two Arrays II

Given two arrays, write a function to compute their intersection.Example: Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2, 2].

2016-07-16 10:47:12 294

原创 leetcode Find K Pairs with Smallest Sums

leetcode 373find K pairs with Smallest Sums

2016-07-15 23:06:52 408

原创 Leetcode 第 374 题(Guess Number Higher or Lower)

leetcode 374

2016-07-15 16:57:45 362

转载 Faster RCNN算法详解

目标检测,Faster RCNN算法详解

2016-07-15 14:12:39 796

原创 DeepLab: Semantic Image Segmentation

DeepLab: Semantic Image Segmentation with Deep Convolutional Nets, Atrous Convolution, and Fully Connected CRFs 论文学习笔记

2016-07-15 11:10:23 5824 2

原创 LeetCode 371 Sum of Two Intergers

leetcode 371 sum of two intergers

2016-07-14 11:32:42 360

原创 [LeetCode] Counting Bits 计数位

LEETCODE counting bit

2016-07-14 11:13:16 333

原创 Learning Deconvolution Network for Semantic Segmentation

Learning Deconvolution Network for Semantic Segmentation 论文笔记

2016-07-13 14:23:10 1884

转载 Caffe学习系列:用训练好的caffemodel来进行分类

Caffe学习系列:用训练好的caffemodel来进行分类

2016-07-13 10:38:42 803

转载 Caffe学习系列: 绘制loss和accuracy曲线

Caffe学习系列: 绘制loss和accuracy曲线

2016-07-13 10:37:18 1551

转载 caffe学习系列:绘制网络模型

Caffe学习系列: 绘制网络模型

2016-07-13 10:35:21 663

转载 Caffe学习系列:模型各层数据和参数可视化

先用caffe对cifar10进行训练,将训练的结果模型进行保存,得到一个caffemodel,然后从测试图片中选出一张进行测试,并进行可视化。In [1]:#加载必要的库import numpy as npimport matplotlib.pyplot as plt%matplotlib inlineimport sys,os,caffe

2016-07-13 10:33:48 3167

原创 Caffe学习系列:caffemodel可视化

Caffe学习系列:caffemodel可视化

2016-07-12 14:34:46 2406

转载 caffe学习系列:计算图片数据的均值

caffe学习系列:计算图片数据的均值

2016-07-12 14:32:03 725

空空如也

空空如也

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

TA关注的人

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