Created
June 29, 2025 16:17
-
-
Save roz3x/a3edc42e4ee75e3a9bff3d4c3e684f10 to your computer and use it in GitHub Desktop.
codeforces c++ plain snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// go to Ctrl-p > configure snnippets > c++ | |
// then copy paste this file | |
// use keyword `omg` to trigger | |
"plain ahh cp snippet": { | |
"prefix": ["omg"], | |
"body": ["#include <bits/stdc++.h>\nusing namespace std;\n\nvoid solve() {\n\t$0\n}\n\nint32_t main(){\n\tint t;cin>>t;while(t--) solve();\n}\n"], | |
"description": "chads only template" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment