Metadata-Version: 2.1
Name: leonhard
Version: 1.2.0
Summary: A commons library for Project Euler problems.
Home-page: https://github.com/migzpogi/leonhard
Author: Migz Estrella
Author-email: me@migzestrella.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Leonhard
A commons library for Project Euler problems.

## Installation
`pip install leonhard`

## Usage
```python
>>> from leonhard import leonhard
>>> print(leonhard.get_factors_of_positive_integer(10))
[1, 2, 5, 10]
```

## Functionalities
* `get_factors_of_positive_integer`: Gets the factors of a given positive integer
* `generate_fibonacci_sequence`: Generates a Fibonacci sequence
* `is_prime`: Checks if a number is prime or not

## Samples
Sample files are found in `samples/`




