by Vaibhav Taunk | Jun 15, 2022 | Leetcode
Here is the solution to the Contains Duplicate Leetcode problem. Given an array of integers num, return true if a value occurs at least twice in the array and return false if each element is distinct. Example 1: Input: nums = [1,2,3,1] Output: true Example 2: Input:...
by Vaibhav Taunk | Oct 9, 2021 | JavaScript
Micro-frontend architecture is a collection of independently developed UI components that get assembled into a hub or Host page, giving a single-page Application User Experience. This architecture encourages the development team to develop smaller, independent...