
【LeetCode OJ】
爬金字塔的人
5年的图像处理和计算机视觉经验
多个工业上缺陷检测项目的开发经验
多个结合视觉的工业自动化大型设备研发经验
展开
-
【Leet Code】Median of Two Sorted Arrays
Median of Two Sorted Arrays Total Accepted: 17932 Total Submissions: 103927My Submissions There are two sorted arrays A and B of size m and n respectively. Find the median of the two sort原创 2014-08-21 12:18:20 · 830 阅读 · 0 评论 -
【LeetCode】Two Sum——第一次接触LeetCode
本来计划着暑假一开始就刷刷一些大公司的笔试题,没想到暑假一逛过了一个月了,还没半点儿动手的痕迹,给自己找了个欺骗自己的接口——实习太忙了。。。好吧,昨天在网上不小心看到fanfanK写的一篇博客2014校园招聘总结,里面讲的内容挺不错的,我也非常同意里面的一个观点——不要抱死一家公司不放;里面还提到了LeetCoed这个东西(一个在线题库,自带编译),也因此才有了我这边博客。离今年秋招还有1个多月原创 2014-08-06 23:25:05 · 1254 阅读 · 1 评论 -
【Leet Code】Add Two Numbers
Add Two Numbers Total Accepted: 20255 Total Submissions: 88115My Submissions You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order a原创 2014-08-23 21:35:12 · 890 阅读 · 0 评论 -
【Leet Code】Longest Substring Without Repeating Characters
Longest Substring Without Repeating Characters Total Accepted: 20506 Total Submissions: 92223My Submissions Given a string, find the length of the longest substring without repeating char原创 2014-08-23 21:11:45 · 797 阅读 · 0 评论 -
【Leet Code】Longest Palindromic Substring ——传说中的Manacher算法
Longest Palindromic Substring Total Accepted: 17474 Total Submissions: 84472My Submissions Given a string S, find the longest palindromic substring in S. You may assume that the maximum l原创 2014-08-24 15:40:32 · 1134 阅读 · 0 评论 -
【Leet Code】ZigZag Conversion
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility) P A H N A P L S I原创 2014-08-25 21:20:03 · 683 阅读 · 0 评论 -
【Leet Code】Reverse Integer——“%”你真的懂吗?
Reverse Integer Total Accepted: 27372 Total Submissions: 68133My Submissions Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 题目咋看起原创 2014-08-25 20:40:00 · 1214 阅读 · 0 评论 -
【Leet Code】Palindrome Number
Palindrome Number Total Accepted: 19369 Total Submissions: 66673My Submissions Determine whether an integer is a palindrome. Do this without extra space. 判断一个数整数是不是回文?例如121,122原创 2014-08-27 00:55:50 · 1345 阅读 · 0 评论 -
【Leet Code】String to Integer (atoi) ——常考类型题
String to Integer (atoi) Total Accepted: 15482 Total Submissions: 106043My Submissions Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases原创 2014-08-27 01:02:37 · 1160 阅读 · 0 评论