Coders Packet

Listing of packets of source code submitted by coders

Week Day Finder in C++

A Project Implemented in C++ in which a User can find the Weekday as per Input Date Given.

All Pair Shortest Paths Finder in C++ using Floyd-Warshall Algorithm

This project helps in finding the shortest paths using the Floyd-warshall algorithm. The project implementation is made in the C++ language.

Number to Word Converter in Java

It is a program to convert any decimal or Integer numbers to Word. It only accepts a valid decimal or integer number.

Todo List Using JAVA & JAVAFX

This is a Todo List application that can hold your todo Items. I made this using JavaFX and Java, It Can Hold, Short, Delete your data.

SNAKE Game Using Java Swing

This is a Basic Snake Game project made by using Java Swing, AWT. I have also put the JAR File that you can Download and Enjoy the Game.

Real-Time Gold Price Tracker in Python

This Package in Python allows the user to keep track of the real-time Value of Gold and Silver.

Color Coding in C++

Here, we get to know about how to add color to text and the background in C++. The header file for this command is windows.h or stdlib.h in C++.

C++ header files for ray tracing

Collection of C++ header files for ray tracing which can be used to create computer graphics involving metal surface, glass surface, dielectrics, rubber, light source etc.

JavaScript Tawk Mini-chat

Small "JavaScript Tawk Mini-chat" where the user/customer can send messages to the admin/holder of a particular website.

Digital Dictionary in C

The full-blown dictionary functions provide Adding /searching/suggested words data elements inside the dictionary at a faster speed. The project implementation is made in the C language.

Contact Management (C++)

This project(C++), involves all types of features from which we can handle contact-related info like we can add a name, email, and phone number.

Dynamic Programming explained through the Fibonacci series example in C++

We will consider the problem to find the N-th Fibonacci number and solve it through recursion and then by using dynamic programming in two different ways(Memoization and Tabulation)