SlideShare a Scribd company logo
1 of 25
Longest Common Subsequence
By
Asif Shahriar
ID: 171-15-8617
#include<stdio.h>
int main()
{
int i=0,j=0,x[100],y[100],c[100][100],mx,ny,k;
printf("Enter the first(x) string lenght: ");
scanf("%d",&mx);
printf("Enter the first(x) string : ");
for(k=1;k<=mx;k++)
{
scanf("%d",&x[k]);
}
printf("Enter the second(y) string lenght: ");
scanf("%d",&ny);
printf("Enter the second(y) string : ");
for(k=1;k<=ny;k++)
{
scanf("%d",&y[k]);
}
for(i=1;i<=mx;i++)
{
c[i][0]=0;
c[0][i]=0;
}
#include<stdio.h>
int main()
{
int i=0,j=0,x[100],y[100],c[100][100],mx,ny,k;
printf("Enter the first(x) string lenght: ");
scanf("%d",&mx);
printf("Enter the first(x) string : ");
for(k=1;k<=mx;k++)
{
scanf("%d",&x[k]);
}
printf("Enter the second(y) string lenght: ");
scanf("%d",&ny);
printf("Enter the second(y) string : ");
for(k=1;k<=ny;k++)
{
scanf("%d",&y[k]);
}
for(i=1;i<=mx;i++)
{
c[i][0]=0;
c[0][i]=0;
}
#include<stdio.h>
int main()
{
int i=0,j=0,x[100],y[100],c[100][100],mx,ny,k;
printf("Enter the first(x) string lenght: ");
scanf("%d",&mx);
printf("Enter the first(x) string : ");
for(k=1;k<=mx;k++)
{
scanf("%d",&x[k]);
}
printf("Enter the second(y) string lenght: ");
scanf("%d",&ny);
printf("Enter the second(y) string : ");
for(k=1;k<=ny;k++)
{
scanf("%d",&y[k]);
}
for(i=1;i<=mx;i++)
{
c[i][0]=0;
c[0][i]=0;
}
#include<stdio.h>
int main()
{
int i=0,j=0,x[100],y[100],c[100][100],mx,ny,k;
printf("Enter the first(x) string lenght: ");
scanf("%d",&mx);
printf("Enter the first(x) string : ");
for(k=1;k<=mx;k++)
{
scanf("%d",&x[k]);
}
printf("Enter the second(y) string lenght: ");
scanf("%d",&ny);
printf("Enter the second(y) string : ");
for(k=1;k<=ny;k++)
{
scanf("%d",&y[k]);
}
for(i=1;i<=mx;i++)
{
c[i][0]=0;
c[0][i]=0;
}
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
i=1 j=1
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0
i=1 j=1
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0
i=1 j=2
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0
i=1 j=3
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0 1
i=1 j=4
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0 1 1
i=1 j=5
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0 1 1
1
i=2 j=1
for(i=1;i<=mx;i++)
{
for(j=1;j<=ny;j++)
{
if(x[i]==y[j])
{
c[i][j]=c[i-1][j-1]+1;
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
}
else
{
c[i][j]=c[i][j-1];
}
}
}
0 0 0 1 1
1 1 1 1 2
1 1 2 2 2
1 1 2 2 3
printf("The lenght of LCS is %d",c[mx][ny]);
0 0 0 1 1
1 1 1 1 2
1 1 2 2 2
1 1 2 2 3
0/1 Knapsack
By
Asif Shahriar
ID: 171-15-8617
0 1 2 3 4 5
0 0 0 0 0 0
0 0
0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 1
w = 1
wi = 2
bi = 3
w-wi = -1
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3
0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 1
w = 1
wi = 2
bi = 3
w-wi = -1
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3
0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 1
w = 2
wi = 2
bi = 3
w-wi = 0
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 1
w = 2,3,4,5
wi = 2
bi = 3
w-wi = 0
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 1
wi = 3
bi = 4
w-wi = -2
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 2
wi = 3
bi = 4
w-wi = -1
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3 4
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 3
wi = 3
bi = 4
w-wi = 0
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3 4 4
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 4
wi = 3
bi = 4
w-wi = 1
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3 4 4 7
0
0
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
i = 2
w = 5
wi = 3
bi = 4
w-wi = 2
if wi<=w and b1 + V[i-1, w-wi] > V[i-1,w]
V[i,w] = b1 + V[i-1,w-wi]
else
V[i,w] = V[ i-1,w]
0 1 2 3 4 5
0 0 0 0 0 0
0 0 3 3 3 3
0 0 3 4 4 7
0 0 3 4 5 7
0 0 3 4 5 7
0
1
2
3
4
weight
I
t
e
m
Item 1 2 3 4
Weight 2 3 4 5
Value 3 4 5 6
Max Value

More Related Content

What's hot

Datamining R 1st
Datamining R 1stDatamining R 1st
Datamining R 1stsesejun
 
PRE: Datamining 2nd R
PRE: Datamining 2nd RPRE: Datamining 2nd R
PRE: Datamining 2nd Rsesejun
 
Datamining r 1st
Datamining r 1stDatamining r 1st
Datamining r 1stsesejun
 
Presentation4
Presentation4Presentation4
Presentation4Jorge707r
 
Algebra 1 Item No 22
Algebra 1 Item No 22Algebra 1 Item No 22
Algebra 1 Item No 22Lappy Doods
 
ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-ssusere0a682
 
Surds & indices in business mathematics
Surds & indices in business mathematics Surds & indices in business mathematics
Surds & indices in business mathematics Dr. Trilok Kumar Jain
 
All about life and death volume 1 - a basic dictionary of life and death - ...
All about life and death   volume 1 - a basic dictionary of life and death - ...All about life and death   volume 1 - a basic dictionary of life and death - ...
All about life and death volume 1 - a basic dictionary of life and death - ...Eases Pe'Ple
 
Getting the MVVM Kicked Out of Your F#'n Monads
Getting the MVVM Kicked Out of Your F#'n MonadsGetting the MVVM Kicked Out of Your F#'n Monads
Getting the MVVM Kicked Out of Your F#'n MonadsRichard Minerich
 
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-ssusere0a682
 
On Bernstein Polynomials
On Bernstein PolynomialsOn Bernstein Polynomials
On Bernstein PolynomialsIOSR Journals
 

What's hot (17)

Datamining R 1st
Datamining R 1stDatamining R 1st
Datamining R 1st
 
PRE: Datamining 2nd R
PRE: Datamining 2nd RPRE: Datamining 2nd R
PRE: Datamining 2nd R
 
Datamining r 1st
Datamining r 1stDatamining r 1st
Datamining r 1st
 
Sol3
Sol3Sol3
Sol3
 
Presentation4
Presentation4Presentation4
Presentation4
 
Algebra 1 Item No 22
Algebra 1 Item No 22Algebra 1 Item No 22
Algebra 1 Item No 22
 
ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-ゲーム理論BASIC 演習6 -仁を求める-
ゲーム理論BASIC 演習6 -仁を求める-
 
Surds & indices in business mathematics
Surds & indices in business mathematics Surds & indices in business mathematics
Surds & indices in business mathematics
 
9 chap
9 chap9 chap
9 chap
 
All about life and death volume 1 - a basic dictionary of life and death - ...
All about life and death   volume 1 - a basic dictionary of life and death - ...All about life and death   volume 1 - a basic dictionary of life and death - ...
All about life and death volume 1 - a basic dictionary of life and death - ...
 
The chain rule
The chain ruleThe chain rule
The chain rule
 
Getting the MVVM Kicked Out of Your F#'n Monads
Getting the MVVM Kicked Out of Your F#'n MonadsGetting the MVVM Kicked Out of Your F#'n Monads
Getting the MVVM Kicked Out of Your F#'n Monads
 
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
【演習】Re:ゲーム理論入門 第11回 -非協力ゲームにおける交渉ゲーム-
 
On Bernstein Polynomials
On Bernstein PolynomialsOn Bernstein Polynomials
On Bernstein Polynomials
 
Integrales solucionario
Integrales solucionarioIntegrales solucionario
Integrales solucionario
 
Kisi2+met num
Kisi2+met numKisi2+met num
Kisi2+met num
 
P9 quotient
P9 quotientP9 quotient
P9 quotient
 

Similar to Longest common sub sequence & 0/1 Knapsack

DynProg_Knapsack.ppt
DynProg_Knapsack.pptDynProg_Knapsack.ppt
DynProg_Knapsack.pptRuchika Sinha
 
Knapsack problem using dynamic programming
Knapsack problem using dynamic programmingKnapsack problem using dynamic programming
Knapsack problem using dynamic programmingkhush_boo31
 
lecture 25
lecture 25lecture 25
lecture 25sajinsc
 
Knapsack problem and Memory Function
Knapsack problem and Memory FunctionKnapsack problem and Memory Function
Knapsack problem and Memory FunctionBarani Tharan
 
3 dot product angles-projection
3 dot product angles-projection3 dot product angles-projection
3 dot product angles-projectionmath267
 
13 - 06 Feb - Dynamic Programming
13 - 06 Feb - Dynamic Programming13 - 06 Feb - Dynamic Programming
13 - 06 Feb - Dynamic ProgrammingNeeldhara Misra
 

Similar to Longest common sub sequence & 0/1 Knapsack (9)

DynProg_Knapsack.ppt
DynProg_Knapsack.pptDynProg_Knapsack.ppt
DynProg_Knapsack.ppt
 
Knapsack problem
Knapsack problemKnapsack problem
Knapsack problem
 
Knapsack problem using dynamic programming
Knapsack problem using dynamic programmingKnapsack problem using dynamic programming
Knapsack problem using dynamic programming
 
lecture 25
lecture 25lecture 25
lecture 25
 
Knapsack problem and Memory Function
Knapsack problem and Memory FunctionKnapsack problem and Memory Function
Knapsack problem and Memory Function
 
0-1 knapsack.ppt
0-1 knapsack.ppt0-1 knapsack.ppt
0-1 knapsack.ppt
 
3 dot product angles-projection
3 dot product angles-projection3 dot product angles-projection
3 dot product angles-projection
 
13 - 06 Feb - Dynamic Programming
13 - 06 Feb - Dynamic Programming13 - 06 Feb - Dynamic Programming
13 - 06 Feb - Dynamic Programming
 
Pascal’s Triangle
Pascal’s TrianglePascal’s Triangle
Pascal’s Triangle
 

Recently uploaded

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 

Recently uploaded (20)

Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 

Longest common sub sequence & 0/1 Knapsack