Chirag-v09 / Hacktoberfest2024

Join the HacktoberFest 2024 and start making your contributions today! 🎉
GNU General Public License v3.0
13 stars 51 forks source link

Find the number that appears once. #55

Open SiddhiShivale opened 5 days ago

SiddhiShivale commented 5 days ago

Problem Explanation: -

Example 1: Input Format: arr[] = {2,2,1} Result: 1 Explanation: In this array, only the element 1 appear once and so it is the answer.

Example 2: Input Format: arr[] = {4,1,2,1,2} Result: 4 Explanation: In this array, only element 4 appear once and the other elements appear twice. So, 4 is the answer.

Hey @Chirag-v09 I want to contribute in Hactoberfest2024. If you find this problem useful please add a tag to it and assign me the same. I will be solving this problem in java.

SiddhiShivale commented 5 days ago

Added a pull request. Please confirm the changes and add a tag to it. Thankyou