csc-510-group-25

Homework 01 - Writing a good repo

https://github.com/divyagiridhar/csc-510-group-25

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
Last synced: 6 months ago · JSON representation ·

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
Created over 3 years ago · Last pushed over 3 years ago
Metadata Files
Readme Contributing License Code of conduct Citation

README.md

Basic Mathematical Algorithms

DOI



Table of Contents

  1. Overview
  2. Getting Started
  3. License
  4. Contributors


Overview

Here we have created a repo which includes Python programs for some mathematical algorithms, i.e. Factorial , Fibonacci

  • Factorial
  •      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

  • Fibonacci
  •      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

    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

    requirements.txt pypi
    • pytest ==7.1.2
    .github/workflows/python-app.yml actions
    • actions/checkout v3 composite
    • actions/setup-python v3 composite