How to write paragraphs and assign it to a variable/name in Python?You may have encountered challenges when you want to assign a paragraph (which has line breaks, different words like for, in , and, etc…Nov 18, 2023Nov 18, 2023
Sieve of Eratosthenes’ method of finding prime numbers: a python codeSieve of Eratosthenes is one of the most popular method of finding prime numbers less than or equal to the given number. This method…Nov 6, 2023Nov 6, 2023
Binary Search Algorithm: a python recursive codeBinary search algorithm assumes that (a) the list/array is sorted either ascendingly or descendingly (b) All the elements in the list/array…Nov 5, 2023Nov 5, 2023
Three common types of Sorting Algorithms; a python codeSorting is an important data operation where data mainly numerical or string are sorted either in ascending or descending order based on…Nov 5, 2023Nov 5, 2023
Python code to convert Roman numerals into an integerThis coding challenge was taken from leetcode.com :Oct 30, 2023Oct 30, 2023
Analytical concept of L’Hôpital’s rule and LimitL’Hôpital’s rule is one of the important concept in the calculus which enable us to find definite value of ratio of functions for certain…Oct 23, 2023Oct 23, 2023
Python Code for Guass-Seidel MethodGauss-Seidel method is one of the common iterative methods to find solution of linear systems. Its working principle fairly simple, just…Oct 15, 2023Oct 15, 2023
Python Code to check if a Matrix is diagonally dominantIn numerical methods, especially in Iterative Method — Gauss-Seidel Method, diagonal dominance is necessary condition for the method to…Oct 15, 2023Oct 15, 2023