Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
count the occurrence of each distinct item in the array - Seeni
//Rextester.Program.Main is the entry point for your code. Don't change it. //Microsoft (R) Visual C# Compiler version 2.9.0.63208 (958f2354) using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { //array = [1,4,2,5,4,2,5,1,6,2,5,3,8,9,6] //Write a program to count the occurrence of each distinct item in the array? //Builin array functions and LINQ are not allowed. Console.WriteLine("Start here..."); int[] nums = { 1, 4, 2, 5, 4, 2, 5, 1, 6, 2, 5, 3, 8, 9, 6 }; Dictionary<int, int> DupCount = new Dictionary<int, int>(); for (int i = 0; i < nums.Length; i++) { if (DupCount.ContainsKey(nums[i])) { DupCount[nums[i]] += 1; } else { DupCount.Add(nums[i], 1); } } foreach (var d in DupCount) { if(d.Value!=1) Console.WriteLine("Value="+d.Key+" count= "+d.Value); } } } }
run
|
edit
|
history
|
help
0
C# virtual dispose
Сортировка массива
Generics
show IP
Rank
Enemy Spawner
Merge Sort
Hi
How To Get Discord Nitro For Free
test coeur