Coders Packet

Listing of packets of source code submitted by coders

Coin toss experiment using Python

Checking if tossing a fair coin n times leads to probability of heads converging to 1/2, when n is very large(tends to infinity) using python. The program depicts the strong law of large numbers

Repeating DNA subsequences using Sliding Window Technique in C++

Finding repeating subsequences of size 10 from a given DNA sequence using sliding window technique in C++

Python program to convert number of days, hours, minutes and seconds to seconds

Developing a program that reads the number of days, hours, minutes, and seconds from the user. Calculate and display the total number of seconds represented by that duration.

Currency Converter in Java using Swing

In this Project we are going to Develop a Currency Converter in Java by using Swing Framework. This project is designed to convert one amount currency into another currency amount.

Reddit autonomous bot using Python

Python file consists of reddit bot to autonomously reply to posts with random jokes and also it lets people know the COVID stats of specific places

Currency Converter using Java

This code will help you to convert currencies as per the latest currency rates of different countries.

Bubble sort in Python

Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order.

Deleting Every Kth Node in a Circular Linked List in Java

In this Java post, we will be learning how to delete every kth node in a Circular Linked List and find the last remaining node value.

Cryptogram using Java Swing, AWT and File Handling in Java

In this Java tutorial, we are going to develop a Cryptogram that converts Morse and Tap code to the English language & vice versa. This project uses some Java swing functionalities.

String Encoding and Decoding in Python using Tkinter

This project is created in Python using the Tkinter library for GUI. It allows the user to encode and decode the input string. The libraries used are Tkinter and Base64.

Gym-Workout tracking Android Application using Java Source code

Java source code of an Android app in which users can see different workout routines, add or remove different activities to their daily schedule ,and track their activities.

Create a calculator using Python GUI

This packet contains two files one icon image and another is a Python code to run a calculator GUI in Python based on Tkinter.