git clone git@github.com:Cenarius-io/CodeKatas.git CodeCatas
cd CodeCatas
composer install
Use the make command to run all tests or separately by challenges
#all test
make tests
#Back to the Checkout
make test-checkout
#First missing number
make test-missing-number
#Roman numerals
make test-roman-numerals
#Prime factors
make test-prime-factors
Given an unsorted integer array nums
, return the smallest missing positive integer.