Given two integers representing the numerator and denominator of a fraction, return the fraction in string for…
标签:LeetCode
LeetCode 题解整理
按照 探索 中初级-中级-高级的顺序刷题,下面是目前完成的题解,未完成版,随时更新。 18/08/04更新 设计问题 – LRU 缓存机制 18/08/03更新 动态规划 – 单词拆分 II 18…
LeetCode解题报告--Roman to Integer
题目:罗马数字转为阿拉伯数字 Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range fro…
LeetCode算法题-Diameter of Binary Tree(Java实现)
这是悦乐书的第257次更新,第270篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第124题(顺位题号是543)。给定二叉树,您需要计算树的直径长度。 二叉树的直径是树中任意两个节点之间最长…
686. Repeated String Match
Easy Given two strings A and B, find the minimum number of times A has to be repeated such that B is a substri…
270. Closest Binary Search Tree Value
Easy 这道题mock的时候没做出来,老师说这种送分题应该是几分钟就写好的,我汗。 recursive way /** * Definition for a binary tree node. * public cla…
392. Is Subsequence
My Submissions Total Accepted: 9572 Total Submissions: 21748 Difficulty: Medium Given a string s and a string …
leetcode——z字形变换
题目: 将字符串 "PAYPALISHIRING" 以Z字形排列成给定的行数:(下面这样的形状) P A H N //0号数组 A P L S I I G //1号数组 Y I R //2号数组 之后…
LeetCode 149. Max Points on a Line
题目 Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. 给出二维平面上…
求1000000以内的素数
文章作者:Tyan 博客:noahsnail.com | CSDN | 简书 1. 素数 质数(Prime number),又称素数,指在大于1的自然数中,除了1和该数自身…
【LeetCode】- Valid Palindrome(有效回文字符串)
1、题目描述 Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring …
88. 合并两个有序数组
88. 合并两个有序数组 问题 给定两个有序整数数组 nums1 和 nums2,将 nums2 合并到 nums1 中,使得 num1 成为一个有序数组。 说明: 初始化 nums1 和 nums2 的元素数量分别为 …