Nikitasha Shrivastava has Published 196 Articles

Python - Numeric Sort in Mixed Pair String List

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 18-Oct-2023 14:37:33

67 Views

The given problem statement is to perform numeric sorting operations in a mixed pair string list with the help of Python. Sometimes we are required to sort the mixed data type list in Python so this article will be helpful to get the desired sorted form for the given dataset. ... Read More

Python - N Random Tuples list

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 18-Oct-2023 14:30:26

77 Views

The problem statement is to find the N random tuples list using Python functionalities. Sometimes we need to generate some random numbers or we can say random tuples in our daily life applications. So in this problem we can generate random tuples using the random library of Python. Understanding the ... Read More

Python - Number of positions where Substrings Match of Length K

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 17-Oct-2023 14:14:11

73 Views

In the given problem statement we have to find the number of positions on which substrings match of length K using Python programming. So this problem can be helpful to get all the K length substrings from the input string. Understanding the Problem The problem at hand requires an input ... Read More

Python - Nth smallest Greater than K

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 17-Oct-2023 14:13:21

41 Views

The given problem statement is required to find the Nth smallest greater than K using Python. So we can use a combination of iteration and sorting techniques to find the required element. Understanding the Problem The problem at hand is to find the Nth smallest but greater than the number ... Read More

Python - Non-overlapping Random Ranges

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 17-Oct-2023 14:12:30

52 Views

The problem at hand is to find the non overlapping random ranges with the help of Python. Sometimes in Python we need to extract random ranges which are non overlapping. This application will be helpful while working with data. Understanding the Problem In this problem statement we will be given ... Read More

Python - Non-Overlapping occurrences of N Repeated K character

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 17-Oct-2023 14:11:44

47 Views

In this article we have to find the non -overlapping occurrences of N repeated K characters using Python. These kinds of problems are very common while working with strings in Python. Understanding the Problem The problem at hand is to find the non-overlapping occurrences of N repeated K characters. In ... Read More

Python - Non-None elements indices

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 17-Oct-2023 14:09:55

40 Views

The problem at hand is to get the indices of non-none elements in the given input list and implement the solution using Python. Sometimes we need to find the empty of none values in the given dataset so this problem will be helpful to solve these kinds of problems. Understanding ... Read More

Python - Nested Records List from Lists

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 17-Oct-2023 14:08:57

52 Views

The problem at hand is that we have to create an algorithm for getting the nested records list from the given multiple lists with the help of Python. Sometimes we need to combine the given lists for a reason in real life applications. So this problem will be helpful to ... Read More

Python - Nested List to single value Tuple

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 17-Oct-2023 14:07:47

47 Views

In the given problem statement we have to convert the given nested list into a single value tuple with the help of Python functionalities. So we will use different techniques to solve this task in python. Understanding the Problem The problem at hand is to create a single value tuple ... Read More

Python - Nested dictionary Combinations

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 17-Oct-2023 14:06:30

75 Views

In the given problem statement we have to showcase the nested dictionary and its combinations using Python. So we will discuss some examples and understand what exactly a nested dictionary is, how it works and how we can use it. What is a Dictionary in Python? As you may probably ... Read More

Advertisements