Given two integers x1 and x2, return true if the numbers written with no leading zeros contain the same digits. That is, the string representation of one number is a permutation of the string representation of the other.

For example

    x1 = 1234;
    x2 = 4321;
    tf = same_digits(x1,x2)

would output

    tf = true

whereas

    x1 = 1234;
    x2 = 1244;
    tf = same_digits(x1,x2)

would output

    tf = false

Solution Stats

665 Solutions

267 Solvers

Last Solution submitted on Jun 17, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...