All Posts
Leetcode 2351: First Letter to Appear Twice
Given a string s of lowercase English letters, return the first letter that appears twice.
Leetcode 2352: Equal Row and Column Pairs
Given a square matrix of integers, find the number of pairs of row and column indices where the row and column are equal in terms of their elements and their order.
Leetcode 2353: Design a Food Rating System
Design a food rating system that allows modification of food ratings and can return the highest-rated food item for a given cuisine. In case of a tie, the lexicographically smallest food item should be returned.
Leetcode 2357: Make Array Zero by Subtracting Equal Amounts
You are given a non-negative integer array nums. In each operation, you must:
- Choose a positive integer x that is less than or equal to the smallest non-zero element in nums.
- Subtract x from every positive element in nums.
Return the minimum number of operations to make every element in nums equal to 0.