题目地址:https://leetcode-cn.com/probl…题目描述:给定两个字符串, A 和 B。 A 的旋转操作就是将 A 最左边的字符移动到最右边。 例如, 若 A = ‘abcd…
分类:LeetCode
LeetCode算法题-Sum of Square Numbers(Java实现)
这是悦乐书的第276次更新,第292篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第144题(顺位题号是633)。给定一个非负整数c,判断是否存在两个整数a和b,使得a的平方与b的平方之和等…
【LeetCode】-- Next Permutation
1.题目描述 31.Next Permutation Implement next permutation, which rearranges numbers into the lexicographically nex…
Leetcode 172. Factorial Trailing Zeroes
Given an integer n, return the number of trailing zeroes in n!. Note: Your solution should be in logarithmic t…
[LeetCode] Evaluate Reverse Polish Notation 计算逆波兰表达式
Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are&nbs…
[LeetCode] One Edit Distance 一个编辑距离,
Given two strings S and T, determine if they are both one edit distance apart. 这道题是之前那道Edit Dist…
[LeetCode] Number Complement 补数
Given a positive integer, output its complement number. The complement strategy is to flip the bits of …
[LeetCode] Closest Leaf in a Binary Tree 二叉树中最近的叶结点
Given a binary tree where every node has a unique value, and a target key k, find the value o…
[Algo] Eight Puzzle Game 九宫格游戏
Eight Puzzle Game 九宫格游戏,给定最终状态如下,再给出一个初始状态,0代表空位,相邻的格子中的方块可以和0互换位置,求初始状态到最终状态的最小步数。 1 2 3 4 5 6 7 8 0 A*搜索 思路 …
LeetCode 226. 翻转二叉树
题目描述 翻转一棵二叉树。 示例: 输入: 4 / \ 2 7 / \ / \ 1 3 6 9 输出: 4 / \ 7 2 / \ / \ 9 6 3 1 备注: 这个问题是受到 Max Howell 的 原问题 启发的…
Leetcode - Longest Substring with At Least K Repeating Characters
My code: public class Solution { public int longestSubstring(String s, int k) { if (s == null || s.length() &l…
[LeetCode By Go 74]83. Remove Duplicates from Sorted List
本题目测试中给出了 初始化链表 和 判断两个链表是否相同 的方法 题目 Given a sorted linked list, delete all duplicates such that each element a…