Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added solution #155

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

added solution #155

wants to merge 2 commits into from

Conversation

AnaLanda
Copy link

No description provided.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@@ -6,18 +6,46 @@
*/
public class MatrixOperation {
public int[] getDiagonal(int[][] matrix) {
return null;
int[] diagonal = new int[matrix.length];
int counter1 = 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good start, but try to remove this variable and use only int i

}

public int[] getCounterDiagonal(int[][] matrix) {
return null;
int[] counterDiagonal = new int[matrix.length];
int counter2 = 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the name of this variable isn't understandable, let's change it
and let's move the declaration of this variable in for loop too
Example:
https://www.geeksforgeeks.org/loop-java-important-points/
https://stackoverflow.com/a/14752913

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants