Solve Algebra Linear Equations using Backtracking

I received a picture puzzle in WhatsApp. I will explain here how I solved that using programming. I used Backtracking concept. Received picture puzzle below puzzle is simple algebra concept. If you have paper and pencile then it can be solved easily. But I just wanted to use some programming concept. Algebra notation of the puzzle just fill the empty circle with some letters (a,b,c,d,e) Left to right a - b = 5 c + 1 = d 12 - e = 10 Top to bottom...

April 5, 2020 · 3 min · 528 words · M.Kumaran

int x=5; x += x++ + ++x; (C#)

I had this question as my WhatsApp status and got interesting answers from friends. I will explain the answer here. increment and decrement operators are done differently in C# and C One thing that you have to remember is, the way C# does it is different than how C does it. Many people reason as though C# and C are the same language; they are not. here is the great explanation about c# pre and post increment operators....

January 4, 2019 · 1 min · 183 words · M.Kumaran

Backtracking – 1000 locks and 1000 students problem

A high school has a strange principal. On the first day, he has his students perform an odd opening day ceremony: I’m sure I’ll write a lot more interesting things in the future. There are one thousand lockers and one thousand students in the school. The principal asks the first student to go to every locker and open it. Then he has the second student go to every second locker and close it....

January 1, 2019 · 2 min · 214 words · M.Kumaran