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 hamming distance (number of bits in the same position that differs in two numbers) in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
    Public Shared Function hamming_distance(ByVal num1 As Integer, ByVal num2 As Integer) As Integer
        Dim xr As Integer = num1 Xor num2
        Dim result As Integer = 0

        While xr <> 0
            result += xr And 1
			xr = xr >> 1
        End While

        Return result
    End Function

    Public Shared Sub Main(ByVal args As String())
        Dim num1 As Integer = 9
        Dim num2 As Integer = 14
		
        Console.Write(hamming_distance(num1, num2))
    End Sub
End Class


' run:
'
' 3
'

 



answered Feb 6, 2024 by avibootz
...