LeetCode Weekly Contest 72是LeetCode举办的第七十六场正式周赛,共4道题目,比赛时长1.5小时。
比赛链接:https://leetcode.com/contest/leetcode-weekly-contest-72/
题解列表:
LeetCode 784. Letter Case Permutation
LeetCode 785. Is Graph Bipartite?
LeetCode Weekly Contest 72是LeetCode举办的第七十六场正式周赛,共4道题目,比赛时长1.5小时。
比赛链接:https://leetcode.com/contest/leetcode-weekly-contest-72/
题解列表:
LeetCode 784. Letter Case Permutation
LeetCode 785. Is Graph Bipartite?
LeetCode 786. K-th Smallest Prime Fraction
A sorted list A
contains 1, plus some number of primes. Then, for every p < q in the list, we consider the fraction p/q.
What is the K
-th smallest ...
LeetCode 787. Cheapest Flights Within K Stops
There are n
cities connected by m
flights. Each fight starts from city u
and arrives at v
with a price w
.
Now given all the cities and fights, together with starting ...
LeetCode 785. Is Graph Bipartite?
Given a graph
, return true
if and only if it is bipartite.
Recall that a graph is bipartite if we can split it's set of nodes into two independent subsets A and B such that ...
LeetCode 784. Letter Case Permutation
Given a string S, we can transform every letter individually to be lowercase or uppercase to create another string. Return a list of all possible strings we could create.
Examples: Input: S = "a1b2" Output ...