
LeetCode(Easy)
文章平均质量分 73
LeetCode(Easy)
DXB2021
听力障碍人士,愿终身学习计算机科学与技术的所有知识。
展开
-
121. Best Time to Buy and Sell Stock买卖股票的最佳时机
买卖股票的最佳时机原创 2022-08-07 20:07:20 · 229 阅读 · 0 评论 -
136. Single Number只出现一次的数字
只出现一次的数字原创 2022-08-07 19:21:50 · 135 阅读 · 0 评论 -
69. Sqrt(x)x 的平方根
x 的平方根原创 2022-07-29 17:12:39 · 169 阅读 · 0 评论 -
53. Maximum Subarray最大子数组和
最大子数组和原创 2022-07-27 11:00:03 · 179 阅读 · 0 评论 -
35. Search Insert Position 搜索插入位置
Search Insert Position 搜索插入位置原创 2022-07-26 09:19:13 · 201 阅读 · 0 评论 -
28. Implement strStr()实现 strStr()
实现 strStr()原创 2022-07-25 10:58:11 · 168 阅读 · 0 评论 -
20. Valid Parentheses有效的括号
Valid Parentheses有效的括号原创 2022-07-21 16:42:25 · 121 阅读 · 0 评论 -
13. Roman to Integer罗马数字转整数
Roman to Integer原创 2022-07-21 15:19:09 · 270 阅读 · 0 评论 -
9. Palindrome Number回文数(Easy,LeetCode)
Given an integerx, returntrueifxis palindrome integer.给你一个整数x,如果x是一个回文整数,返回true;否则,返回false。An integer is apalindromewhen it reads the same backward as forward.For example,121is a palindrome while123is not.回文数是指正序(从左向右)和倒序(从右向左)读都是......原创 2022-02-02 16:01:08 · 278 阅读 · 0 评论 -
1. Two Sum两数之和(Easy,LeetCode)
Given an array of integersnumsand an integertarget, returnindices of the two numbers such that they add up totarget.给定一个整数数组 nums和一个整数目标值 target,请你在该数组中找出 和为目标值 target的那两个整数,并返回它们的数组下标。You may assume that each input would have exactly one sol......原创 2022-01-23 18:51:54 · 184 阅读 · 0 评论