akanesora

Results 11 comments of akanesora

I set raw to 1, it still only show exit code Here is my vimrc setting: ``` let g:asyncrun_open=6 nnoremap :AsyncRun clang "$(VIM_FILEPATH)" -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" nnoremap :AsyncRun -raw=1 -cwd=$(VIM_FILEDIR) "$(VIM_FILEDIR)/$(VIM_FILENOEXT)"...

I met exactly the same issue, my platform is M1 pro with osx 12.4, hidden bar version 1.8(12)

@Datta0 thanks for sharing the tip!

I searched google for a while, it seems after osx 11 the mac had disabled SIP backdoor so simply` csrutil disable `will not work, had you checked this on M1...

in particular, through this [answer](https://superuser.com/questions/1681655/how-to-change-a-read-only-file-system-to-a-writable-file-system-on-mac-monterey), it seems the system file is totally unchangeable. Please help to provide more info about how to apply those car files.

@tsujp please help to check this issue

> Ye I can tell it's a lot work to do for replacing system file right now. I will leave it since I have many priorities now...

https://github.com/youngyangyang04/leetcode-master/blob/fbf2e280294b97cc560529cb3f584887312efda9/problems/0053.%E6%9C%80%E5%A4%A7%E5%AD%90%E5%BA%8F%E5%92%8C%EF%BC%88%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92%EF%BC%89.md?plain=1#L75 如果nums只包含一个元素,应该返回nums[0]而不是0

https://github.com/youngyangyang04/leetcode-master/blob/49e1ab2b575e6a52f79f1d5b8693a575573e3240/problems/0115.%E4%B8%8D%E5%90%8C%E7%9A%84%E5%AD%90%E5%BA%8F%E5%88%97.md?plain=1#L48 表述错误,此时考虑的是若使用s[i-1]和t[j-1]匹配,则在`以i-1为结尾的s子序列中出现以j-1为结尾的t的个数`等价于`以i-2为结尾的s子序列中出现以j-2为结尾的t的个数`