Best sum problem
#algorithm #trackback

Problem: With the target number as given array of integers (each element is differrent from each other). Find the best combination of the elements in the array to obtain the target value(Each value can be used more than 1 time).

Solution:There are many approaching way to solve this problem, but in this post, we use the tabular solution of this problem

Read continue
Can sum problem
#algorithm #trackback

Problem: With the target number as given array of integers (each element is differrent from each other). Determine that the target can be combined by the elements in the array to obtain the target value(Each value can be used more than 1 time).

Solution:There are many approaching way to solve this problem, but in this post, we use the tabular solution of this problem

Read continue
Rotate Image
#algorithm

Problem: With the given matrix of an image. The task of the problem is rotate the matrix with the 90°.

Read continue