Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

lcm in python

def lcm(x, y):
   if x > y:
       greater = x
  else:
       greater = y

  while(True):
       if((greater % x == 0) and (greater % y == 0)):
           lcm = greater
           break
        greater += 1

  return lcm

num1 =int (input("enter the first nummber: "))
num2 = int (input("enter the second number: "))

print("The L.C.M. is",lcm(num1, num2))
Comment

LCS Problem Python

/* A Naive recursive implementation of LCS problem */
#include <bits/stdc++.h>
using namespace std;
 
 
 
/* Returns length of LCS for X[0..m-1], Y[0..n-1] */
int lcs( char *X, char *Y, int m, int n )
{
    if (m == 0 || n == 0)
        return 0;
    if (X[m-1] == Y[n-1])
        return 1 + lcs(X, Y, m-1, n-1);
    else
        return max(lcs(X, Y, m, n-1), lcs(X, Y, m-1, n));
}
 
 
 
/* Driver code */
int main()
{
    char X[] = "AGGTAB";
    char Y[] = "GXTXAYB";
     
    int m = strlen(X);
    int n = strlen(Y);
     
    cout<<"Length of LCS is "<< lcs( X, Y, m, n ) ;
     
    return 0;
}
 
// This code is contributed by rathbhupendra
Comment

PREVIOUS NEXT
Code Example
Python :: python replace date time column 
Python :: how to do alignment of fasta in biopython 
Python :: how to swap a lowercase character to uppercase in python 
Python :: python dependency injection 
Python :: unauthorized vue django rest framework 
Python :: beautifulsoup - extracting link, text, and title within child div 
Python :: pygame borders on window 
Python :: Data Extraction in Python 
Python :: pydantic model from dataclass 
Python :: write an empty block python 
Python :: python re return index of match 
Python :: problème barbier semaphore python 
Python :: Which of the following is not a core data type in Python programming? 
Python :: python pyramid pattern 
Python :: python logical operators code in grepper 
Python :: _tkinter.TclError: invalid command name ".!canvas" 
Python :: flask login attemted_user cant see check_password_correction method 
Python :: ring Do Again Loop 
Python :: how to enter tavble in sal through sql 
Python :: python rational numbers 
Python :: how to access python list 
Python :: python loc id in list 
Python :: dice throw program in python 
Python :: Matplotlib-Object oriented interface 
Python :: REMOVE ALL ROWS FROM DATFRAME WGICH HAS DATA OLDER THAN 3 MONTHS PANDAS 
Python :: image processing and resizing with python 
Python :: sklearn isolationforest 
Python :: while my_input != "exit": 
Python :: how travel a list invertida in python 
Python :: how make aloop in python 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =