abhisheksarkar30 / great-factorial-calculator

The giant factorial calculator to calculate factorial of numbers which are not supported by normal calculator or JAVA based data types.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

great-factorial-calculator

License: MIT


Let's connect πŸ‘¨β€πŸ’» and forge the future together.😁✌

Show your support a ⭐ is all this repo needs πŸ˜„

Introduction

This is a simple java based calculator tool to get the factorial of a number.

Prerequisites

Java 8+

Usage

Compile and run the application to calculate the desired factorial, using below command.

Strategies

Array Based

This strategy holds a single long Array to hold the result where each cell denotes each digits of the result.
Though this runs on single thread, yet has been recorded as the fastest calculating algorithm.

String Based

This strategy also runs on single thread, but much slower than Array based.

About

The giant factorial calculator to calculate factorial of numbers which are not supported by normal calculator or JAVA based data types.

License:MIT License


Languages

Language:Java 100.0%