Jump Search By Md. Babul Hasan (NoYoN) 07 Dec, 2020 Post a Comment # include <iostream> # include <cstdlib> # include <stdio.h> # include <assert.h> # include…
competitive programming How to convert String to Integer && Integer to String By Md. Babul Hasan (NoYoN) 15 May, 2020 Post a Comment String to Integer && Integer to String (Don't use atoi() because it is for character array ; char…
competitive programming How to get GCD and LCM of two numbers By Md. Babul Hasan (NoYoN) 15 May, 2020 Post a Comment GCD and LCM Law: (num1 * num2) = gcd(num1,num2) * lcm(num1,num2); STL C++: …
competitive programming How to Count number of 1's in binary representation By Md. Babul Hasan (NoYoN) 15 May, 2020 Post a Comment Number Of bits in Binary form trick STL (c++): __builtin_popcount ( number ); //…
Competitive Programming Template By Md. Babul Hasan (NoYoN) 15 May, 2020 Post a Comment exit: Ctrl+↩ /**=========================================================================================== …