Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 832 Bytes

README.md

File metadata and controls

47 lines (30 loc) · 832 Bytes

Coda Katas

Install

git clone [email protected]:Cenarius-io/CodeKatas.git CodeCatas

cd CodeCatas

composer install

Usage

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

Challenges

Back to the Checkout

Kata09: Back to the Checkout

First missing number

Given an unsorted integer array nums, return the smallest missing positive integer.

Roman numerals

Roman Numerals

Prime factors

Prime Factorization