├── Brown Belt ├── Readme.md ├── Week_1 │ ├── Readme.md │ ├── Task_1 │ │ ├── Task_1.cpp │ │ └── test_runner.h │ ├── Task_2 │ │ ├── Task_2.cpp │ │ └── test_runner.h │ ├── Task_3 │ │ ├── Task_3.cpp │ │ └── test_runner.h │ ├── Task_4 │ │ ├── Task_4.cpp │ │ └── test_runner.h │ └── Task_5 │ │ ├── Task_5.cpp │ │ └── test_runner.h ├── Week_2 │ ├── Readme.md │ ├── Task_1 │ │ ├── Task_1.cpp │ │ ├── test_runner.h │ │ ├── xml.cpp │ │ └── xml.h │ ├── Task_2 │ │ ├── Task_2.cpp │ │ ├── json.cpp │ │ ├── json.h │ │ └── test_runner.h │ ├── Task_3 │ │ ├── Task_3.cpp │ │ ├── ini.cpp │ │ ├── ini.h │ │ └── test_runner.h │ ├── Task_4 │ │ ├── Task_4.cpp │ │ ├── json.cpp │ │ ├── json.h │ │ ├── refactoring.cpp │ │ ├── test_runner.h │ │ ├── xml.cpp │ │ └── xml.h │ ├── Task_5 │ │ ├── Task_5.cpp │ │ ├── stats_aggregator.cpp │ │ ├── stats_aggregator.h │ │ ├── stats_aggregator_test.cpp │ │ └── test_runner.h │ ├── Task_6 │ │ ├── Task_6.cpp │ │ ├── game_object.h │ │ ├── geo2d.cpp │ │ ├── geo2d.h │ │ └── test_runner.h │ └── Task_7 │ │ ├── Task_7.cpp │ │ └── test_runner.h └── Week_3 │ ├── Task_1 │ ├── Task_1.cpp │ ├── Task_1.vcxproj │ ├── Task_1.vcxproj.filters │ └── Task_1.vcxproj.user │ ├── Task_2 │ ├── Task_2.cpp │ ├── Task_2.vcxproj │ ├── Task_2.vcxproj.filters │ ├── Task_2.vcxproj.user │ └── test_runner.h │ ├── Task_3 │ ├── Task_3.cpp │ ├── Task_3.vcxproj │ ├── Task_3.vcxproj.filters │ ├── Task_3.vcxproj.user │ └── test_runner.h │ ├── Task_6 │ ├── Task_6.cpp │ ├── Task_6.vcxproj │ ├── Task_6.vcxproj.filters │ ├── Task_6.vcxproj.user │ └── test_runner.h │ └── Task_7 │ ├── Task_7.cpp │ ├── Task_7.vcxproj │ ├── Task_7.vcxproj.filters │ ├── Task_7.vcxproj.user │ ├── animals.h │ └── test_runner.h ├── README.md ├── Red Belt ├── Readme.md ├── Week_1 │ ├── Readme.md │ ├── Task_1 │ │ ├── Task_1.cpp │ │ └── Test_runner.h │ ├── Task_2 │ │ ├── Task_2.cpp │ │ └── test_runner.h │ ├── Task_3 │ │ ├── Task_3.cpp │ │ └── airline_ticket.h │ ├── Task_4 │ │ ├── Task_4.cpp │ │ ├── airline_ticket.h │ │ └── test_runner.h │ ├── Task_5 │ │ ├── Task_5.cpp │ │ └── test_runner.h │ ├── Task_6 │ │ └── Task_6.cpp │ ├── Task_7 │ │ ├── Task_7.cpp │ │ └── test_runner.h │ ├── Task_8 │ │ ├── Deque.h │ │ ├── Task_8.cpp │ │ ├── test_runner.h │ │ ├── tests.cpp │ │ └── tests.h │ └── Task_9 │ │ ├── Task_9.cpp │ │ ├── iterator_range.h │ │ ├── paginator.h │ │ ├── test_runner.h │ │ ├── tests.cpp │ │ └── tests.h ├── Week_2 │ ├── Readme.md │ ├── Task_1 │ │ ├── Task_1.cpp │ │ ├── profiler.h │ │ ├── student.h │ │ └── test_runner.h │ ├── Task_2 │ │ ├── Task_2.cpp │ │ ├── learner.cpp │ │ ├── learner.h │ │ └── profiler.h │ ├── Task_3 │ │ ├── Task_3.cpp │ │ └── slow.cpp │ ├── Task_4 │ │ ├── Task_4.cpp │ │ └── slow.cpp │ └── Task_5 │ │ └── Task_5.cpp ├── Week_3 │ ├── Readme.md │ ├── Task_1 │ │ ├── Task_1.cpp │ │ └── test_runner.h │ ├── Task_2 │ │ ├── Task_2.cpp │ │ └── test_runner.h │ ├── Task_3 │ │ ├── Task_3.cpp │ │ ├── simple_vector.h │ │ └── test_runner.h │ └── Task_4 │ │ ├── Task_4.cpp │ │ └── test_runner.h ├── Week_4 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_2 │ │ ├── Task_2.cpp │ │ ├── profiler.h │ │ ├── stack_vector.h │ │ └── test_runner.h │ ├── Task_3 │ │ ├── Task_3.cpp │ │ └── test_runner.h │ ├── Task_4 │ │ ├── Task_4.cpp │ │ ├── profiler.h │ │ └── test_runner.h │ ├── Task_5 │ │ ├── Task_5.cpp │ │ ├── profiler.h │ │ └── test_runner.h │ └── Task_6 │ │ ├── Task_6.cpp │ │ ├── http_request.h │ │ ├── profiler.h │ │ ├── stats.cpp │ │ ├── stats.h │ │ └── test_runner.h └── Week_5 │ ├── Readme.md │ ├── Task_1 │ ├── Task_1.cpp │ └── test_runner.h │ ├── Task_10 │ ├── Task_10.cpp │ ├── profile.h │ └── test_runner.h │ ├── Task_11 │ ├── Task_11.cpp │ ├── profile.h │ └── test_runner.h │ ├── Task_2 │ ├── Task_2.cpp │ └── test_runner.h │ ├── Task_3 │ ├── Task_3.cpp │ ├── simple_vector.h │ └── test_runner.h │ ├── Task_4 │ ├── Task_4.cpp │ └── test_runner.h │ ├── Task_5 │ ├── Task_5.cpp │ ├── simple_vector_2.h │ └── test_runner.h │ ├── Task_6 │ ├── Task_6.cpp │ └── test_runner.h │ ├── Task_7 │ ├── Task_7.cpp │ └── test_runner.h │ ├── Task_8 │ ├── Task_8.cpp │ └── test_runner.h │ └── Task_9 │ ├── Task_9.cpp │ ├── profile.h │ └── test_runner.h ├── White Belt ├── Readme.md ├── Week_1 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_2 │ │ └── Task_2.cpp │ ├── Task_3 │ │ └── Task_3.cpp │ ├── Task_4 │ │ └── Task_4.cpp │ ├── Task_5 │ │ └── Task_5.cpp │ ├── Task_6 │ │ └── Task_6.cpp │ ├── Task_7 │ │ └── Task_7.cpp │ ├── Task_8 │ │ └── Task_8.cpp │ ├── Task_9 │ │ └── Task_9.cpp │ └── Updated │ │ ├── Task_2.cpp │ │ ├── Task_5.cpp │ │ └── Task_9.cpp ├── Week_2 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_10 │ │ └── Task_10.cpp │ ├── Task_11 │ │ └── Task_11.cpp │ ├── Task_12 │ │ └── Task_12.cpp │ ├── Task_13 │ │ └── Task_13.cpp │ ├── Task_14 │ │ └── Task_14.cpp │ ├── Task_15 │ │ └── Task_15.cpp │ ├── Task_16 │ │ └── Task_16.cpp │ ├── Task_17 │ │ └── Task_17.cpp │ ├── Task_18 │ │ └── Task_18.cpp │ ├── Task_2 │ │ └── Task_2.cpp │ ├── Task_3 │ │ └── Task_3.cpp │ ├── Task_4 │ │ └── Task_4.cpp │ ├── Task_5 │ │ └── Task_5.cpp │ ├── Task_6 │ │ └── Task_6.cpp │ ├── Task_7 │ │ └── Task_7.cpp │ ├── Task_8 │ │ └── Task_8.cpp │ ├── Task_9 │ │ └── Task_9.cpp │ └── Updated │ │ ├── Task_10.cpp │ │ ├── Task_12.cpp │ │ ├── Task_13.cpp │ │ ├── Task_2.cpp │ │ ├── Task_3.cpp │ │ ├── Task_5.cpp │ │ ├── Task_6.cpp │ │ ├── Task_7.cpp │ │ └── Task_9.cpp ├── Week_3 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_2 │ │ └── Task_2.cpp │ ├── Task_3 │ │ └── Task_3.cpp │ ├── Task_4 │ │ └── Task_4.cpp │ ├── Task_5 │ │ └── Task_5.cpp │ ├── Task_6 │ │ └── Task_6.cpp │ ├── Task_7 │ │ └── Task_7.cpp │ └── Task_8 │ │ └── Task_8.cpp ├── Week_4 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_10 │ │ └── Task_10.cpp │ ├── Task_11 │ │ └── Task_11.cpp │ ├── Task_12 │ │ └── Task_12.cpp │ ├── Task_13 │ │ └── Task_13.cpp │ ├── Task_14 │ │ └── Task_14.cpp │ ├── Task_15 │ │ └── Task_15.cpp │ ├── Task_16 │ │ └── Task_16.cpp │ ├── Task_17 │ │ └── Task_17.cpp │ ├── Task_2 │ │ └── Task_2.cpp │ ├── Task_3 │ │ └── Task_3.cpp │ ├── Task_4 │ │ ├── Task_4.cpp │ │ └── input.txt │ ├── Task_5 │ │ ├── Task_5.cpp │ │ ├── input.txt │ │ └── output.txt │ ├── Task_6 │ │ ├── Task_6.cpp │ │ └── input.txt │ ├── Task_7 │ │ ├── Task_7.cpp │ │ └── input.txt │ ├── Task_8 │ │ └── Task_8.cpp │ └── Task_9 │ │ └── Task_9.cpp └── Week_5 (Final_project) │ ├── Readme.md │ ├── Updated │ ├── Database.cpp │ ├── Database.h │ ├── Date.cpp │ ├── Date.h │ └── main.cpp │ └── Week_5 (Final_project).cpp ├── Yellow Belt ├── Readme.md ├── Week_1 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_2 │ │ └── Task_2.cpp │ ├── Task_3 │ │ └── Task_3.cpp │ ├── Task_4 │ │ └── Task_4.cpp │ ├── Task_5 │ │ └── Task_5.cpp │ ├── Task_6 │ │ └── Task_6.cpp │ └── Task_7 │ │ └── Task_7.cpp ├── Week_2 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_2 │ │ └── Task_2.cpp │ ├── Task_3 │ │ └── Task_3.cpp │ ├── Task_4 │ │ └── Task_4.cpp │ └── Task_5 │ │ └── Task_5.cpp ├── Week_3 │ ├── Readme.md │ ├── Task_1 │ │ ├── Task_1.cpp │ │ ├── Test_runner.cpp │ │ ├── Test_runner.h │ │ ├── sum_reverse_sort.cpp │ │ └── sum_reverse_sort.h │ ├── Task_2 │ │ ├── Task_2.cpp │ │ ├── UnitFramework.cpp │ │ ├── UnitFramework.h │ │ ├── UnitTests.cpp │ │ ├── UnitTests.h │ │ ├── phone_number.cpp │ │ └── phone_number.h │ ├── Task_3 │ │ ├── Rectangle.cpp │ │ ├── Rectangle.h │ │ └── Task_3.cpp │ └── Task_4 │ │ ├── Task_4.cpp │ │ ├── bus_manager.cpp │ │ ├── bus_manager.h │ │ ├── query.cpp │ │ ├── query.h │ │ ├── responses.cpp │ │ └── responses.h ├── Week_4 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_10 │ │ ├── FindStartsWithChar.h │ │ ├── FindStartsWithPrefix.cpp │ │ ├── FindStartsWithPrefix.h │ │ └── Task_10.cpp │ ├── Task_11 │ │ └── Task_11.cpp │ ├── Task_2 │ │ ├── FindGreaterElements.h │ │ └── Task_2.cpp │ ├── Task_3 │ │ └── Task_3.cpp │ ├── Task_4 │ │ ├── RemoveDuplicates.h │ │ └── Task_4.cpp │ ├── Task_5 │ │ └── Task_5.cpp │ ├── Task_6 │ │ ├── ComputeMedianAge.h │ │ ├── Person.cpp │ │ ├── Person.h │ │ └── Task_6.cpp │ ├── Task_7 │ │ ├── MergeSort.h │ │ ├── MergeSort_Div3.h │ │ └── Task_7.cpp │ ├── Task_8 │ │ └── Task_8.cpp │ └── Task_9 │ │ ├── Person.cpp │ │ ├── Person.h │ │ └── Task_9.cpp ├── Week_5 │ ├── Readme.md │ ├── Task_1 │ │ └── Task_1.cpp │ ├── Task_2 │ │ └── Task_2.cpp │ ├── Task_3 │ │ ├── Circle.cpp │ │ ├── Circle.h │ │ ├── Figure.h │ │ ├── Rect.cpp │ │ ├── Rect.h │ │ ├── Task_3.cpp │ │ ├── Triangle.cpp │ │ └── Triangle.h │ └── Task_4 │ │ ├── Task_4.cpp │ │ └── original_code.cpp └── Week_6 (Final_project) │ ├── Readme.md │ ├── condition_parser.cpp │ ├── condition_parser.h │ ├── condition_parser_test.cpp │ ├── database.cpp │ ├── database.h │ ├── date.cpp │ ├── date.h │ ├── main.cpp │ ├── node.cpp │ ├── node.h │ ├── test_runner.cpp │ ├── test_runner.h │ ├── token.cpp │ └── token.h └── logo.jpg /Brown Belt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Readme.md -------------------------------------------------------------------------------- /Brown Belt/Week_1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Readme.md -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_1/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_1/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_2/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_2/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_3/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_3/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_4/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_4/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_1/Task_5/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_1/Task_5/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Readme.md -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_1/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_1/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_1/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_1/xml.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_1/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_1/xml.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_2/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_2/json.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_2/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_2/json.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_2/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_2/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_3/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_3/ini.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_3/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_3/ini.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_3/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_3/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_4/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_4/json.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_4/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_4/json.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_4/refactoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_4/refactoring.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_4/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_4/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_4/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_4/xml.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_4/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_4/xml.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_5/stats_aggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_5/stats_aggregator.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_5/stats_aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_5/stats_aggregator.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_5/stats_aggregator_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_5/stats_aggregator_test.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_5/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_5/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_6/game_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_6/game_object.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_6/geo2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_6/geo2d.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_6/geo2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_6/geo2d.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_6/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_6/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_2/Task_7/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_2/Task_7/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_1/Task_1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_1/Task_1.vcxproj -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_1/Task_1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_1/Task_1.vcxproj.filters -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_1/Task_1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_1/Task_1.vcxproj.user -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_2/Task_2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_2/Task_2.vcxproj -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_2/Task_2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_2/Task_2.vcxproj.filters -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_2/Task_2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_2/Task_2.vcxproj.user -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_2/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_2/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_3/Task_3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_3/Task_3.vcxproj -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_3/Task_3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_3/Task_3.vcxproj.filters -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_3/Task_3.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_3/Task_3.vcxproj.user -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_3/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_3/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_6/Task_6.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_6/Task_6.vcxproj -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_6/Task_6.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_6/Task_6.vcxproj.filters -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_6/Task_6.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_6/Task_6.vcxproj.user -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_6/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_6/test_runner.h -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_7/Task_7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_7/Task_7.vcxproj -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_7/Task_7.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_7/Task_7.vcxproj.filters -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_7/Task_7.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_7/Task_7.vcxproj.user -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_7/animals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_7/animals.h -------------------------------------------------------------------------------- /Brown Belt/Week_3/Task_7/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Brown Belt/Week_3/Task_7/test_runner.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/README.md -------------------------------------------------------------------------------- /Red Belt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Readme.md -------------------------------------------------------------------------------- /Red Belt/Week_1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Readme.md -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_1/Test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_1/Test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_2/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_2/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_3/airline_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_3/airline_ticket.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_4/airline_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_4/airline_ticket.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_4/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_4/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_5/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_5/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_7/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_7/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_8/Deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_8/Deque.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_8/Task_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_8/Task_8.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_8/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_8/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_8/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_8/tests.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_8/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_8/tests.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_9/Task_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_9/Task_9.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_9/iterator_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_9/iterator_range.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_9/paginator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_9/paginator.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_9/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_9/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_9/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_9/tests.cpp -------------------------------------------------------------------------------- /Red Belt/Week_1/Task_9/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_1/Task_9/tests.h -------------------------------------------------------------------------------- /Red Belt/Week_2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Readme.md -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_1/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_1/profiler.h -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_1/student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_1/student.h -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_1/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_1/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_2/learner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_2/learner.cpp -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_2/learner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_2/learner.h -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_2/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_2/profiler.h -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_3/slow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_3/slow.cpp -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_4/slow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_4/slow.cpp -------------------------------------------------------------------------------- /Red Belt/Week_2/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_2/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Red Belt/Week_3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Readme.md -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_1/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_1/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_2/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_2/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_3/simple_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_3/simple_vector.h -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_3/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_3/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Red Belt/Week_3/Task_4/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_3/Task_4/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Readme.md -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_2/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_2/profiler.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_2/stack_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_2/stack_vector.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_2/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_2/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_3/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_3/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_4/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_4/profiler.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_4/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_4/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_5/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_5/profiler.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_5/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_5/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_6/http_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_6/http_request.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_6/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_6/profiler.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_6/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_6/stats.cpp -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_6/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_6/stats.h -------------------------------------------------------------------------------- /Red Belt/Week_4/Task_6/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_4/Task_6/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Readme.md -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_1/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_1/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_10/Task_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_10/Task_10.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_10/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_10/profile.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_10/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_10/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_11/Task_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_11/Task_11.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_11/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_11/profile.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_11/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_11/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_2/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_2/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_3/simple_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_3/simple_vector.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_3/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_3/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_4/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_4/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_5/simple_vector_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_5/simple_vector_2.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_5/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_5/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_6/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_6/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_7/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_7/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_8/Task_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_8/Task_8.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_8/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_8/test_runner.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_9/Task_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_9/Task_9.cpp -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_9/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_9/profile.h -------------------------------------------------------------------------------- /Red Belt/Week_5/Task_9/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Red Belt/Week_5/Task_9/test_runner.h -------------------------------------------------------------------------------- /White Belt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Readme.md -------------------------------------------------------------------------------- /White Belt/Week_1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Readme.md -------------------------------------------------------------------------------- /White Belt/Week_1/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Task_8/Task_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_8/Task_8.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Task_9/Task_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Task_9/Task_9.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Updated/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Updated/Task_2.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Updated/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Updated/Task_5.cpp -------------------------------------------------------------------------------- /White Belt/Week_1/Updated/Task_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_1/Updated/Task_9.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Readme.md -------------------------------------------------------------------------------- /White Belt/Week_2/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_10/Task_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_10/Task_10.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_11/Task_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_11/Task_11.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_12/Task_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_12/Task_12.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_13/Task_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_13/Task_13.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_14/Task_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_14/Task_14.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_15/Task_15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_15/Task_15.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_16/Task_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_16/Task_16.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_17/Task_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_17/Task_17.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_18/Task_18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_18/Task_18.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_8/Task_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_8/Task_8.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Task_9/Task_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Task_9/Task_9.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_10.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_12.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_13.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_2.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_3.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_5.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_6.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_7.cpp -------------------------------------------------------------------------------- /White Belt/Week_2/Updated/Task_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_2/Updated/Task_9.cpp -------------------------------------------------------------------------------- /White Belt/Week_3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Readme.md -------------------------------------------------------------------------------- /White Belt/Week_3/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /White Belt/Week_3/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /White Belt/Week_3/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /White Belt/Week_3/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /White Belt/Week_3/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /White Belt/Week_3/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /White Belt/Week_3/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /White Belt/Week_3/Task_8/Task_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_3/Task_8/Task_8.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Readme.md -------------------------------------------------------------------------------- /White Belt/Week_4/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_10/Task_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_10/Task_10.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_11/Task_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_11/Task_11.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_12/Task_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_12/Task_12.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_13/Task_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_13/Task_13.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_14/Task_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_14/Task_14.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_15/Task_15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_15/Task_15.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_16/Task_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_16/Task_16.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_17/Task_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_17/Task_17.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_4/input.txt: -------------------------------------------------------------------------------- 1 | Keep calm 2 | and 3 | learn C++ -------------------------------------------------------------------------------- /White Belt/Week_4/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_5/input.txt: -------------------------------------------------------------------------------- 1 | Keep calm 2 | and 3 | learn C++ -------------------------------------------------------------------------------- /White Belt/Week_4/Task_5/output.txt: -------------------------------------------------------------------------------- 1 | Keep calm 2 | and 3 | learn C++ -------------------------------------------------------------------------------- /White Belt/Week_4/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_6/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_6/input.txt -------------------------------------------------------------------------------- /White Belt/Week_4/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_7/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_7/input.txt -------------------------------------------------------------------------------- /White Belt/Week_4/Task_8/Task_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_8/Task_8.cpp -------------------------------------------------------------------------------- /White Belt/Week_4/Task_9/Task_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_4/Task_9/Task_9.cpp -------------------------------------------------------------------------------- /White Belt/Week_5 (Final_project)/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_5 (Final_project)/Readme.md -------------------------------------------------------------------------------- /White Belt/Week_5 (Final_project)/Updated/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_5 (Final_project)/Updated/Database.cpp -------------------------------------------------------------------------------- /White Belt/Week_5 (Final_project)/Updated/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_5 (Final_project)/Updated/Database.h -------------------------------------------------------------------------------- /White Belt/Week_5 (Final_project)/Updated/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_5 (Final_project)/Updated/Date.cpp -------------------------------------------------------------------------------- /White Belt/Week_5 (Final_project)/Updated/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_5 (Final_project)/Updated/Date.h -------------------------------------------------------------------------------- /White Belt/Week_5 (Final_project)/Updated/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_5 (Final_project)/Updated/main.cpp -------------------------------------------------------------------------------- /White Belt/Week_5 (Final_project)/Week_5 (Final_project).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/White Belt/Week_5 (Final_project)/Week_5 (Final_project).cpp -------------------------------------------------------------------------------- /Yellow Belt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Readme.md -------------------------------------------------------------------------------- /Yellow Belt/Week_1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_1/Readme.md -------------------------------------------------------------------------------- /Yellow Belt/Week_1/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_1/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_1/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_1/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_1/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_1/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_1/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_1/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_1/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_1/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_1/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_1/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_1/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_1/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_2/Readme.md -------------------------------------------------------------------------------- /Yellow Belt/Week_2/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_2/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_2/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_2/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_2/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_2/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_2/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_2/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_2/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_2/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Readme.md -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_1/Test_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_1/Test_runner.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_1/Test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_1/Test_runner.h -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_1/sum_reverse_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_1/sum_reverse_sort.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_1/sum_reverse_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_1/sum_reverse_sort.h -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_2/UnitFramework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_2/UnitFramework.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_2/UnitFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_2/UnitFramework.h -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_2/UnitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_2/UnitTests.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_2/UnitTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_2/UnitTests.h -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_2/phone_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_2/phone_number.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_2/phone_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_2/phone_number.h -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_3/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_3/Rectangle.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_3/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_3/Rectangle.h -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_4/bus_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_4/bus_manager.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_4/bus_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_4/bus_manager.h -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_4/query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_4/query.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_4/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_4/query.h -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_4/responses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_4/responses.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_3/Task_4/responses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_3/Task_4/responses.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Readme.md -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_10/FindStartsWithChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_10/FindStartsWithChar.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_10/FindStartsWithPrefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_10/FindStartsWithPrefix.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_10/FindStartsWithPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_10/FindStartsWithPrefix.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_10/Task_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_10/Task_10.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_11/Task_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_11/Task_11.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_2/FindGreaterElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_2/FindGreaterElements.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_4/RemoveDuplicates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_4/RemoveDuplicates.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_5/Task_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_5/Task_5.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_6/ComputeMedianAge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_6/ComputeMedianAge.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_6/Person.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_6/Person.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_6/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_6/Person.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_6/Task_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_6/Task_6.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_7/MergeSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_7/MergeSort.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_7/MergeSort_Div3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_7/MergeSort_Div3.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_7/Task_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_7/Task_7.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_8/Task_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_8/Task_8.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_9/Person.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_9/Person.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_9/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_9/Person.h -------------------------------------------------------------------------------- /Yellow Belt/Week_4/Task_9/Task_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_4/Task_9/Task_9.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Readme.md -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_1/Task_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_1/Task_1.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_2/Task_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_2/Task_2.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_3/Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_3/Circle.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_3/Circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_3/Circle.h -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_3/Figure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_3/Figure.h -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_3/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_3/Rect.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_3/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_3/Rect.h -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_3/Task_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_3/Task_3.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_3/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_3/Triangle.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_3/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_3/Triangle.h -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_4/Task_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_4/Task_4.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_5/Task_4/original_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_5/Task_4/original_code.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/Readme.md -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/condition_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/condition_parser.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/condition_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/condition_parser.h -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/condition_parser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/condition_parser_test.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/database.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/database.h -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/date.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/date.h -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/main.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/node.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/node.h -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/test_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/test_runner.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/test_runner.h -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/token.cpp -------------------------------------------------------------------------------- /Yellow Belt/Week_6 (Final_project)/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/Yellow Belt/Week_6 (Final_project)/token.h -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3nf1s/Modern-Cplusplus/HEAD/logo.jpg --------------------------------------------------------------------------------