/daily-coding-problem

Solutions for Daily Coding Problem

Primary LanguagePython

Daily Coding Problem

Solutions in Python for Programming Interview Problems

Coding Prompts provided by Daily Coding Problem

Usage

After cloning the repo, navigate to the root folder and run all tests with:

make test

If you don't have make installed, you can also run individual tests with the command line.

# Executed from src/tests
python problem_1_tests.py -v

Table of Contents

ID Description Solution Tests
1 Check numbers for sum problem_1.py problem_1_tests.py
2 Product of numbers without index problem_2.py problem_2_tests.py
29 Run length encoding problem_29.py problem_29_tests.py
41 Flight Itinerary sorting problem_41.py problem_41_tests.py
70 Find perfect numbers problem_70.py problem_70_tests.py
83 Invert Binary Tree problem_83.py problem_83_tests.py