leetcode.com 2026-08-25
🟢3718.smallest-missing-multiple-of-k
🏷️ Tags
#array #hash_table
Telegraph
smallest-missing-multiple-of-k
Given an integer array nums and an integer k, return the smallest positive multiple of k that is missing from nums. A multiple of k is any positive integer divisible by k. Example 1: Input: nums = [8,2,3,4,6], k = 2 Output: 10 Explanation: The multiples…
August 25, 2026 41