Leetcode Daily Question
@leetcodeDailyQuestionChannel
2.46K
subscribers
517
files
2.16K
links
Why are you asking me to do Leetcode for this CSS job?
Download Telegram
Join
Leetcode Daily Question
2.46K subscribers
Leetcode Daily Question
leetcode.com
2025-12-09
🟡
3583.count-special-triplets
🏷️
Tags
#array
#hash_table
#counting
Telegraph
count-special-triplets
You are given an integer array nums. A special triplet is defined as a triplet of indices (i, j, k) such that:
Source
Solution
Leetcode Daily Question
leetcode.cn
2025-12-11
🟡
3531.count-covered-buildings
🏷️
Tags
#array
#hash_table
#sorting
Telegraph
count-covered-buildings
给你一个正整数 n,表示一个 n x n 的城市,同时给定一个二维数组 buildings,其中 buildings[i] = [x, y] 表示位于坐标 [x, y] 的一个 唯一 建筑。 如果一个建筑在四个方向(左、右、上、下)中每个方向上都至少存在一个建筑,则称该建筑 被覆盖 。 返回 被覆盖 的建筑数量。 示例 1: 输入: n = 3, buildings = [[1,2],[2,2],[3,2],[2,1],[2,3]] 输出: 1 解释:
来源
答案
Leetcode Daily Question
leetcode.com
2025-12-11
🟡
3531.count-covered-buildings
🏷️
Tags
#array
#hash_table
#sorting
Telegraph
count-covered-buildings
You are given a positive integer n, representing an n x n city. You are also given a 2D grid buildings, where buildings[i] = [x, y] denotes a unique building located at coordinates [x, y]. A building is covered if there is at least one building in all four…
Source
Solution
Leetcode Daily Question
leetcode.cn
2025-12-13
🟢
3606.coupon-code-validator
🏷️
Tags
#array
#hash_table
#string
#sorting
Telegraph
coupon-code-validator
给你三个长度为 n 的数组,分别描述 n 个优惠券的属性:code、businessLine 和 isActive。其中,第 i 个优惠券具有以下属性:
来源
答案
Leetcode Daily Question
leetcode.com
2025-12-13
🟢
3606.coupon-code-validator
🏷️
Tags
#array
#hash_table
#string
#sorting
Telegraph
coupon-code-validator
You are given three arrays of length n that describe the properties of n coupons: code, businessLine, and isActive. The ith coupon has:
Source
Solution