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 114 views
2 answers 155 views
1 answer 125 views
1 answer 130 views
3 answers 184 views
1 answer 105 views
1 answer 105 views
...