Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 949 Bytes

File metadata and controls

33 lines (23 loc) · 949 Bytes

Competitive programming daily

A common repository for all data structures & algorithmic problems.

description of gif

--------------------------------------

VScode setup for competitive programming in MacOS

  • Install clang or gcc using brew

    brew install gcc

  • Configure default build task

    • Go to terminal at the top menu
    • Configure default build task -> other
    • copy the given file into your task.json json file
  • Create file with .cpp extension, input.txt for your inputs and output.txt for your output.

  • Cmd+Shift+B to run your code.

  • For setting up c++ snippets, refer snippets.json

description of gif