Hi, all
This post is not for question, but just for a fun to Alteryx experts.
I'm looking for somebody who can solve the puzzle 'Make 10' I created before, that was originally prepared for our company's training material but I didn't actually publish because it's too difficult. As it is no worth of keeping it in my 'warehouse' forever, I decided to publish it here.
Here is the description of Make 10 puzzle
=======================================================================================
For the given 4-digit numbers, make 10 according to the following rules. Find how many number of 4-digit numbers can make 10 out of 10,000 4-digit numbers(0000 through 9999).
(1) Regard 4-digit number as four separate 1 digit numbers, and try to make 10 by using only four arithmetic operations(sum(+), substract(-), multiple(*), divide(/)).
(2) You can use brackets as many as you want.
(example)
'1234' can make 10 ; 1+2+3+4=10
'1358' can make 10 ; 8+(5-3)x1=10
'1158' can make 10 ; 8/(1-(1/5))=10
'1111' can NOT make 10
'7777' can NOT make 10
Hint: '1234' and '4321' are different number but they are essentially identical in terms of make 10.
=======================================================================================
Input file and answer is given in the attached yxmd file. Looking forward to seeing your solution!
*For your information, though I tried to optimize my solution against this puzzle as much as possible, execution time of my WF could not be shorter than 2minutes...😅