zoukankan      html  css  js  c++  java
  • Nine Digits Expression

    Problem:

    Insert + ,-,*,/ signs as necessary in the string 123456789 to form an expression that evaluates to a certain number.

    Answer:

    It returns:

    Solutions 1:    1*2345*6/7+8-9=2009
    Solutions 2:    1/2*3*4*5*67+8-9=2009
    Solutions 3:    1*2/3*45*67+8-9=2009
    3 solutions were found!

    Solutions 1:    9*8-7+6*54*3*2*1=2009
    Solutions 2:    9+8*7+6*54*3*2*1=2009
    Solutions 3:    9*8-7+6*54*3*2/1=2009
    Solutions 4:    9+8*7+6*54*3*2/1=2009
    4 solutions were found!

  • 相关阅读:
    幸福之路
    mysql8.0.25安装配置教程(windows 64位)
    解决git@gitee.com: Permission denied (publickey).
    python路径拼接os.path.join()函数的用法
    如何正确的看待Python里的GIL锁
    安装激活Golang
    Django的Orm操作数据库
    爬虫技术栈点
    Django
    Python/数据库/Django笔记
  • 原文地址:https://www.cnblogs.com/fengju/p/6336215.html
Copyright © 2011-2022 走看看