How to keep data structure comments? #109
Answered
by
j178
xdliyushen
asked this question in
Q&A
-
Verify steps
DescriptionWishing there was a data structure comment that uses in the code inserts before the document. /**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/ Possible SolutionNo response |
Beta Was this translation helpful? Give feedback.
Answered by
j178
Feb 7, 2023
Replies: 2 comments
-
Thank you for opening this! These comments are deleted intentionally by |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
j178
-
Thanks! It works! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for opening this!
These comments are deleted intentionally by
removeUselessComments
modifier, if you need them, you can removeremoveUselessComments
fromcode.modifiers
in your config file(located in ~/.config/leetgo/config.yaml).