Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 664 Bytes

File metadata and controls

35 lines (22 loc) · 664 Bytes

Interview Practice Questions

This repository contains a collection of sample questions I've completed in practice for interviews. You can read more about the structuring of this project here.

Prerequisites

  • Conan version >=2.0.11

How to install dependencies

conan install . --output-folder=build --build=missing

How to build

cd build

cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=build/Release/generators/conan_toolchain.cmake

cmake --build . --config Release

How to install

cmake --install .

How to test

ctest