Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,955 questions

51,897 answers

573 users

How to get the frequency of smallest array value in C#

1 Answer

0 votes
using System;
using System.Linq;

public class Program
{
	public static void Main(string[] args) {
		int[] arr = new int [] {6, 7, 4, 4, 3, 3, 3, 5, 5, 7, 8, 3, 3, 9, 3};

		int frequency = 0;

		int min = arr.Min();

		for (int i = 1; i < arr.Length; i++) {
			if (arr[i] == min) {
				frequency++;
			}
		}
		Console.WriteLine(frequency);
	}
}



/*
run:
      
6
      
*/



 



answered Aug 4, 2022 by avibootz

Related questions

1 answer 102 views
2 answers 134 views
1 answer 114 views
1 answer 118 views
3 answers 164 views
1 answer 91 views
...