Get the current date without time in Java

By Sanam Sahoo

Hello, Coders!! In this tutorial, we will discuss the methods of getting the current date without time in Java. The previous versions do have not any way to get a date without the .... Read More

Python program to find the shortest safe route in a path with landmines

By Seepak Kumar

In this Python tutorial, we will go through the program to find the length of the shortest safe route possible from a safe cell in the first column of the matrix to a safe cell in .... Read More

Python program to find Smallest Derangement of Sequence in Heap

By Seepak Kumar

In this tutorial, we will go through a program to compute the lexicographically smallest (earliest in dictionary order) derangement of a sequence in Python. Given a sequence: S = 1.... Read More

Pick a random element from an array in C++

By Sanam Sahoo

In this C++ tutorial, we will learn how we can write a program to pick a random element every time from an array in C++. Let’s briefly discuss the C++ functions that will hel.... Read More

Find Minimum delete operations to make all elements of array same in C++

By Dinesh Kumar

In this tutorial, we are going to learn how to find the minimum delete operations needed to make all elements of an array the same in C++. Here we will see the algorithm and after.... Read More

Smallest element repeated exactly ‘k’ times (not limited to small range) in C++

By Dinesh Kumar

In this tutorial, we are going to learn how to find the smallest element repeated exactly ‘k’ times (not limited to small range) in C++. Here, firstly we will see the algorith.... Read More

Get Current Date and Time in Swift in every possible format

By Saruque Ahamed Mollick

In this tutorial, we will learn how to show the current date and time in various ways in Swift. As a developer, you need to show the current time in any format as per your project .... Read More

Java.lang.Math.tan() Method

By Sai Venkat Kodithyala

In this tutorial, we will learn how to use a tan function in Java. A tangent is nothing but, it is a line that is touching the edge of a circle at one point. Using tan function in .... Read More

Related Posts