mirror of
https://github.com/Xevion/visuals.git
synced 2025-12-06 05:17:09 -06:00
19 lines
597 B
Markdown
19 lines
597 B
Markdown
# visuals
|
|
|
|
A simple repo storing animations I've created to visually present Computer Science related animations.
|
|
|
|
- `add-two-numbers`
|
|
|
|
Presents two numbers stored in LinkedLists being added together and output in a LinkedList.
|
|
|
|
Using elementary math and number carrying, this solution is quite fast and allows essentially infinitely
|
|
large numbers to be added together without any problems.
|
|
|
|
[Animation Video](https://youtu.be/o_ANfIv7uJY)
|
|
|
|
[Animation Source](./add-two-numbers/main.py)
|
|
|
|
[LeetCode Problem](https://leetcode.com/problems/add-two-numbers/)
|
|
|
|
|