LeetCode Blind75 #2 - Contains Duplicate (Easy)
Problem Statement
Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct.
Test Cases
TC 1
Input: nums = [1,2,3,1]
Output: true
Explanation: occurrence of 1 is twice in ...
shree8.hashnode.dev2 min read