Coders Packet

Listing of packets of source code submitted by coders

Performing hybrid sorts using C++

Sorting the given elements using C++ , which has better time complexity than regular Merge and Quick Sorts .

Getpass Module in Python

Getpass module has two main functions one is to find the existing user and the other is to hide the password from the terminal.

String alignment in Python using ljust(), rjust() and center()

In this article, we are going to explore ljust, rjust and center methods in Python to align a given string just like we do in Microsoft word to left, right, or center align a given selected text.

Simple GUI Calculator in Python using Tkinter

This python project is used to compute arithmetic operations on two numbers such as addition, subtraction, multiplication, and division by using the Tkinter module.

Check if a number is an Armstrong Number or not in PYTHON

A Python implementation to check whether the input number is an Armstrong number (a number that is equal to the sum of its digits each raised to the power of the number of digits) or not.

Check if a number is a Krishnamurthy Number or not in PYTHON

A Python implementation to check whether the input number is a Krishnamurthy number (a number that is equal to the sum of the factorial of each of its digits) or not. 

Real-Time Currency Converter in Python

This Python Code acts as a Real-Time Currency Converter using Tkinter, enabling the user to keep track of changes in the market values.

Age calculator in Java using Period class

Age calculator estimates the age of a person from the Date of birth using LocalDate objects, period class, and between() method.

Student Percentage To Grade Converter Using Java

Student percentage to grade converter is the converter developed using "Java Programming Language", that converts the percentage obtained by the student in the examination into the proper grade.

Hangman Game in Python

This Hangman Game in Python is used to guess the names of characters of MARVEL superheroes and DC superheroes and supervillains.

Rabin Karp String Matching Algorithm Using Java

Rabin Karp string matching algorithm is an algorithm developed using "Java-Programming-Language" used for searching a pattern in a given text/string. 

C++ programe for Tic-Tac-Toe

This is a C++ code for the popular game Tic-Tac-Toe. It is a two-player game. After the game is finished you can choose to start a new game or exit.