Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 974 Bytes

README.md

File metadata and controls

34 lines (20 loc) · 974 Bytes

Data-Structures-and-Algorithms

Data-Structure-and-Algorithms

What are Data Structures?

  • The structures which are used to store data effectively and efficiently are known as Data Structures.

What is Algorithm?

  • Step by Step solution to a proposed problem is known as an Algorithm.

Coding is life


Why DSA?

  • 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";
  }