Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Solutions for competitive programming problems. Prep for ICPC contests.

License

Notifications You must be signed in to change notification settings

DaniDiazTech/competitive-programming

Repository files navigation

Competitive programming

A collection of solutions and resources for competitive programming.

This is the fish function I use to execute CPP files in the terminal.

function exc
    set bin (string replace -r '.cpp$' '' $argv)
    g++ -Wall -Wextra -DLOCAL -std=c++17 $argv -o $bin  && ./$bin && rm $bin
end

Without the function would be:

g++ -Wall -Wextra -DLOCAL -std=c++17 filename.cpp -o filename  && ./filename && rm filename 

Here is my notebook with implementations for several algorithms and data structures (forked from DescomUNAL): Notebook.

Releases

No releases published

Packages

No packages published