Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7279041
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T22:57:55+00:00 2026-05-28T22:57:55+00:00

Basically I have and array of integers that vary in size. I need to

  • 0

Basically I have and array of integers that vary in size. I need to compare each number to each other number and display which number is repeated. For example:

Dim ints() As Integer = {1,2,2,5,4,6}

The number that shows up more than once is 2.

How can I run through the array and compare each integer with the numbers in the array. I tried a for loop but it didn’t return the value I was looking for. I am new to VB.NET and do not understand fully.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T22:57:56+00:00Added an answer on May 28, 2026 at 10:57 pm
    Dim ints() As Integer = {1,2,2,5,4,6}
    
    Dim repeatedNumbers = ints.GroupBy(Function(intValue) intValue) _
                              .Where(Function(grp) grp.Count > 1)
    
    For each grp in repeatedNumbers
        Console.WriteLine("Number {0} is repeated {1} times", grp(0), grp.Count)
    Next
    

    What this code does:

    • We first call GroupBy, which groups items by their value. The Function gets the grouping key, in this case we simply group by the array’s value itself. This call returns a sequence of
      groups. There is one group for every unique value in the array. The
      group contains all items that correspond to a unique value. So if a value appears twice in the array, there will be a group which contains two ints with this value.
    • We call Where to filter groups. We only want groups for which the count is greater than one, so that only duplicate values are considered.
    • We then loop through the result. grp(0) gives us the first number in the group (we could have picked any number in the group, since all numbers in a group are the same!) and the Count property gives us the number of repetitions.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I basically have an array of 50 integers, and I need to find out
I have a pretty simple problem. Basically I have an array called $list that
I am learning about arrays, and basically I have an array that collects a
Basically I have this string $str=word1 word2 word3; I need array( 'word1', 'word2', 'word3'
I have a byte array of around 10,000 bytes which is basically a blob
I have a 2-dimensional array of objects and I basically want to databind each
Basically, I have an array like this: val base_length = Array( 0, 1, 2,
Basically, I have an array of keywords, and a piece of text. I am
Basically, I have an array of strings to search for. If it were only
So, basically I have an NSArray . I want to get an array with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.