Become a member
Sign in
Deepak B
Deepak B

Deepak B

Editor of Computer Science Notes and Mind F**k
8 Following
6 Followers
·
  • Profile

Latest

Deepak B
Deepak B in Mind F**k
Jan 5, 2015 · 2 min read

Logic vs Bias

Remember the cricket player you liked the most when you started watching cricket. With high degree of probability it is the same player…

Deepak B
Deepak B in Computer Science Notes
Jan 5, 2015 · 1 min read

Swap values without Temp

This is very trivial stuff. So the problem is to swap values of two variables without using any temp variable.

Let two variables that needs to be swapped be ‘a’ and ‘b’.

1. a = a + b2. b = a — b
Deepak B
Deepak B in Computer Science Notes
Jan 5, 2015 · 4 min read

Backtracking Algorithm — Interview Problem

Many computer science problems have a solution which needs to searched in a solution space. Some of these solutions are made of many sub…

1