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,926 questions

51,859 answers

573 users

How to find the maximum repeating number in array with VB.NET

3 Answers

0 votes
Imports System

Public Class Program
    Public Shared Function MaxRepertingElement(ByVal array As Integer()) As Integer
        Dim size As Integer = array.Length

        For i As Integer = 0 To size - 1
            array(array(i) Mod size) += size
           ' array[i] % size = 3 4 8 3 8 2 3 9 4 4 4 7 7 7 4 
    	   ' array = [3, 4, 23, 48, 83, 2, 3, 54, 34, 19, 4, 7, 7, 7, 4] 
        Next

        Dim max_element As Integer = Integer.MinValue
        Dim repeating As Integer = 0

        For i As Integer = 0 To size - 1
            If array(i) > max_element Then
                max_element = array(i)
                repeating = i
            End If
        Next

        Return repeating
    End Function

    Public Shared Sub Main(ByVal args As String())
        Dim array As Integer() = New Integer() {3, 4, 8, 3, 8, 2, 3, 9, 4, 4, 4, 7, 7, 7, 4}

        Console.Write(MaxRepertingElement(array))
    End Sub
End Class

 
 
 
 
' run:
'
' 4
'

 



answered Aug 28, 2022 by avibootz
edited Aug 28, 2022 by avibootz
0 votes
Imports System
Imports System.Linq

Public Class Program
    Public Shared Sub Main(ByVal args As String())
        Dim array As Integer() = New Integer() {3, 4, 8, 3, 8, 2, 3, 9, 4, 4, 4, 7, 7, 7, 4}
		
		Dim max_reperting_number As Integer = array.GroupBy(Function(n) n).OrderByDescending(Function(n) n.Count()).First().Key
				
        Console.Write(max_reperting_number)
    End Sub
End Class


 
 
 
 
' run:
'
' 4
'

 



answered Aug 28, 2022 by avibootz
0 votes
Imports System
Imports System.Linq

Public Class Program
    Public Shared Sub Main(ByVal args As String())
        Dim array As Integer() = New Integer() {3, 4, 8, 3, 8, 2, 3, 9, 4, 4, 4, 7, 7, 7, 4}
		
		Dim max_reperting_number As Integer = array.GroupBy(Function(n) n) _
			                                  .OrderByDescending(Function(n) n.Count()) _
										      .First().Key
				
        Console.Write(max_reperting_number)
    End Sub
End Class


 
 
 
 
' run:
'
' 4
'

 



answered Aug 28, 2022 by avibootz
...