https://github.com/okelleydevelopment/combinatorics
A couple scripts written during the summer of 2020 that can calculate combinations and permutations.
https://github.com/okelleydevelopment/combinatorics
Last synced: 3 months ago
JSON representation
A couple scripts written during the summer of 2020 that can calculate combinations and permutations.
- Host: GitHub
- URL: https://github.com/okelleydevelopment/combinatorics
- Owner: OkelleyDevelopment
- Created: 2020-11-07T06:06:54.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-07T06:29:40.000Z (over 5 years ago)
- Last Synced: 2025-01-16T23:06:58.115Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Combinatorics
## Motivation
Combinatorics, in particular Combinations and Permutations, were the weakest point
for me when taking my discrete mathematics course. I wrote these scripts in an effort to automate the process
and improve my current understanding..
## Prerequisites
* Python3.0 or higher
## Program Execution
The options are:
- `combinations.py`
- `permutations.py`
```sh
python3 .py
```
## Project Reflection
These scripts were fun to write and helped reinforce the math behind permutations
and was neat making a brute force algorithm for all possible combinations. At a
later date, I might fix up combinations to have more valuable information for
the user.