-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[Simple Linked List]: Added instruction append and hints #3026
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Simple Linked List]: Added instruction append and hints #3026
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
… instruction append.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only one statement from me, otherwise I think it looks really good!
exercises/practice/simple-linked-list/.docs/instructions.append.md
Outdated
Show resolved
Hide resolved
exercises/practice/simple-linked-list/.docs/instructions.append.md
Outdated
Show resolved
Hide resolved
Until I can think of a way to represent in markdown that renders well for HTML also.
exercises/practice/simple-linked-list/.docs/instructions.append.md
Outdated
Show resolved
Hide resolved
…nd array based stacks. Added array-stack.svg and linked-list-stack.svg files to .docs Inserted linked-list-stack.svg and array-stack.svg into instructions append Inserted linked-list-stack.svg into hints.md
@ErikSchierboom -- a few questions for you (because there is nothing I love more than being a problem child 😆 ):
|
@BethanyG Sorry, I missed in my huge list of notifications. I'll look at it next week! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These .svg files were under 1MB in size, so I decided to not upload them to exercism/v3-files -- should I have uploaded them anyway?
I'm not sure we have a policy, but the existing files there are of a similar size to the one you're uploading (see e.g. https://github.com/exercism/v3-files/blob/main/python/string-formatting/decision_tree.png), so I think uploading to v3-files
makes sense.
Was it OK that I referenced the .doc folder for the image used in the .meta/hints file?
No, because the .docs
and .meta
folders are treated specially and their files won't be downloaded via the CLI (well, they're rendered as README.md, HELP.md and HINTS.md files).
The images won't render in the UI right now because they aren't (yet) at the URL. Is there another way I can embed or reference them...or should I leave the links as-is?
If you'll upload them to v3-files, you can reference them with a full URL: https://github.com/exercism/julia/blob/4f06b8f7ab0a67de5d817d04732ed5db1c3033bd/exercises/practice/killer-sudoku-helper/.docs/instructions.md
Are these better as in-line SVG? (I an guessing no)
No I don't think so :)
And sorry for the delay in replying! |
@ErikSchierboom I reopened the PR to |
Ok. I think things are finally sorted (both here, and in my brain) 😉 . Re-requesting review. Links to images should resolve now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Double-checked graphic descriptions and verified all links correctly work.
Per discussions/questions in #3009.
Added resources, explanations, and hints for the exercise.