Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hctilg/recursive_build_sum

we have a recursive function to print all the ways we can build an input number with adding of our given array numbers.
https://github.com/hctilg/recursive_build_sum

recursive-algorithm

Last synced: 6 days ago
JSON representation

we have a recursive function to print all the ways we can build an input number with adding of our given array numbers.

Awesome Lists containing this project

README

        

# recursive_build_sum

A recursive function to print all the ways can build an input number with sum of given array numbers.

## Preview

![](images/img1.png)
![](images/img2.png)
![](images/img3.png)

## Build
```bash
cargo build
```

## Run
```bash
cargo run
```


[Original Project](https://github.com/mahditn2000/recursiveBuildSum)