Leetcode-cn.com 2021-09-21
🟢 58.length-of-last-word
🏷️ Tags
#string
Description
给你一个字符串
单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。
Example
🟢 58.length-of-last-word
🏷️ Tags
#string
Description
给你一个字符串
s,由若干单词组成,单词前后用一些空格字符隔开。返回字符串中最后一个单词的长度。单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。
Example
输入:s = "Hello World"
输出:5
Leetcode.com 2021-09-20
🟢 1275.find-winner-on-a-tic-tac-toe-game
🏷️ Tags
#array #hash_table #matrix #simulation
Description
Tic-tac-toe is played by two players A and B on a 3 x 3 grid.
Here are the rules of Tic-Tac-Toe:
Players take turns placing characters into empty squares (" ").
The first player A always places "X" characters, while the second player B always places "O" characters.
"X" and "O" characters are always placed into empty squares, never on filled ones.
The game ends when there are 3 of the same (non-empty) character filling any row, column, or diagonal.
The game also ends if all squares are non-empty.
No more moves can be played if the game is over.
Given an array
Return the winner of the game if it exists (A or B), in case the game ends in a draw return "Draw", if there are still movements to play return "Pending".
You can assume that
Example
🟢 1275.find-winner-on-a-tic-tac-toe-game
🏷️ Tags
#array #hash_table #matrix #simulation
Description
Tic-tac-toe is played by two players A and B on a 3 x 3 grid.
Here are the rules of Tic-Tac-Toe:
Players take turns placing characters into empty squares (" ").
The first player A always places "X" characters, while the second player B always places "O" characters.
"X" and "O" characters are always placed into empty squares, never on filled ones.
The game ends when there are 3 of the same (non-empty) character filling any row, column, or diagonal.
The game also ends if all squares are non-empty.
No more moves can be played if the game is over.
Given an array
moves where each element is another array of size 2 corresponding to the row and column of the grid where they mark their respective character in the order in which A and B play.Return the winner of the game if it exists (A or B), in case the game ends in a draw return "Draw", if there are still movements to play return "Pending".
You can assume that
moves is valid (It follows the rules of Tic-Tac-Toe), the grid is initially empty and A will play first.Example
Input: moves = [[0,0],[2,0],[1,1],[2,1],[2,2]]
Output: "A"
Explanation: "A" wins, he always plays first.
"X " "X " "X " "X " "X "
" " -> " " -> " X " -> " X " -> " X "
" " "O " "O " "OO " "OOX"
Leetcode-cn.com 2021-09-22
🟡 725.split-linked-list-in-parts
🏷️ Tags
#linked_list
Description
给定一个头结点为
每部分的长度应该尽可能的相等: 任意两部分的长度差距不能超过 1,也就是说可能有些部分为 null。
这k个部分应该按照在链表中出现的顺序进行输出,并且排在前面的部分的长度应该大于或等于后面的长度。
返回一个符合上述规则的链表的列表。
举例: 1->2->3->4, k = 5 // 5 结果 [ [1], [2], [3], [4], null ]
Example
🟡 725.split-linked-list-in-parts
🏷️ Tags
#linked_list
Description
给定一个头结点为
root 的链表, 编写一个函数以将链表分隔为 k 个连续的部分。每部分的长度应该尽可能的相等: 任意两部分的长度差距不能超过 1,也就是说可能有些部分为 null。
这k个部分应该按照在链表中出现的顺序进行输出,并且排在前面的部分的长度应该大于或等于后面的长度。
返回一个符合上述规则的链表的列表。
举例: 1->2->3->4, k = 5 // 5 结果 [ [1], [2], [3], [4], null ]
Example
输入:
root = [1, 2, 3], k = 5
输出: [[1],[2],[3],[],[]]
解释:
输入输出各部分都应该是链表,而不是数组。
例如, 输入的结点 root 的 val= 1, root.next.val = 2, \root.next.next.val = 3, 且 root.next.next.next = null。
第一个输出 output[0] 是 output[0].val = 1, output[0].next = null。
最后一个元素 output[4] 为 null, 它代表了最后一个部分为空链表。
Leetcode.com 2021-09-21
🟢 485.max-consecutive-ones
🏷️ Tags
#array
Description
Given a binary array
Example
🟢 485.max-consecutive-ones
🏷️ Tags
#array
Description
Given a binary array
nums, return the maximum number of consecutive 1's in the array.Example
Input: nums = [1,1,0,1,1,1]
Output: 3
Explanation: The first two digits or the last three digits are consecutive 1s. The maximum number of consecutive 1s is 3.
Leetcode-cn.com 2021-09-23
🟢 326.power-of-three
🏷️ Tags
#recursion #math
Description
给定一个整数,写一个函数来判断它是否是 3 的幂次方。如果是,返回
整数
Example
🟢 326.power-of-three
🏷️ Tags
#recursion #math
Description
给定一个整数,写一个函数来判断它是否是 3 的幂次方。如果是,返回
true ;否则,返回 false 。整数
n 是 3 的幂次方需满足:存在整数 x 使得 n == 3xExample
输入:n = 27
输出:true
Leetcode.com 2021-09-22
🟡 1239.maximum-length-of-a-concatenated-string-with-unique-characters
🏷️ Tags
#bit_manipulation #array #string #backtracking
Description
Given an array of strings
Return the maximum possible length of
Example
🟡 1239.maximum-length-of-a-concatenated-string-with-unique-characters
🏷️ Tags
#bit_manipulation #array #string #backtracking
Description
Given an array of strings
arr. String s is a concatenation of a sub-sequence of arr which have unique characters.Return the maximum possible length of
s.Example
Input: arr = ["un","iq","ue"]
Output: 4
Explanation: All possible concatenations are "","un","iq","ue","uniq" and "ique".
Maximum length is 4.
Leetcode.com 2021-09-23
🟡 1328.break-a-palindrome
🏷️ Tags
#greedy #string
Description
Given a palindromic string of lowercase English letters
Return the resulting string. If there is no way to replace a character to make it not a palindrome, return an empty string.
A string
Example
🟡 1328.break-a-palindrome
🏷️ Tags
#greedy #string
Description
Given a palindromic string of lowercase English letters
palindrome, replace exactly one character with any lowercase English letter so that the resulting string is not a palindrome and that it is the lexicographically smallest one possible.Return the resulting string. If there is no way to replace a character to make it not a palindrome, return an empty string.
A string
a is lexicographically smaller than a string b (of the same length) if in the first position where a and b differ, a has a character strictly smaller than the corresponding character in b. For example, "abcc" is lexicographically smaller than "abcd" because the first position they differ is at the fourth character, and 'c' is smaller than 'd'.Example
Input: palindrome = "abccba"
Output: "aaccba"
Explanation: There are many ways to make "abccba" not a palindrome, such as "zbccba", "aaccba", and "abacba".
Of all the ways, "aaccba" is the lexicographically smallest.
Leetcode-cn.com 2021-09-25
🟡 583.delete-operation-for-two-strings
🏷️ Tags
#string #dynamic_programming
Description
给定两个单词 word1 和 word2,找到使得 word1 和 word2 相同所需的最小步数,每步可以删除任意一个字符串中的一个字符。
Example
🟡 583.delete-operation-for-two-strings
🏷️ Tags
#string #dynamic_programming
Description
给定两个单词 word1 和 word2,找到使得 word1 和 word2 相同所需的最小步数,每步可以删除任意一个字符串中的一个字符。
Example
输入: "sea", "eat"
输出: 2
解释: 第一步将"sea"变为"ea",第二步将"eat"变为"ea"
Leetcode.com 2021-09-24
🟢 1137.n-th-tribonacci-number
🏷️ Tags
#memoization #math #dynamic_programming
Description
The Tribonacci sequence Tn is defined as follows:
T0 = 0, T1 = 1, T2 = 1, and Tn+3 = Tn + Tn+1 + Tn+2 for n >= 0.
Given
Example
🟢 1137.n-th-tribonacci-number
🏷️ Tags
#memoization #math #dynamic_programming
Description
The Tribonacci sequence Tn is defined as follows:
T0 = 0, T1 = 1, T2 = 1, and Tn+3 = Tn + Tn+1 + Tn+2 for n >= 0.
Given
n, return the value of Tn.Example
Input: n = 4
Output: 4
Explanation:
T_3 = 0 + 1 + 1 = 2
T_4 = 1 + 1 + 2 = 4
Leetcode-cn.com 2021-09-26
🟡 371.sum-of-two-integers
🏷️ Tags
#bit_manipulation #math
Description
给你两个整数
Example
🟡 371.sum-of-two-integers
🏷️ Tags
#bit_manipulation #math
Description
给你两个整数
a 和 b ,不使用 运算符 + 和 - ,计算并返回两整数之和。Example
输入:a = 1, b = 2
输出:3
Leetcode.com 2021-09-25
🔴 1293.shortest-path-in-a-grid-with-obstacles-elimination
🏷️ Tags
#breadth_first_search #array #matrix
Description
You are given an
Return the minimum number of steps to walk from the upper left corner
Example
🔴 1293.shortest-path-in-a-grid-with-obstacles-elimination
🏷️ Tags
#breadth_first_search #array #matrix
Description
You are given an
m x n integer matrix grid where each cell is either 0 (empty) or 1 (obstacle). You can move up, down, left, or right from and to an empty cell in one step.Return the minimum number of steps to walk from the upper left corner
(0, 0) to the lower right corner (m - 1, n - 1) given that you can eliminate at most k obstacles. If it is not possible to find such walk return -1.Example
Input:
grid =
[[0,0,0],
[1,1,0],
[0,0,0],
[0,1,1],
[0,0,0]],
k = 1
Output: 6
Explanation:
The shortest path without eliminating any obstacle is 10.
The shortest path with one obstacle elimination at position (3,2) is 6. Such path is (0,0) -> (0,1) -> (0,2) -> (1,2) -> (2,2) -> (3,2) -> (4,2).
Leetcode-cn.com 2021-09-27
🔴 639.decode-ways-ii
🏷️ Tags
#string #dynamic_programming
Description
一条包含字母
要 解码 一条已编码的消息,所有的数字都必须分组,然后按原来的编码方案反向映射回字母(可能存在多种方式)。例如,
注意,像
除了 上面描述的数字字母映射方案,编码消息中可能包含
给你一个字符串
由于答案数目可能非常大,返回对
Example
🔴 639.decode-ways-ii
🏷️ Tags
#string #dynamic_programming
Description
一条包含字母
A-Z 的消息通过以下的方式进行了编码:
'A' -> 1
'B' -> 2
...
'Z' -> 26
要 解码 一条已编码的消息,所有的数字都必须分组,然后按原来的编码方案反向映射回字母(可能存在多种方式)。例如,
"11106" 可以映射为:"AAJF" 对应分组 (1 1 10 6)"KJF" 对应分组 (11 10 6)注意,像
(1 11 06) 这样的分组是无效的,因为 "06" 不可以映射为 'F' ,因为 "6" 与 "06" 不同。除了 上面描述的数字字母映射方案,编码消息中可能包含
'*' 字符,可以表示从 '1' 到 '9' 的任一数字(不包括 '0')。例如,编码字符串 "1*" 可以表示 "11"、"12"、"13"、"14"、"15"、"16"、"17"、"18" 或 "19" 中的任意一条消息。对 "1*" 进行解码,相当于解码该字符串可以表示的任何编码消息。给你一个字符串
s ,由数字和 '*' 字符组成,返回 解码 该字符串的方法 数目 。由于答案数目可能非常大,返回对
109 + 7 取余 的结果。Example
输入:s = "*"
输出:9
解释:这一条编码消息可以表示 "1"、"2"、"3"、"4"、"5"、"6"、"7"、"8" 或 "9" 中的任意一条。
可以分别解码成字符串 "A"、"B"、"C"、"D"、"E"、"F"、"G"、"H" 和 "I" 。
因此,"*" 总共有 9 种解码方法。
Leetcode.com 2021-09-26
🔴 782.transform-to-chessboard
🏷️ Tags
#bit_manipulation #array #math #matrix
Description
You are given an
Return the minimum number of moves to transform the board into a chessboard board. If the task is impossible, return
A chessboard board is a board where no
Example
🔴 782.transform-to-chessboard
🏷️ Tags
#bit_manipulation #array #math #matrix
Description
You are given an
n x n binary grid board. In each move, you can swap any two rows with each other, or any two columns with each other.Return the minimum number of moves to transform the board into a chessboard board. If the task is impossible, return
-1.A chessboard board is a board where no
0's and no 1's are 4-directionally adjacent.Example
Input: board = [[0,1,1,0],[0,1,1,0],[1,0,0,1],[1,0,0,1]]
Output: 2
Explanation: One potential sequence of moves is shown.
The first move swaps the first and second column.
The second move swaps the second and third row.
Leetcode.com 2021-09-27
🟢 929.unique-email-addresses
🏷️ Tags
#array #hash_table #string
Description
Every valid email consists of a local name and a domain name, separated by the
For example, in
If you add periods
For example,
If you add a plus
For example,
It is possible to use both of these rules at the same time.
Given an array of strings
Example
🟢 929.unique-email-addresses
🏷️ Tags
#array #hash_table #string
Description
Every valid email consists of a local name and a domain name, separated by the
'@' sign. Besides lowercase letters, the email may contain one or more '.' or '+'.For example, in
"alice@leetcode.com", "alice" is the local name, and "leetcode.com" is the domain name.If you add periods
'.' between some characters in the local name part of an email address, mail sent there will be forwarded to the same address without dots in the local name. Note that this rule does not apply to domain names.For example,
"alice.z@leetcode.com" and "alicez@leetcode.com" forward to the same email address.If you add a plus
'+' in the local name, everything after the first plus sign will be ignored. This allows certain emails to be filtered. Note that this rule does not apply to domain names.For example,
"m.y+name@email.com" will be forwarded to "my@email.com".It is possible to use both of these rules at the same time.
Given an array of strings
emails where we send one email to each email[i], return the number of different addresses that actually receive mails.Example
Input: emails = ["test.email+alex@leetcode.com","test.e.mail+bob.cathy@leetcode.com","testemail+david@lee.tcode.com"]
Output: 2
Explanation: "testemail@leetcode.com" and "testemail@lee.tcode.com" actually receive mails.
Leetcode-cn.com 2021-09-29
🔴 517.super-washing-machines
🏷️ Tags
#greedy #array
Description
假设有
在每一步操作中,你可以选择任意
给定一个整数数组
Example
🔴 517.super-washing-machines
🏷️ Tags
#greedy #array
Description
假设有
n 台超级洗衣机放在同一排上。开始的时候,每台洗衣机内可能有一定量的衣服,也可能是空的。在每一步操作中,你可以选择任意
m (1 <= m <= n) 台洗衣机,与此同时将每台洗衣机的一件衣服送到相邻的一台洗衣机。给定一个整数数组
machines 代表从左至右每台洗衣机中的衣物数量,请给出能让所有洗衣机中剩下的衣物的数量相等的 最少的操作步数 。如果不能使每台洗衣机中衣物的数量相等,则返回 -1 。Example
输入:machines = [1,0,5]
输出:3
解释:
第一步: 1 0 <-- 5 => 1 1 4
第二步: 1 <-- 1 <-- 4 => 2 1 3
第三步: 2 1 <-- 3 => 2 2 2
Leetcode.com 2021-09-28
🟢 922.sort-array-by-parity-ii
🏷️ Tags
#array #two_pointers #sorting
Description
Given an array of integers
Sort the array so that whenever
Return any answer array that satisfies this condition.
Example
🟢 922.sort-array-by-parity-ii
🏷️ Tags
#array #two_pointers #sorting
Description
Given an array of integers
nums, half of the integers in nums are odd, and the other half are even.Sort the array so that whenever
nums[i] is odd, i is odd, and whenever nums[i] is even, i is even.Return any answer array that satisfies this condition.
Example
Input: nums = [4,2,5,7]
Output: [4,5,2,7]
Explanation: [4,7,2,5], [2,5,4,7], [2,7,4,5] would also have been accepted.
Leetcode.com 2021-09-29
🟡 725.split-linked-list-in-parts
🏷️ Tags
#linked_list
Description
Given the
The length of each part should be as equal as possible: no two parts should have a size differing by more than one. This may lead to some parts being null.
The parts should be in the order of occurrence in the input list, and parts occurring earlier should always have a size greater than or equal to parts occurring later.
Return an array of the
Example
🟡 725.split-linked-list-in-parts
🏷️ Tags
#linked_list
Description
Given the
head of a singly linked list and an integer k, split the linked list into k consecutive linked list parts.The length of each part should be as equal as possible: no two parts should have a size differing by more than one. This may lead to some parts being null.
The parts should be in the order of occurrence in the input list, and parts occurring earlier should always have a size greater than or equal to parts occurring later.
Return an array of the
k parts.Example
Input: head = [1,2,3], k = 5
Output: [[1],[2],[3],[],[]]
Explanation:
The first element output[0] has output[0].val = 1, output[0].next = null.
The last element output[4] is null, but its string representation as a ListNode is [].
Leetcode-cn.com 2021-10-01
🟢 1436.destination-city
🏷️ Tags
#hash_table #string
Description
给你一份旅游线路图,该线路图中的旅行线路用数组
题目数据保证线路图会形成一条不存在循环的线路,因此恰有一个旅行终点站。
Example
🟢 1436.destination-city
🏷️ Tags
#hash_table #string
Description
给你一份旅游线路图,该线路图中的旅行线路用数组
paths 表示,其中 paths[i] = [cityAi, cityBi] 表示该线路将会从 cityAi 直接前往 cityBi 。请你找出这次旅行的终点站,即没有任何可以通往其他城市的线路的城市。题目数据保证线路图会形成一条不存在循环的线路,因此恰有一个旅行终点站。
Example
输入:paths = [["London","New York"],["New York","Lima"],["Lima","Sao Paulo"]]
输出:"Sao Paulo"
解释:从 "London" 出发,最后抵达终点站 "Sao Paulo" 。本次旅行的路线是 "London" -> "New York" -> "Lima" -> "Sao Paulo" 。
Leetcode.com 2021-09-30
🟡 698.partition-to-k-equal-sum-subsets
🏷️ Tags
#bit_manipulation #memoization #array #dynamic_programming #backtracking #bitmask
Description
Given an integer array
Example
🟡 698.partition-to-k-equal-sum-subsets
🏷️ Tags
#bit_manipulation #memoization #array #dynamic_programming #backtracking #bitmask
Description
Given an integer array
nums and an integer k, return true if it is possible to divide this array into k non-empty subsets whose sums are all equal.Example
Input: nums = [4,3,2,3,5,2,1], k = 4
Output: true
Explanation: It's possible to divide it into 4 subsets (5), (1, 4), (2,3), (2,3) with equal sums.
Leetcode-cn.com 2021-10-02
🟢 405.convert-a-number-to-hexadecimal
🏷️ Tags
#bit_manipulation #math
Description
给定一个整数,编写一个算法将这个数转换为十六进制数。对于负整数,我们通常使用 补码运算 方法。
注意:
十六进制中所有字母(
十六进制字符串中不能包含多余的前导零。如果要转化的数为0,那么以单个字符
给定的数确保在32位有符号整数范围内。
不能使用任何由库提供的将数字直接转换或格式化为十六进制的方法。
undefined
🟢 405.convert-a-number-to-hexadecimal
🏷️ Tags
#bit_manipulation #math
Description
给定一个整数,编写一个算法将这个数转换为十六进制数。对于负整数,我们通常使用 补码运算 方法。
注意:
十六进制中所有字母(
a-f)都必须是小写。十六进制字符串中不能包含多余的前导零。如果要转化的数为0,那么以单个字符
'0'来表示;对于其他情况,十六进制字符串中的第一个字符将不会是0字符。 给定的数确保在32位有符号整数范围内。
不能使用任何由库提供的将数字直接转换或格式化为十六进制的方法。
undefined
百度百科
补码_百度百科
计算机中的有符号数有三种表示方法,即原码、反码和补码。三种表示方法均有符号位和数值位两部分,符号位都是用0表示“正”,用1表示“负”,而数值位,三种表示方法各不相同。在计算机系统中,数值一律用补码来表示和存储。原因在于,使用补码,可以将符号位和数值域统一处理;同时,加法和减法也可以统一处理。