首页
沸点
课程
数据标注
HOT
AI Coding
更多
直播
活动
APP
插件
直播
活动
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
登录
注册
NewCoder1024
掘友等级
不要假装努力,结果不会陪你演戏
获得徽章 0
动态
文章
专栏
沸点
收藏集
关注
作品
赞
3
文章 3
沸点 0
赞
3
返回
|
搜索文章
最新
热门
LeetCode Container With Most Water(011)解法总结
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that t…
LeetCode Palindrome Number(009)解法总结
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. 对于这种简单的逆序问题,将输入转化为Stri…
LeetCode String to Integer (atoi)(008)解法总结
Implement atoi which converts a string to an integer. necessary until the first non-whitespace character is found. Then, them as a numerica…
LeetCode ZigZag Conversion(006)解法总结
其实对这个z字型的排列,可以看做一个压栈和弹栈的过程(字符的行数),使用count进行计数,碰到栈顶和栈底切换压栈和弹栈操作即可。 要注意行数为1的特殊情况。 % of Java online submissions for ZigZag Conversion. 可以看到时间消…
LeetCode Reverse Integer(007)解法总结
Given a 32-bit signed integer, reverse digits of an integer. Assume we are dealing with an environment which could only store integers with…
面试代码题(华为)编辑距离
Given two words word1 and word2, find the minimum number of operations required to convert word1 to word2. 在动态规划 01背包问题中,其中的知乎专栏详细的讲解了这个问题。…
LeetCode Median of Two Sorted Arrays(004)解法总结
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time co…
LeetCode Longest Substring Without Repeating Characters(003)解法总结
Given a string, find the length of the longest substring without repeating characters. 首先想到使用暴力解法,即使用每个字母作为开始,分别计算当前字母的最长不重复子串。从这些最长串长度中选择最…
面试代码题(vivo)数位之积
输入一个正整数n,输出一个最小正整数m,使得m的各位乘积等于n,若不存在,则返回-1。 当输入的数据>10时,需要分析求小于10的所有因子,而且要满足因子的个数越少越好,并且小的因子应该放在前面。当用10以内的所有因子试过之后,如果这些因子乘积不等于输入数据n,说明不存在最小正…
LeetCode Unique Paths(062)解法总结
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or rig…
下一页
个人成就
文章被点赞
6
文章被阅读
11,590
掘力值
354
关注了
1
关注者
0
收藏集
0
关注标签
8
加入于
2020-03-03