在電腦上跑結果可以 但在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
請問是函式中是哪邊出了問題呢
謝謝