130-. Surrounded Regions Total Accepted: 55559 Total Submissions: 339215 Difficulty: Medium Given a 2D board c…
分类:LeetCode
[LeetCode] Sum Root to Leaf Numbers 求根到叶节点数字之和,Path Sum,Path Sum
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a…
LeetCode 069 Sqrt(x)
题目描述 Implement int sqrt(int x). Compute and return the square root of x. 代码 public static int mySqrt(int x) { …
859. Buddy Strings
Given two strings A and B of lowercase letters, return true if and only if we can swap two letters in A so tha…
[Leetcode] Evaluate Division 计算除法
Evaluate Division 原文请访问:https://yanjia.me/zh/2018/12/… Equations are given in the format A / B = k, wher…
LeetCode | Sqrt(x)
Implement int sqrt(int x). 题目解析: 求开方根,只是求解整数,比较容易,如果求解double类型的,就要考虑精度问题。 题型一:求整数根 先讲解求解整数根的情况。 题目简单,可以直接…
算法题目解题记录——BestString
本文由作者三汪首发于简书。 历史解题记录已同步更新github. 题目 Problem Description Given a string, you use some letters or digits to crea…
136. 只出现一次的数字
一、题目原型: 给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素 二、题目意思剖析: 说明: 你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗? 示例 1…
8.字符串转换整数(atoi)(Swift版)
一、题目 请你来实现一个 atoi 函数,使其能将字符串转换成整数。 首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。 当我们寻找到的第一个非空字符为正或者负号时,则将该符号与之后面尽可能…
15. 三数之和(Swift版)
一、题目 给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。 注意:答案中不可以包含重复的三元组。 例如, …
LeetCode算法题-Find All Anagrams in a String(Java实现)
这是悦乐书的第228次更新,第240篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第95题(顺位题号是438)。给定一个字符串s和一个非空字符串p,找到s中p的字谜的所有起始索引。字符串仅由…
LeetCode 6-7
这两道本身比较简单,但都需要稍微转变一下思路,看本质不要被题目描述误导。很多时候计算机也是可以按照人的思考方式执行的,这种情况拿笔在纸上画一下,把我们的思考过程转成计算机语言,方法也就出来了。 6.Z字形变换 将字符串 …