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: about 1 month 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-12T01:26:38.000Z (almost 2 years ago)
- Last Synced: 2024-12-28T05:16:20.986Z (12 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



## Build
```bash
cargo build
```
## Run
```bash
cargo run
```
[Original Project](https://github.com/mahditn2000/recursiveBuildSum)