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 7945613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T00:55:08+00:00 2026-06-04T00:55:08+00:00

Actually it’s quite hard to describe: I want to implement an algorithm which compares

  • 0

Actually it’s quite hard to describe:
I want to implement an algorithm which compares figure by figure of the same position (as I do my calculations in a 10-based system it’s rather the same “power of ten”) of two given integers/number (with the same “length”). It should return the grade of equality as following:

  • 4491 and 1020 = 0
  • 4491 and 4123 = 1
  • 4491 and 4400 = 2
  • 4491 and 4493 = 3
  • 4491 and 4491 = 4
  • 4491 and 4091 = 1

I do not want to do my calculations based on a string-comparison, as I’ll doing this in a way bigger scenario 🙂

  • 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-06-04T00:55:15+00:00Added an answer on June 4, 2026 at 12:55 am
    public static int Compare(int i1, int i2)
    {
        int result = 0;
        while(i1 != 0 && i2 != 0)
        {
            var d1 = i1 % 10;
            var d2 = i2 % 10;
            i1 /= 10;
            i2 /= 10;
            if(d1 == d2)
            {
                ++result;
            }
            else
            {
                result = 0;
            }
        }
        if(i1 != 0 || i2 != 0)
        {
            throw new ArgumentException("Integers must be of same length.");
        }
        return result;
    }
    

    Note: it does not handle negative integers

    Update: fixed after question update

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Actually i want to implement swipe left and right in UIScrollview. i have scrollview
Actually these are 3 questions: Which optimization algorithm should I use to optimize the
Actually, this question seems to have two parts: How to implement pattern matching? How
Actually, I have the task of finding the employees based on the salary rank.
Actually i am working on a image editing software and now i want to
Actually, I want to create an application in C such that 2 people can
Actually i am trying to implement the code on the following website http://www.mathworks.com/matlabcentral/fileexchange/28300 but
Actually i am developing tracking app and want to send Location updates between two
Actually i'm working in a project which need print a test page to a
actually i want to know the info of any folder or file through ant

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.