topcoder-greed icon indicating copy to clipboard operation
topcoder-greed copied to clipboard

greedy editor for topcoder arena

Results 26 topcoder-greed issues
Sort by recently updated
recently updated
newest added

The template uses `std::ifstream data` to read samples. However, "std::data" has already been defined, which causes compile error. See [std::data](https://en.cppreference.com/w/cpp/iterator/data) on cppreference.com.

1 add clion project support when open a problem, will change CMakeLists.txt 2 add char type. Fixed SRM 627 div2 500 null point exception 3 auto open html file use...

It would be very useful, if there would be some possibility of simple filtering of source code before submit. For example: there is a macro DEBUG(...) in my code, which...

Sometimes even a simple string param may have redundant spaces like sample 2 in BagAndCards (SRM 679). Always trim first when parsing params will fix this. The incorrect `BagAndCards.sample` is...

The problem is the name conflict: the time used to access start time is conflicted with the a variable "time". Suggest to use alias to avoid this . It is...

Hello, I use eclipse as my best IDE, and I wonder, how can I modify the generation code so that the source and sample files overwrite existing files I use...

Dear @vexorian, @shivawu, and to may whom it concern, Our topcoder-greed was left alone without update for a long time. We've been too busy these days, and it's been a...

queue and map are used frequently in TopCoder's algorithm competition,so I think it's better to include their header file in default template.

It's occured at TCO Round 1C Med 'FizzBuzzTurbo'. I'm C# user, and used combination of 'filetest' and 'tescase'. Error was occurred when the return value was read from "FizzBuzzTurbo.sample", because...

Bug

SRM633 Div2 250. Target ``` Returns {"#####", "# #", "# # #", "# #", "#####"} ``` We need to escape double ' ' with  

Bug