DRY - Don' t Repeat Yourself
As the name implies ,our code should not be repeated .
Bad code - DRY Principle not followed
public class Matrix {
public static void main(String[] args) {
int[][] matrix = {
{1, 2, 3},
{4, 5, 6},
{7...
gurupalaniveltech.hashnode.dev1 min read