C++ Knight Of Tours Program

This program is a little complicated and needs deeper understanding. l try to put comments to explain what is going on, if you find something confusing, please leave a comment. #include <iostream> #include <vector> #include <string> #include <iomanip> using namespace std; template <typename T> class matrix { public: matrix(int numRows = 1, int numCols = […]

Read More

TSQL Tutorial 20: Index

In this tutorial, l’ll be discussing one of the most used database objects for optimizing the performance of queries. Indexes are very important and every developer should know when to create it or not. They are DB objects that are used to optimize the performance of T-SQL queries by organizing data in a particular pattern in a […]

Read More

TSQL Tutorial 19:Views

I’ve been a little busy for the past week which made me fall behind most of the things l wanted to write on the Learning Blog. There are more features added to the site because I’m trying to do something bigger and impact the world a little better. In this tutorial, I’m going to discuss […]

Read More