From 06f9822b4a2e75a0286613e912aa4e42fea1eef7 Mon Sep 17 00:00:00 2001 From: Alex Hodgson <56037599+AlexHodgson@users.noreply.github.com> Date: Thu, 5 Nov 2020 22:24:52 +0000 Subject: [PATCH] Update README.md --- cpp-exercises/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cpp-exercises/README.md b/cpp-exercises/README.md index c2af487..0879092 100644 --- a/cpp-exercises/README.md +++ b/cpp-exercises/README.md @@ -2,6 +2,7 @@ Solutions to practice questions from Testdome website -Binary search tree - Searches a tree to check if it contains a number -Quadratic Equation - Solves a quadratic equation, very simple -Train Composition - A model to represent adding and removing wagons from either end of a train, in an efficient manner +* Binary search tree - Searches a tree to check if it contains a number +* Quadratic Equation - Solves a quadratic equation, very simple +* Train Composition - A model to represent adding and removing wagons from either end of a train, without use of C++ containers +* Train Composition Deque - Same as Train Composition but much simplified with built in containers