-
-
Notifications
You must be signed in to change notification settings - Fork 53
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
[Misc]: Add updated concept tree map #580
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,141 @@ | ||||||
# Concept Tree | ||||||
|
||||||
This is a concept tree for the Crystal Syllabus. | ||||||
It is a work in progress, it was last updated on 2024-01-13. | ||||||
All of the concept which has an exercise around it has been implemented, the rest is still to be implemented. | ||||||
|
||||||
|
||||||
```mermaid | ||||||
graph TD | ||||||
|
||||||
subgraph A [Lasagna] | ||||||
a[Basics] | ||||||
end | ||||||
|
||||||
subgraph B [Crystal Hunter] | ||||||
b(bools) | ||||||
end | ||||||
|
||||||
subgraph J [Number Types] | ||||||
ac(Number Types) | ||||||
end | ||||||
|
||||||
subgraph C [Wellington's Weather Station] | ||||||
c(Numbers) | ||||||
end | ||||||
|
||||||
subgraph E [Johannes' Juice Maker] | ||||||
e(Classes) | ||||||
end | ||||||
|
||||||
subgraph F [Party Robot] | ||||||
f(Strings) | ||||||
end | ||||||
|
||||||
subgraph S [Foto Fusionist] | ||||||
d(binary & octal & hexdecimal) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
end | ||||||
|
||||||
subgraph T [Secrets] | ||||||
ad(Bit Manipulation) | ||||||
end | ||||||
|
||||||
subgraph G [High School Sweethear] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
g(string methods) | ||||||
end | ||||||
|
||||||
subgraph H [Meltdown Mitigiation] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
h(conditionals) | ||||||
end | ||||||
|
||||||
subgraph I [Intrest is intresting] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
i(return) | ||||||
j(while) | ||||||
end | ||||||
|
||||||
subgraph K [Bellebrook Basket League] | ||||||
k(modules) | ||||||
end | ||||||
|
||||||
subgraph L [Blackjack] | ||||||
v(case /switch/) | ||||||
end | ||||||
|
||||||
subgraph M [Castle Dinner] | ||||||
o(Nil) | ||||||
end | ||||||
|
||||||
subgraph M [Castle Dinner] | ||||||
o(Nil) | ||||||
end | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This node is a duplicate of the one above |
||||||
|
||||||
subgraph N [Library of Luton] | ||||||
l(Char) | ||||||
end | ||||||
|
||||||
subgraph O [Password Lock] | ||||||
w(Union type) | ||||||
end | ||||||
|
||||||
subgraph P [Chess Game] | ||||||
n(Range) | ||||||
end | ||||||
|
||||||
subgraph Q [Language List] | ||||||
q(Arrays) | ||||||
end | ||||||
|
||||||
subgraph R [Chaitanas Colossal Coaster] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
r(Array-methods) | ||||||
end | ||||||
|
||||||
subgraph U [Task Handler] | ||||||
s(Blocks/proc/) | ||||||
end | ||||||
|
||||||
A --> B | ||||||
A --> C | ||||||
B --> J | ||||||
C --> E | ||||||
E --> F | ||||||
F --> G | ||||||
G --> H | ||||||
H --> I | ||||||
J --> E | ||||||
H --> K | ||||||
H --> L | ||||||
H --> M | ||||||
I --> N | ||||||
N --> O | ||||||
M --> O | ||||||
N --> P | ||||||
P --> Q | ||||||
O --> Q | ||||||
Q --> R | ||||||
F --> S | ||||||
S --> T | ||||||
R --> U | ||||||
U --> t | ||||||
|
||||||
|
||||||
|
||||||
m(Getters/setters) | ||||||
p(raisining errors) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
t(enumeration) | ||||||
u(more enumeration) | ||||||
x(symbols) | ||||||
y(Tuples) | ||||||
z(Hashes) | ||||||
aa(Named Tuple) | ||||||
ab(Decompositon & multiple assignment) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
Q --> p | ||||||
t --> u | ||||||
u --> y | ||||||
u --> x | ||||||
x --> z | ||||||
y --> z | ||||||
z --> aa | ||||||
aa --> ab | ||||||
E --> m | ||||||
``` |
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.