vote up -4 vote down star

Possible Duplicate:
Algorithm about number combination problem

Write a function that given a string of digits and a target value, prints where to put +'s and *'s between the digits so they combine exactly to the target value. Note there may be more than one answer, it doesn't matter which one you print.

Examples:

"1231231234",11353 -> "12*3+1+23*123*4" 
"3456237490",1185 -> "3*4*56+2+3*7+490" 
"3456237490",9191 -> "no solution"
flag

51% accept rate
3  
Dude, at least remove the "1." before you copy-paste your homework question into SO. – Joe Chung Sep 7 at 1:03
Actually, I believe this question has been asked here before, almost exactly the same way. – Chris Lutz Sep 7 at 1:04
SO will not write your code for you. – Jed Smith Sep 7 at 1:05
Yep, stackoverflow.com/questions/742566/… – Alex Martelli Sep 7 at 1:05
2  
Not like me to be a nit pickin pedant -- BUT. You do not solve an algorithm. An algorithim is a solution. More specifically it is a combination of formulas and methods which solve a given problem. – James Anderson Sep 7 at 1:13
show 1 more comment

closed as exact duplicate by Alex Martelli, Chris Lutz, Ngu Soon Hui, Artelius, Hamish Smith Sep 7 at 1:09

1 Answer

vote up 2 vote down

I think that you'll probably just have to take a brute force approach to this - trying all possible combinations until you come up with a formula that works.

You don't define what the allowable operators are - is it just addition and multiplication or subraction and division as well?

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.