Algorithmish

Computational algorithm archive _

			
			

#include<stdio.h>

int main() {

  printf("Random prime number: %d",randPrime());

  return 0;

}

Exploration starts here ...|

About

Algorithmish is a random collection of algorithms. While working on large projects, we stumble upon many situations when a small chunk of help can give us massive progress. This project is built with the idea of a library containing solutions to various creative computational problems by me over time. But not necessarily will have the most common data structure and algorithms (greedy algorithm, pathfinder, ...). Feel free to use any of these following algorithms while building your project and help to make this archive meaningful.

Resources

Visit GitHub
Email: jayedrafi@outlook.com

Explore

Problems Language
Symmetric Matrix Validator Java
Random password generator Java
Reverse an array (swap) Java
Palindrome validator Java
Word counter Java