Coders Packet

Listing of packets of source code submitted by coders

Tokenizing String in Java using Built-in Function

The String Tokenizer class allows an application to break a string into tokens. A token is returned by taking a substring of the string that was used to create the StringTokenizer object.

Shifting All Zero's to the End of the Array Using Java

In this Java post, we will be learning how to move all non-zero elements to the starting of the Array and shift all zero's to the end of the Array by traversing the array only once.

Finding Power of a Number in O(log(n)) using Java

In this Java post, we will be discussing how to find power of a given number. This approach will be more efficient. In this approach will be using a O(log(n)) time complexity algorithm.

Abundant , Automorphic , Friendly pair, Harshad and Strong number using C++

Program to check whether the numbers are Abundant,Automorphic,Friendly pair,Harshad number and Strong Number using C++

Knapsack for large number of elements and capacity in C++

Knapsack for a large number of elements and for a huge capacity using a file system in C++.

Tic Tac Toe Game using Python

It is a game that allows a maximum of two players to play and it is developed completely using the loops concepts that are available in Python.

Getting a list of top five employers for the specific job titles using JavaScript.

In this project, we are going to build a simple and basic job app using HTML, CSS, JavaScript and Node.js that gives you information about the top employers of your job.

Parkinson Disease Classification in Python

In the Parkinson Disease classification, we are classifying whether a patient is having a disease or not by using different machine learning algorithm in Python.

SignUp form using Java swing and JDBC in java

This signUp form is created using java swing library and JDBC(Java Database Connectivity) API. (Here, I am using MySQL to store the signup details of the user)

Credit Card Fraud Detection Using Python

In Credit Card Fraud Detection, I used different machine learning algorithms to check for fraudulent activities of a card in Python.

Python Program to display the Fibonacci sequence up to n-th term

well a Fibonacci sequence or Fibonacci series is the sequence such that the numbers are basically the sum of previous numbers if u have 1,3 in the previous number then the series would be 1+3

Python program to search an element in a doubly linked list

This is basically creating and fundamentally finding a specific element in a doubly-linked list according to the user.