Record Case Detail

Notes

This function is in beta test. Please help improve it in the issues here.

Stderr

For testcase #10 and #11, you should only get one correct
#10 for row-major, #11 for col-major
=================================================================
==25968==ERROR: AddressSanitizer: alloc-dealloc-mismatch (operator new [] vs operator delete) on 0x607000000090
    #0 0x7ff5d09319c8 in operator delete(void*, unsigned long) (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xe19c8)
    #1 0x55fa3bbbea82 in intMatrix::~intMatrix() (/out/package/ex3+0x16a82)
    #2 0x55fa3bbba7da in main (/out/package/ex3+0x127da)
    #3 0x7ff5cf1beb96 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21b96)
    #4 0x55fa3bbb6d49 in _start (/out/package/ex3+0xed49)

0x607000000090 is located 0 bytes inside of 80-byte region [0x607000000090,0x6070000000e0)
allocated by thread T0 here:
    #0 0x7ff5d0930608 in operator new[](unsigned long) (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xe0608)
    #1 0x55fa3bbbe88f in intMatrix::intMatrix(int, int, int) (/out/package/ex3+0x1688f)
    #2 0x55fa3bbba507 in main (/out/package/ex3+0x

Hints

Your answer may be identical to the JOJ answer in the first several lines.

However, the main problem you meet now is Runtime Error. And the exit code of your program is 1, which should be 0.

Please double check your code to solve this problem and try again.

Your Answer

Testing saveTo 1: 4 pts
Filename: out.txtMatrix Information:
rows: 4
cols: 5
In your out.txt
0,1,2,3,4
5,6,7,8,9
10,11,12,13,14
15,16,17,18,19

JOJ Answer

Testing saveTo 1: 4 pts
Filename: out.txtMatrix Information:
rows: 4
cols: 5
In your out.txt
0,4,8,12,16
1,5,9,13,17
2,6,10,14,18
3,7,11,15,19