All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Numbers
Concatenated Pandigital (Posted on 2023-09-23) Difficulty: 2 of 5
Find all positive integers N such that the concatenation of N and 7N contains each of the 10 digits exactly once.

No Solution Yet Submitted by Larry    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution computer solution | Comment 1 of 2
for n=1000:99999
  ns=char(string(n));
  n7s=char(string(7*n));
  cat=[ns n7s];
  if length(cat)==10
    if length(unique(cat))==10
      disp([n 7*n])
    end
  end
end

finds n = 14076; 7*n = 98532.

  Posted by Charlie on 2023-09-23 08:58:01
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (9)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information