Record Case Detail

Notes

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

Stderr

=================================================================
==34856==ERROR: AddressSanitizer: attempting free on address which was not malloc()-ed: 0x7feffed49060 in thread T0
    #0 0x7feffee2c480 in operator delete[](void*) (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xe1480)
    #1 0x563436c79d99 in intMatrix::~intMatrix() (/out/package/ex3+0x16d99)
    #2 0x563436c73d17 in main (/out/package/ex3+0x10d17)
    #3 0x7feffd6b9b96 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21b96)
    #4 0x563436c72019 in _start (/out/package/ex3+0xf019)

Address 0x7feffed49060 is a wild pointer.
SUMMARY: AddressSanitizer: bad-free (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xe1480) in operator delete[](void*)
==34856==ABORTING

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 getElement 1: 3pts
Matrix Information:
rows: 7cols: 7Matrix[1][1] = 999

JOJ Answer

Testing getElement 1: 3pts
Matrix Information:
rows: 7
cols: 7
Matrix[1][1] = 999