- The structures which are used to store data effectively and efficiently are known as Data Structures.
- Step by Step solution to a proposed problem is known as an Algorithm.
- It improves your logic building , time and space complexity of your code.
- Simply it helps you to make your code scallable and efficient.
- Read this blog for a general overview Article on DevPost
#include <iostream>
using namespace std;
int main(){
cout<<"Shahzaneer Ahmed taking on Data Structures and Algorithm";
}