Typescript string search method search(). We can use a regular expression to use with search or we can directly search for any substring.
ReadPython program to find the nth number which is square and also cube of another number. Print all numbers from 1 to n which are square and cube of another number.
ReadPython program to convert a key-value string to a dictionary. We will learn how to do that by using split and by using map in python.
ReadPython program to count the total number of repeating digits in a given number. We will learn two different ways to solve this problem.
ReadPython program to count digits in a string. We will learn how to do that by using a loop, using sum(), using map() and using regular expression.
ReadIn this post, we will learn how to use the max() function with different examples. We will use it to find the maximum of n different values.
ReadIn this post, we will learn how to use the min() function with different examples. We will use it to find the minimum of n different values.
ReadThree different ways in swift to find the smallest of three numbers. We will learn how to find the smallest value by using a separate function and by using min function
ReadThree different ways in swift to find the largest of three numbers. We will learn how to find the largest value by using a separate function and by using max function
ReadLearn how to check if a series is Geometric progression or GP or Geometric series in Python. This program will take one array and print one boolean value based on the input array.
Read