https://github.com/samedwardes/sqrt
https://github.com/samedwardes/sqrt
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/samedwardes/sqrt
- Owner: SamEdwardes
- Created: 2020-02-24T19:25:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-24T19:52:52.000Z (over 6 years ago)
- Last Synced: 2025-02-12T17:50:04.178Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sqrt
A GitHub repository for us to use to practice branching and merging. Developed for use in the UBC DSCI 524 - Collaborative Software Development course.
## Usage:
For example, to calculate the square root of 25:
```
python sqrt.py --n=25
```
```
5.0
```
## Dependencies:
- Python 3 or greater
- Python pacakges:
- `docopt`
- `math`
## Credits
This example was derived from an example originally developed by [Meghan Allen](https://www.cs.ubc.ca/~meghana/).