这是悦乐书的第191次更新,第194篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第50题(顺位题号是205)。给定两个字符串s和t,确定它们是否是同构的。如果s中的字符可以替换为t,则两个…
标签:LeetCode
LeetCode算法题-License Key Formatting(Java实现)
这是悦乐书的第241次更新,第254篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第108题(顺位题号是482)。您将获得一个表示为字符串S的许可证密钥,该字符串仅包含字母数字字符和短划线。…
Leetcode之14-最长公共前缀(Longest Common Prefix)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 编写一个函数来查找字符串数组中的最长公共前缀。如果不存在公共前缀, 返回空字符串。 示例 示例 1: 输入: ["flow…
349. Intersection of Two Arrays
349. Intersection of Two Arrays 题目: https://leetcode.com/problems/intersection-of-two-arrays/ 难度: Easy Python一…
Subsets II解题报告
Description: Given a list of numbers that may has duplicate numbers, return all possible subsets Notice: Each …
网易笔试2018编程题
第一题 [编程题] 牛牛找工作 时间限制:2秒 空间限制:65536K 为了找到自己满意的工作,牛牛收集了每种工作的难度和报酬。牛牛选工作的标准是在难度不超过自身能力值的情况下,牛牛选择报酬最高的工作。在牛牛选定了自己的…
LeetCode 175. Combine Two Tables
LeetCode 175. Combine Two Tables 题目 Table: Person +-------------+---------+ | Column Name | Type | +----------…
从leetcode386理解字典树Tire
LeetCode386 – LexicogarphicalNumbers 记录详细的思考过程,从此题加深对相关数据结构的理解,记录总结自己的思维误区。 审题 Given an integer n, ret…
LeetCode算法题-Power of Four(Java实现-六种解法)
这是悦乐书的第205次更新,第216篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第72题(顺位题号是342)。给定一个整数(带符号的32位),写一个函数来检查它是否为4的幂。例如: 输入:…
Leetcode 329. Longest Increasing Path in a Matrix
Given an integer matrix, find the length of the longest increasing path. From each cell, you can either move t…
LeetCode算法题-Path Sum III(Java实现)
这是悦乐书的第227次更新 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第94题(顺位题号是437)。您将获得一个二叉树,其中每个节点都包含一个整数值。找到与给定值相加的路径数。路径不需要在根或叶…
Leetcode算法解析101+
<center>#104 Maximum Depth of Binary Tree</center> link Description: Given a binary tree, find its…