Skip to content

Commit

Permalink
Updated template code🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
KaranSiddhu committed Feb 20, 2022
1 parent e417173 commit 4eb83b7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Learning C++ with DSA/practice/code.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@ using namespace std;

//NOTE This is a very simple template for beginners
void solution(){
//Your Code Here
cout << "Your Code Here";
}

int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);

int t;
cin >> t;
while(t--)
solution();

return 0;
}

0 comments on commit 4eb83b7

Please sign in to comment.