Found 34494 Articles for Programming

Scratch Alternatives

Shirjeel Yunus
Updated on 17-Oct-2023 16:18:58

696 Views

What is Scratch? Scratch is a programming language that can be used to create animations for children. The platform comes with a visual interface which can be used to create stories, games., animations, etc. The app is available for free and can be used in seventy languages. The platform has been designed for children aged between 8 and 16 though people of all ages can use it. Price Plans of Scratch Scratch programming language is available for free. Why Scratch alternatives? Students may not get exposure to traditional coding methods and languages Challenges for more advanced students will be ... Read More

JQuery Alternatives

Shirjeel Yunus
Updated on 17-Oct-2023 14:51:44

384 Views

What is JQuery? JQuery is a JavaScript library You can use the library to manipulate HTML documents, add animations, perform event handling, and do a lot more things. JQuery is compatible with many browsers so pages made in one of them will run successfully on other browsers. The aim of designing this library is to make client-side scripting easy. Why JQuery Alternatives? JavaScript commands needed to run JQuery CSS and JavaScript knowledge is required to work on JQuery Debugging a JQuery code is difficult Each update of JQuery has to be downloaded from Google How to ... Read More

Python - Number of positions where Substrings Match of Length K

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

87 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 string in which there are some substrings. So we have to show the number of positions of the substrings match in the given string. For example let’s see the below image − In the above image we can see that the value of K is ‘aaab’ so after counting ... Read More

Python - Nth smallest Greater than K

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

53 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 K with the help of Python. Basically we are required to find the number which is greater than K but it should be the Nth number from the number K in the sorted list. For example we will understand this phenomena with the help of the below image − ... Read More

Python - Non-overlapping Random Ranges

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

80 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 three parameters like starting values, ending value and also the number range. So on the basis of these values we will have to generate the non-overlapping random ranges using Python. Suppose we have a starting value as 1 and ending value is 50 and number range is 2 so the ... Read More

Python - Non-Overlapping occurrences of N Repeated K character

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

51 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 simple terms we will be given a string and in that string there will be some repeated characters so we have to find out the appearances of specific characters and show the count for it. Here N is any character in the given input string and K is the count ... Read More

Python - Non-None elements indices

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

52 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 the Problem In the given problem we have to find the non-none item's indices in the given input lists. This problem can be helpful to filter out none values from the list or whenever we want to perform operations on none items. For example we will be given a list ... Read More

Python - Nested Records List from Lists

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

69 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 solve those problems. Understanding the Logic for the Problem In this problem we will be given two or more lists and we have to combine and form a nested records list by applying the logic. So we will use different approaches to do this task. First we will use the ... Read More

Python - Nested List to single value Tuple

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

61 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 using the nested list and implement the code in Python. Sometimes we need to solve these kinds of problems in competitive programming or in company interviews. The nested list allows us to store multiple sublists in a single list. And a single value tuple means in a tuple there should ... Read More

Python - Nearest K Sort

Nikitasha Shrivastava
Updated on 17-Oct-2023 14:05:13

56 Views

The given problem statement is required to find the nearest of K and sort them as per the value of K using Python. So we will use basic Python to solve this problem. Understanding the Problem The problem at hand is to sort the given items of the list as per the increasing difference from the value of K. And K is the given value which will be used to calculate the difference from each item and arrange the items based on the minimum difference. Let’s understand this problem with an example: So we can see here that ... Read More

Advertisements