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

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,753 questions

55,518 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 145 views
2 answers 188 views
1 answer 158 views
1 answer 170 views
3 answers 248 views
1 answer 134 views
1 answer 133 views
...