Array Problems
In this article we will be solving problems on arrays EASY QUESTIONS Smallest Missing Multiple of K class Solution { public: int missingMultiple(vector<int>& nums, int k) { unordered_set<int> s(nums.begin(), nums.end()); while(tr...
Oct 7, 202510 min read60