Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999. 罗马…
分类:LeetCode
LeetCode算法练习——深度优先搜索 DFS(3)
更多干货就在我的个人博客 BlackBlog.tech 欢迎关注! 也可以关注我的csdn博客:黑哥的博客 谢谢大家! LeetCode Everyday! 我们继续LeetCode之旅,这一篇再完成十个题,我们就进入下…
Leetcode之18-四数之和(4Sum)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 前言 第一次碰到四数之和这道算法题时,内心是兴(beng)奋(kui)的。mmp,之前貌似做了好几道XX之和的算法题了,竟然还来…
LeetCode算法题-Reverse String II(Java实现)
这是悦乐书的第256次更新,第269篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第123题(顺位题号是541)。给定一个字符串和一个整数k,你需要反转从字符串开头算起的每2k个字符的前k个…
Six Degrees
Six degrees of separation is the theory that everyone and everything is six or fewer steps away, by way of int…
[LeetCode]Reverse Integer题解
题目链接:7. Reverse Integer 难度:Easy Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123…
22. Generate Parentheses
22. Generate Parentheses 题目 Given n pairs of parentheses, write a function to generate all combinations of wel…
LeetCode | Binary Tree Maximum Path Sum
题目: Given a binary tree, find the maximum path sum. The path may start and end at any node in the tree. For ex…
LeetCode 21. Merge Two Sorted Lists
题目 将两个排序链表合并为一个新的排序链表 样例 给出 1->3->8->11->15->null,2->null, 返回 1->2->3->8->11->…
[LeetCode][Tree] 333. Largest BST Subtree
Problem More LeetCode Discussions Given a binary tree, find the largest subtree which is a Binary Search Tree …
算法: reshape the matrix
reshape the matrix // 找到对应新矩阵和原来矩阵行列的关系以及对应的变换 // class Solution { func matrixReshape(_ nums: [[Int]], _ r: In…
LeetCode算法题-Happy Number(Java实现)
这是悦乐书的第188次更新,第190篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第47题(顺位题号是202)。编写算法以确定数字是否“幸福”。 幸福数字是由以下过程定义的数字:从任何正整数…