Skip to content
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

Added note to 1511 2D array problem #262

Merged
merged 2 commits into from
Aug 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/course-revision/1511-23T3/2d_malloc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ $ ./2d_malloc 10 10

- You may assume there is enough memory to allocate the array on the heap.
- You may **not** store the arrays on the stack.
- Note that this is not a "true" 2D array, but rather a 1D array pointing to 1D arrays. There are slight differences (e.g. it is not stored contiguously in memory), but you don't need to worry about this, it can be "used as" a 2D array!
- You do not need to worry about a horrific eldritch abomination destroying your computer midway through runtime.

## CSE Autotest
Expand Down
Loading