remove junk
This commit is contained in:
1 file changed
-5
@@ -38,11 +38,6 @@ public class Lab6
|
|||||||
{
|
{
|
||||||
final long[][] table;
|
final long[][] table;
|
||||||
|
|
||||||
if (m < 0 || n < 0)
|
|
||||||
{
|
|
||||||
throw new IllegalArgumentException("m and n must be non-negative");
|
|
||||||
}
|
|
||||||
|
|
||||||
table = new long[m + 1][n + 1];
|
table = new long[m + 1][n + 1];
|
||||||
|
|
||||||
for (int row = 0; row <= m; ++row)
|
for (int row = 0; row <= m; ++row)
|
||||||
|
|||||||
Reference in new issue
Block a user