Project Euler 52 - Permuted multiples
Project Euler 52 - Permuted multiples
Official link: https://projecteuler.net/problem=52
Thought Process
Thought Process
1 and 2 digit numbers are not possible for obvious reasons. All I do is check every number until I find one that meets the given condition. It's extremely fast so I didn't think too hard for this one.
Interactive Code
Interactive Code
No interactive code for this problem, my code is shown below