Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.25 KB

README.md

File metadata and controls

42 lines (28 loc) · 1.25 KB

LeetCode

Language License

Getting Started

Requirements

  • C++11 compatible compiler: g++ (version >= 4.2), or clang++ (version >= 3.0)
  • CMake (version >= 3.0.2)

Build Instructions

mkdir -p build
cd build
cmake ..
make

Testing

All solutions have unit tests powered by Catch framework. To run the tests, execute tests/Test.

Expected output:

===============================================================================
All tests passed (xxxx assertions in xxx test cases)

Categories

Array

# Title Solution Difficulty Tag Note
1 Two Sum src test Easy
548 Split Array with Equal Sum src test Medium 🔒