All Medium Articles
Given integers k, d1, d2 and an integer array arr[]. Starting from number k you are allowed to make jumps of size d1 and d2… Read More
Given a range represented by two positive integers L and R and a positive integer K. Find the count of numbers in the range where… Read More
Securing user accounts is a fundamental aspect of maintaining a robust and secure Linux system. One essential task is changing user passwords regularly to prevent… Read More
Sequential Circuits are those which have the notion of an internal state. This notion of Internal State is necessary because in sequential circuits, the output… Read More
Given an array of integers. Find an integer X which is the divisor of all except for exactly one element in the given array. Note:… Read More
lsmod command is used to display the status of modules in the Linux kernel. It results in a list of loaded modules. lsmod is a… Read More
Prerequisites : Introduction to tkinter | Find current weather of any cityPython offers multiple options for developing GUI (Graphical User Interface). Out of all the… Read More
Python Pandas is a data analysis library. It can read, filter and re-arrange small and large datasets and output them in a range of formats… Read More
Let’s see how to split a text column into two columns in Pandas DataFrame. Method #1 : Using Series.str.split() functions. Split Name column into two… Read More
numpy.partition() function is used to create a partitioned copy of input array with its elements rearranged in such a way that the value of the… Read More
Prerequisite: Create and Write on an excel sheetXlsxWriter is a Python library using which one can perform multiple operations on excel files like creating, writing,… Read More
Prerequisite: Create and Write on an excel sheet XlsxWriter is a Python library using which one can perform multiple operations on excel files like creating,… Read More
The expr command in Unix evaluates a given expression and displays its corresponding output. It is used for: Basic operations like addition, subtraction, multiplication, division,… Read More
The push() method of ConcurrentLinkedDeque class is an in-built function in Java which pushes an element onto the stack represented by this deque (in other… Read More
Prerequisite: Create and Write on an excel sheetXlsxWriter is a Python library using which one can perform multiple operations on excel files like creating, writing,… Read More
XlsxWriter is a Python library using which one can perform multiple operations on excel files like creating, writing, arithmetic operations, and plotting graphs. Let’s see… Read More
In LocalTime class, there are two types of plus() method depending upon the parameters passed to it. plus(long amountToAdd, TemporalUnit unit) plus() method of a… Read More
Styling images in CSS works exactly the same way as styling any element using the Box Model of padding, borders, and margins for the content.… Read More
Given a string str, the task is to encrypt and reverse the string. The string is encrypted by adding every character of the string with… Read More