Category: ACM-ICPC

01
Nov
2015

LCM – Least Common Multiple

Multiple of 3 is 3×1=3 3×2=6 3×3=9 3×4=12 3×5=15 3×6=18 3×7=21 3×8=24 3×9=27 3×10=30 Multiple of 4…

01
Nov
2015

GCD Greatest Common Divisor(Factor)/Highest Common Factor

এখানে লজিকটা হচ্ছে…Here the logic is: For 12: 1×12=12 2×6=12 3×4=12 So factor of 12=1,2,3,4,6,12 (We don’t…

07
Aug
2015

Sorting Algorithm : Insertion Sort

From this two video I tried to re learn and implement the algorithm with pseudo code. Pseudocode:…