在电脑上跑结果可以 但在Leetcode上跑时会显示Runtime error 错误讯息如下:
munmap_chunk(): invalid pointer: 0x000000000187d480 ***
Leetcode 448网页:
https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array/
我的程式码:
https://pastebin.com/yrw51vV3
输出页面:
http://imgur.com/a/6DQA3
我尝试用in-place的写法,把出现过的数字在原本的阵列中index清成0
最后再检查非0的index就是没出现过的数字
我写完函式后放在main里面跑跑看 input都可以跑出与预期output相同
但放到Leetcode上就会显示invalid pointer
请问是函式中是哪边出了问题呢
谢谢