csc-510-group-25
Homework 01 - Writing a good repo
Science Score: 67.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 3 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.4%) to scientific vocabulary
Repository
Homework 01 - Writing a good repo
Basic Info
- Host: GitHub
- Owner: divyagiridhar
- License: mit
- Language: Python
- Default Branch: main
- Size: 95.7 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 1
Metadata Files
README.md
Basic Mathematical Algorithms
Table of Contents
Overview
Here we have created a repo which includes Python programs for some mathematical algorithms, i.e. Factorial , Fibonacci
The product of all positive integers less than or equal to a given number. The factorial is denoted by n!
For Example : Factorial of 5! = 5 * 4 * 3 * 2 * 1
A set of integers that starts with 0 followed by a 1, then by another 1, and then by a steadily increasing numbers.
A fibonacci sequence can be defined by following 3 equations :
n0 = 0 (For 1st Integer)
n1 = 1 (For 2nd Integer)
n(i) = n(i-1) + n(i-2) (For all other integers)
For Example : 0, 1, 1, 2, 3, 5, 8, 13, 21, 32, . . .
Getting Started
To run these programs make sure you have python version 3 and pytest version 7 installed.
License
MIT License is used in this project.
| Home | Factorial | Fibonacci Series | ©2022 |
CSC510 Software Engineering - Homework 1
| Dhruv Patel | Manan Patel | Ravi Ghevariya | Divya Giridhar | Shreyas Titus |
Owner
- Login: divyagiridhar
- Kind: user
- Repositories: 5
- Profile: https://github.com/divyagiridhar
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use our code, please cite it as below." authors: - family-names: "Titus" given-names: "Shreyas" - family-names: "Giridhar" given-names: "Divya" - family-names: "Patel" given-names: "Dhruv" - family-names: "Ghevariya" given-names: "Ravi" - family-names: "Patel" given-names: "Manan" title: "Software Engineering: Assignment 1 - Group 25:"
GitHub Events
Total
Last Year
Dependencies
- pytest ==7.1.2
- actions/checkout v3 composite
- actions/setup-python v3 composite