-
-
Notifications
You must be signed in to change notification settings - Fork 544
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
pascals-triangle: split into instructions and introduction #2449
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
890b363
pascals-triangle: split into instructions and introduction
ErikSchierboom daa6470
Update instructions.md
ErikSchierboom e8bb50d
Add a bit more text
ErikSchierboom 409f601
Improve instructions and introduction
ErikSchierboom e5b2dce
Update exercises/pascals-triangle/introduction.md
ErikSchierboom 568ea25
Update exercises/pascals-triangle/introduction.md
ErikSchierboom 1746fe3
Update exercises/pascals-triangle/introduction.md
ErikSchierboom 3193643
Remove boring part
ErikSchierboom 56e0b16
Update exercises/pascals-triangle/introduction.md
ErikSchierboom 8ff07c3
Update introduction.md
ErikSchierboom 80d7132
Update introduction.md
ErikSchierboom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Instructions | ||
|
||
Your task is to output the first N rows of Pascal's triangle. | ||
|
||
[Pascal's triangle][wikipedia] is a triangular array of positive integers. | ||
|
||
In Pascal's triangle, the number of values in a row is equal to its row number (which starts at one). | ||
Therefore, the first row has one value, the second row has two values, and so on. | ||
|
||
The first (topmost) row has a single value: `1`. | ||
Subsequent rows' values are computed by adding the numbers directly to the right and left of the current position in the previous row. | ||
|
||
If the previous row does _not_ have a value to the left or right of the current position (which only happens for the leftmost and rightmost positions), treat that position's value as zero (effectively "ignoring" it in the summation). | ||
|
||
## Example | ||
|
||
Let's look at the first 5 rows of Pascal's Triangle: | ||
|
||
```text | ||
1 | ||
1 1 | ||
1 2 1 | ||
1 3 3 1 | ||
1 4 6 4 1 | ||
``` | ||
|
||
The topmost row has one value, which is `1`. | ||
|
||
The leftmost and rightmost values have only one preceding position to consider, which is the position to its right respectively to its left. | ||
With the topmost value being `1`, it follows from this that all the leftmost and rightmost values are also `1`. | ||
|
||
The other values all have two positions to consider. | ||
For example, the fifth row's (`1 4 6 4 1`) middle value is `6`, as the values to its left and right in the preceding row are `3` and `3`: | ||
|
||
[wikipedia]: https://en.wikipedia.org/wiki/Pascal%27s_triangle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,22 @@ | ||||||||
# Introduction | ||||||||
|
||||||||
With the weather being great, you're not looking forward to spending an hour in a classroom. | ||||||||
Annoyed, you enter the class room, where you notice a strangely satisfying triangle shape on the blackboard. | ||||||||
Whilst waiting for your math teacher to arrive, you can't help but notice some patterns in the triangle: the outer values are all ones, each subsequent row has one more value than its previous row and the triangle is symmetrical. | ||||||||
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
|
||||||||
Weird! | ||||||||
|
||||||||
Not long after you sit down, your teacher enters the room and explains that this triangle is the famous [Pascal's triangle][wikipedia]. | ||||||||
|
||||||||
Over the next hour, your teacher reveals some amazing things hidden in this triangle: | ||||||||
|
||||||||
- It can be used to compute how many ways you can pick K elements from N values. | ||||||||
- It contains the Fibonacci sequence. | ||||||||
- If you color odd and even numbers differently, you get a beautiful pattern called the [Sierpiński triangle][wikipedia-sierpinski-triangle]. | ||||||||
|
||||||||
The teacher implores you and your classmates to lookup other uses, and assures you that there are lots more! | ||||||||
At that moment, the school bell rings. | ||||||||
You realize that for the past hour, you were completely absorbed in learning about Pascal's triangle. | ||||||||
You quickly grab your laptop from your bag and go outside, ready to enjoy both the sunshine _and_ the wonders of Pascal's triangle. | ||||||||
|
||||||||
[wikipedia]: https://en.wikipedia.org/wiki/Pascal%27s_triangle | ||||||||
[wikipedia-sierpinski-triangle]: https://en.wikipedia.org/wiki/Sierpi%C5%84ski_triangle |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I couldn't come up with a story here. I'm open to suggestions :)
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.
uh, I didn't even know you could comment on files, TIL.
Pascal's Triangle is a classic: here are some stuff you can do with it, maybe inspiration will strike:
It's all a bit nerdy, but that can be a good thing :)
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.
I think the third one is most suitable for a story. Thanks
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.
I had no idea there were so many things you could do with it!
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.
Oh, there's more, there are so many patterns in these numbers. Fibonacci numbers are also hiding in there.
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.
Much more!
An especially accessible list of patterns: Pascal's Triangle @ MathIsFun. Possibly interesting exercise: spot the duplicates. Most of the patterns listed here are really the very same pattern, just phrased in different ways.
Skim the images in the Wikipedia article for hints at more patterns, elaborated on in the text.