Category: algorithms
March 27, 2014
algorithms, code, code library, cryptography, implementation, math, php, programming languages, string, tricks, webhosting
As we all know, we can store a set of boolean values (Yes or No, True of False) in a integer (signed or unsigned). For example, you can define …
The Dynamic Programming DP is one of the most-used approach to solve problems that satisfy the overlapping sub-problems and the optimal substructures. The simplest example is to compute Fibonacci …
Remember a couple days ago, I write a solution to this puzzle using Dynamic Programming (DP)? The DP solution helps to avoid duplicate computation in the sub-problems (smaller size). …
March 10, 2014
6502, 8 bit, algorithms, brute force, code, console, emulator, famicom, hardware, implementation, math, Nintendo Entertainment System, programming languages, tools / utilities, vbscript
The other day I tried computation of on 8-bit Famicom Clone SB-2000, which can be detailed here, here, and here. After I got BBG Famicom Clone and here, I …
This is one of the classic DP (Dynamic Programming) exercises that you might be asked during your interview. To submit your solutions, you can visit LeetCode Online Judge. The …