How to check two integer has the same digit but in different position | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to check two integer has the same digit but in different position

Let say: Number 1 : 7866 Number from user: 6876 This is consider "same" even tho different position. How can i solve this issue?

5th Mar 2022, 11:16 AM
Jacky
1 Answer
+ 3
Convert both to strings and sort those 2 . Now if both are equal then they are considered same else no. ex: 7899, 9879 Strings "7895", "9875" Sort : "5789", "5789" both are equal hence same.. or find permutations on one number, comapare each to the required number. if match stop. hope it helps...
5th Mar 2022, 12:54 PM
Jayakrishna 🇮🇳