Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 361 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 361 Bytes

Data Structures & Algorithms

This repo will hold code, notes, and assigmnets for a data structures and algorithms course.

Code Formatting

All C/C++ code is formatted using clang-format using the LLVM format.

clang-format -style=llvm <file name goes here>

All Python code is formatted using black.

black <file name goes here>