Found 34494 Articles for Programming

Difference between Alias and Duplicate

Md. Sajid
Updated on 16-Aug-2023 13:17:42

191 Views

Alias and duplicate are two terms that are frequently used to refer to similar or identical entities in many environments, but they have diverse meanings and implications. Read this article to find out more about Alias and Duplicate and how they are different from each other. What is an Alias? In numerous situations, an alias refers to a different name or identifier used to represent the same object. It is similar to a nickname or alias for an object, person, or resource, allowing for easy access and reference. The concept of aliases is used in many fields, including computing, ... Read More

XOR of two numbers after making the length of their binary representations equal

Eva Sharma
Updated on 16-Aug-2023 11:00:13

141 Views

XOR, or exclusive OR, is a boolean logic operation which is used in generating parity bits for error checking, fault tolerance, etc. Various symbols are used to represent this operation: ^, ⊕, ⊻, etc. XOR Logic The XOR operation is only true if the two arguments are different. This means that the XOR of the same bits is 0, and that of different bits is 1. Same bits − 0 ^ 0 = 0 1 ^ 1 = 0 Different bits − 0 ^ 1 = 1 1 ^ 0 = 1 Problem Statement Given two numbers, a and b, ... Read More

The time when the minute hand and the hour hand coincide after a given hour

Eva Sharma
Updated on 16-Aug-2023 10:57:39

298 Views

When the minute hand moves from 12 to 12 in one hour, the hour hand also moves from the previous hour to the next. Hence, every hour, the minute hand and the hour hand coincide once. Problem Statement Given an input hour, find the time in minutes when the hour hand and the minute hand coincide within the next hour. Examples Input − Hour = 4 Output − Coinciding time: 240/11 minutes. We will discuss the explanation further with the approach. Input − Hour = 5 Output − Coinciding time: 300/11 minutes. Explanation and the Approach ... Read More

Sum of the series 5+55+555+.. up to n terms

Eva Sharma
Updated on 16-Aug-2023 10:56:05

310 Views

5, 55, 555, ... is a series that can be derived from geometric progression and, thus, computed with the help of GP formulae. Geometric progression is a type of series in which each succeeding term is the product of some specific term (ratio) with the preceding term. We will utilize the knowledge of GP, to find the sum of the given series. Problem Statement Given a number n, find the sum of the series 5+5+555+... up to n terms. Examples Input − N = 3 Output − 595 Explanation 5 + 5 + 555 = 595. ... Read More

Sum of products of all combinations taken (1 to n) at a time

Eva Sharma
Updated on 16-Aug-2023 10:54:45

110 Views

There can be multiple combinations of numbers if taken 1 to n at a time. For example, if we take one number at a time, the number of combinations will be nC1. If we take two numbers at a time, the number of combinations will be nC2. Hence, the total number of combinations will be nC1 + nC2 +… + nCn. To find the sum of all combinations, we will have to use an efficient approach. Otherwise, the time and space complexities will go very high. Problem Statement Find the sum of products of all the combinations of numbers taken ... Read More

Sort on the basis of number of factors using STL

Eva Sharma
Updated on 16-Aug-2023 10:50:58

96 Views

Sorting a vector using STL is a piece of cake. We can use the famous sort() function to perform the task. The real challenge is to count the number of factors for each number. A factor is a number which divides another number completely, i.e. with zero remainder. Traversing through all the numbers to count the factors might be an approach but we will try to optimize and reach efficient solutions in this article. Problem Statement Sort a given array based on the number of factors of each number in increasing order. Thus, the number having the lowest number of ... Read More

P-Smooth Numbers or P-friable Number

Eva Sharma
Updated on 16-Aug-2023 10:47:44

87 Views

A number is p-friable for p-smooth if all of its prime factors are less than or equal to p. For example, 1620 is a 5-smooth number. Because, the prime factors of 1620 are: 2, 3, and 5. As it can be seen, 1620 is also a 7-smooth and 11-smooth number. Problem Statement Given two numbers N and P, we have to check if N is a P-friable number or not. Examples Input − N = 50, P = 7 Output − Yes, 50 is a 7-friable number. Explanation 50 can be prime factorized as: 5*5*5*5. Hence, ... Read More

Adding double tap on any widget in Python Kivy

Priya Sharma
Updated on 14-Aug-2023 14:11:23

194 Views

Python Kivy is a powerful framework for building multi-touch applications, allowing developers to create interactive and intuitive user interfaces. One common requirement in many applications is the ability to detect and respond to double tap gestures on specific widgets. Setting up the Kivy Application Before diving into the implementation of double tap functionality, we need to set up a basic Kivy application. This step provides a foundation for the subsequent code implementation. We start by creating a new Python file and importing the necessary modules from the Kivy framework − from kivy.app import App from kivy.uix.boxlayout import BoxLayout from ... Read More

Adding custom dimension in Matrix using Python

Priya Sharma
Updated on 14-Aug-2023 14:29:59

128 Views

Matrices are fundamental data structures in linear algebra and are extensively used in various scientific and mathematical computations. A matrix is a rectangular array of numbers arranged in rows and columns. It is commonly represented as a two-dimensional grid. However, there are scenarios where we may need to manipulate matrices with additional dimensions, either for data transformation or to perform advanced mathematical operations. Python, being a versatile programming language, offers a rich ecosystem of libraries that provide powerful tools for matrix operations. One such library is NumPy, which stands for Numerical Python. NumPy provides efficient and convenient tools for working ... Read More

Adding Custom Column to Tuple list in Python

Priya Sharma
Updated on 14-Aug-2023 14:36:25

172 Views

With regards to data manipulation and analysis, Python stands out as a versatile and powerful programming language. When working with data, it is often necessary to transform and enhance it to extract meaningful insights. One common task is adding a custom column to a tuple list, where each tuple represents a record or an entity with multiple attributes. By augmenting a tuple list with an additional column, we can enrich the data and make it more informative for further analysis or processing. We will delve into various approaches for adding a custom column to a tuple list in Python. To ... Read More

Advertisements