https://leetcode.com/contest/weekly-contest-420/
3324. Find the Sequence of Strings Appeared on the Screen
class Solution {
public:
vector<string> stringSequence(string target)
https://leetcode.com/contest/weekly-contest-431/
3411. Maximum Subarray With Equal Products
class Solution {
public:
int maxLength(vector<int>& nums) {
int n = nums.
https://leetcode.com/contest/weekly-contest-426/
3370. Smallest Number With All Set Bits
class Solution {
public:
int smallestNumber(int n) {
int ans = 0;
int idx = 31;
https://leetcode.com/contest/weekly-contest-430/
3402. Minimum Operations to Make Columns Strictly Increasing
class Solution {
public:
int minimumOperations(vector<vector<int>>