黑马程序员技术交流社区

标题: 分享一个有些难度的练习题 [打印本页]

作者: sandwicher    时间: 2015-10-11 22:30
标题: 分享一个有些难度的练习题

Given a string that contains only digits 0-9 and a target value, return all possibilities to add binary operators (not unary) +, -, or * between the digits so they evaluate to the target value.

Examples:

"123", 6 -> ["1+2+3", "1*2*3"] "232", 8 -> ["2*3+2", "2+3*2"]"105", 5 -> ["1*0+5","10-5"]"00", 0 -> ["0+0", "0-0", "0*0"]"3456237490", 9191 -> []

作者: 秦旭辉    时间: 2015-10-12 10:20
这样怎么能赚到分呢




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2