Skip to content

Commit

Permalink
Improved task 240
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev authored Jan 7, 2024
1 parent f3fad08 commit bbe5057
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void SearchMatrix() {
new int[] {10, 13, 14, 17, 24},
new int[] {18, 21, 23, 26, 30}
};
Assert.Equal(true, new Solution().SearchMatrix(matrix, 5));
Assert.True(new Solution().SearchMatrix(matrix, 5));
}

[Fact]
Expand All @@ -24,7 +24,7 @@ public void SearchMatrix2() {
new int[] {10, 13, 14, 17, 24},
new int[] {18, 21, 23, 26, 30}
};
Assert.Equal(false, new Solution().SearchMatrix(matrix, 20));
Assert.False(new Solution().SearchMatrix(matrix, 20));
}
}
}

0 comments on commit bbe5057

Please sign in to comment.