Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

How do I start comeptitive coding? My coding skills are not very good.

+3 votes
asked Dec 21, 2022 by Kratika Mishra (150 points)

1 Answer

0 votes
answered Dec 21, 2022 by Ericsson Lin (600 points)
Start by learning a language. If you're a beginner, starting with C++ or Python is good (Python is easier to grasp for beginners than C++ in my opinion, but C++ is a more popular language, and quite capable). Just be mindful, competitive programmers have certain habits that regular programmers would disagree with, but which are really helpful in a programming contest (for example, in C++ things like "using namespace std" and "#include <bits/stdc++.h>" would usually be discouraged, but are used by nearly every competitive programmer).

After you're familiar with the syntax of the language, as well as topics like functions, arrays, and data structures, I would suggest you start trying out competitive programming problems on websites like Codeforces (codeforces.com) which offer rated questions of all levels of difficulty.

Last but not least, practice a lot! This is the only way you'll get better at the language, and the problem-solving aspect of competitive programming.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...