Which IDE/Editor do you use and what do you like about it? How do you test for sample tests of the problem fast? Do you use terminal during contest? Also how do you debug your code during contest? Do you use IDE Debugger or debug manually?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3821 |
3 | Benq | 3736 |
4 | Radewoosh | 3631 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3388 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Which IDE/Editor do you use and what do you like about it? How do you test for sample tests of the problem fast? Do you use terminal during contest? Also how do you debug your code during contest? Do you use IDE Debugger or debug manually?
Name |
---|
Usually, I write my code on Sublime text (it has some interesting features), then run it on a local IDE (Code::Blocks for C++), or an online IDE(like C++ shell, but it's not really practical, since you can't copy/paste input from contest to IDE). I still use this method during contests that take place on other platforms.However, onn CodeForces, I use the Custom Test machine that is provided in the contest. Actually, it is pretty fine, and even if it's not as visually comfortable as Sublime Text, it is good, and, being an IDE, it avoids me some drawbacks of Sublime Text which is just an Editor. It's also pretty fast, compared to other online IDEs such as CodeChef's and AtCoder's (Based on personnal experience). Moral of the story, I advise using the Custom Test of CodeForces. If you don't like it, I advise downloading Sublime Text and/or an IDE to compile and run your code. I hoped my advice was helpful. Happy coding!
Why don't you run you code on Sublime text only, I compile and test it on sublime itself.
How do you debug? Is there a way to use gdb on sublime?
Any idea for how to add user defined flag, i always use ifndef online_judge how to add ifdef myflag?
use
-DMY_FLAG
argument during compiling. This will enable you to use#ifdef MY_FLAG
I meant how to put the flag in builds in sublime text, i tried it didn't work out.
I think the Custom Invocation will be slow due to server load during a contest.
I used Custom Invocation regularly. At the beginning of a contest, you will have a hard time using Custom Invocation. I use Ideone when it is slow. After 20 — 30 mins you will have a faster Custom Invocation. In fact, recently Custom Invocation is decently fast from the very start of a contest.
I use only SublimeText on Linux. Before switching I was on Code::Blocks and Windows. Major drawback on previous setup for me was: you couldn't compile/run another code before closing cmd. It isn't issue for me now (and compilation on linux is faster)
Before : Windows + Code::Blocks + Hightail
Currently : Linux + Sublime text 3 + (Hightail || Sublime Input method as a comment)
I write code in Dev c++ and run it on hackerrank
I use VIM with some modifications so that F5 is compile and run. That way I barely need to exit to type commands in the terminal (I can never remember them).
Also wrote a script to open vim and all the relevant input files so I don't have to do it myself.
For sample test I just paste it to a text file and run the program (you can use preprocessor stuff so that your code reads in input from some text file).
Can you share your .vimrc please?
It is very messy.
But I basically copied and paste stuff from wherever I can find.
The thing I was talking about is on line 91:
This should let you compile and run C++17 files in Vim if you do F5 (with the LOCAL tag, you can also make a version without -DLOCAL). I didn't write this code, netman has it on here.
Thanks! :D I have been thinking of using vim lately. This will surely help!
Did you switch from IDE to vim or you borned with vim? :(
I was scared of Vim (before I was using Sublime Text). But I decided to switch and now it's feeling more natural.
I don't like the fact that the cursor fills all of the word that we are in and also that we cannot move faster like I cannot go 30 lines fast ( Maybe there is fast method in vim)
Do you mean ctl-D and ctrl-U? Vim is very capable of doing anything you can think of (with the right setup), you just have to search for it.
sorry for a lot of questions bro.
how did you install vim i do apt-get install vim but it says that it has independent packages and i also checked the file that I have the links to servers and changed them several times and I still cannot change it do you know why ( I have searched in google and tried all of the solutions on stack overflow)
sublime text and copy pasting test cases and manually writing compilation command to terminal
This also gives you a lot of flexibility, you can stop compilation, stop running the code, and even clean up leftover files when program terminates abruptly. Another benefit is, switching to output redirection(>) into files is really easy, which can help with checking large outputs.
Exactly! Redirect file input output from standard IO exe is also really easy and nice. Only downside is sometimes I end up copy pasting some code into the terminal instead of the test cases and suddenly like 50 junk files show up in the directory. (Actually I still haven’t found a satisfactory way to resolve this yet.)
copy pasting the code-it sucks!!
Geeks for Geeks IDE...code and run online :)
Explains your rating
Um... your ratings are pretty similar.
My rating is actually lower than his
xD
Is an IDE/Editor responsible for ratings...XD....u should rather improve yours buddy XD
What is the problem btw? Me and my friend Unpossible both use Geeks for Geeks IDE.
I come from da future and this comment didnt age well
personally i like codeforces IDE ,here i can copy sample test and run it there , which is comfortable and saves time .
I use devc++ to write and compile my code.
For Java, you could go with IntelliJ Idea(or Eclipse). IntelliJ has many good features for development too. Infact, I personally find it's debugger very useful. Besides, you can get all the Jetbrains product for free on a Student ID.
I used to write code in Eclipse few years ago. I could install it for Windows and use it in World Finals. I'm not using Windows anymore neither Eclipse (it was total crap btw).
I started using vim, but it's not very easy, and for sure you will need several plugins and customization before feeling comfortable. Personally I found vimrc from misof very useful, and is the core of my current vimrc ( https://people.ksp.sk/~misof/programy/vimrc.html ). Note that I don't use vim for competitive programming anymore, but I use it for a lot of other things.
Then I start writing code on Sublime. Sublime is blazing fast and was all I needed in my slow computer to write code for competitive programming. It has very basic features, but if you feel comfortable writing code in your language, it is ok.
Finally I think vscode is my goto editor for competitive programming. It is very fast (not as fast as Sublime though) but has greater community and much more useful extensions and tooling.
I started to develop an extension for vscode to write code in competitive programming. You can install it from the marketplace. It is called acmX.
You can see a brief example of how to use it here: https://youtu.be/ouCU9xyW1i8
I created this Telegram group for the extension
https://t.me/joinchat/FksZ0BSkGh7anvpFYisjMw
.Sublime text 3 and Ubuntu terminal with auto-complete disabled in Sublime because it just adds std:: to everything during auto complete. I use the following aliases for running code.
Here 00.cpp is my skeleton/template code for contest which consists of only 3 lines.
Apart from that I use my personal compiled bits/stdc++.h so that my C++ code compiles in blink of an eye because compiling original bits/stdc++.h still takes few more milliseconds even if pre-compiled for which I wrote a script before.
I write code in the Submit Code tab and press submit to compile. The samples are tested automatically by the tester.
I use far manager. It doesn't have that much special features except you can boast about tourist using it
I use ideone, obviously the most superior ide. ;)
I use CLion on Mac.
I'll recommend u SUBLIME TEXT 3 , its the fastest text editor, with some great features of Snippets and auto-completions.It has separate input and output file system .it has great interface with DARK mode.
Since nobody mention cf-tool I do.
It is a great command line tool to download problems and whole contests with all testdata to the local system, compile/test/run and submit.
It perfectly fits to be used with vim as an editor.
use cp-editor ultra-fast and easy to use. CP-editor
has it auto complete feature?
No, but I would recommend you to use it once maybe you will like it.
Can you plz tell how to enable the range based for loop in cp-editor or remove the std c++ 98 mode and get the new one
I use sublime text combined with xalanq's very useful cf-tool. Sublime for editing code, cf-tool for debugging and running locally.
I created a plugin for this purpose.
https://github.com/suraj-2306/cc_vim.git
It opens up an input.txt and an output.txt along with the main .cpp file, in a split-screen config. By hitting F9, you can compile the code and execute it. The expected output is shown in the output.txt buffer while taking input from the input.txt buffer. It uses a custom makefile for compilation and execution of the code. It's pretty helpful if you're starting with cc in vim.ATBI had to reinstall my setup recently so here's exactly how I have it:
install sublime
install some c++ compiler
change sublime compilation flags to use C++17 -O2 and some other compilation flags like -Wshadow
code with sublime, compile with ctrl+B, run on command line
So yeah, not much is needed.
CLion with JHelper.
--
Advantages: I have competitive companion, which parses the test input/output and sends it to JHelper. It's nice I don't have to copy paste the input and so on.
CLion has a bunch of useful stuff. It has a debugger, but I don't use it that much >.< ... it also has a bunch of other features I don't know how to use :P
--
I don't use terminal, although I used to use alacritty + vim.
VScode forever.
Far manager