Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/hctilg/recursive_build_sum
- Owner: hctilg
- License: gpl-3.0
- Created: 2024-03-09T17:37:20.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-12T01:26:38.000Z (10 months ago)
- Last Synced: 2024-11-07T11:47:07.758Z (about 2 months ago)
- Topics: recursive-algorithm
- Language: Rust
- Homepage:
- Size: 62.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)