-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Suffix dev #1502
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
Open
chriskanten
wants to merge
96
commits into
cp-algorithms:cpp-tips
Choose a base branch
from
chriskanten:suffix-dev
base: cpp-tips
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Suffix dev #1502
Conversation
This file contains hidden or 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
Fibonacci: better motivation for matrix form
Maybe a dotted line would show the matrix [[F2, F1],[F1,F0]] can be viewed as two column vectors. Using only the matrix power saves one matrix-vector multiply.
Try indentation.
Added knuth proof comment
Update treap.md
Grammatical Error Removed
…nline.md The original text stated that the number of bridges decreases by “two or more,” which is incorrect in some cases. For example, in this graph: 1-2-3-1 3-4 4-5-6-4 There is one bridge (3–4). Adding an edge between 1 and 4 removes only that single bridge. This change updates the text to say “one or more,” which is accurate in all cases.
an unit -> a unit. While the word unit starts with a 'u', the sound made pronounced is actually the of a consonant. Other phrases with similar properties include "a university" and "a unicorn".
Fix grammar in binary-exp.md
Update chinese-remainder-theorem.md
Update linear-system-gauss.md
…ch-in-manhattan-mst-distance Patchfix in Manhattan MST Distance Page Images
Update polynomial.md
Corrected a grammatical error by adding the missing verb 'is' in the website content. This ensures proper sentence structure and improves readability.
Transformation \alpha was wrong, because it should just Quote: rotation of the plane followed by a dilation about a center Wrong transformation: (x=1,y=100) -> (x'=101, y'=-99) (wrong transformation is 135 degrees clockwise in this case, not 45), Correct transformation: (x=1,y=100) -> (x'=101, y'=99) Basically, I removed reflection over line x
Fix grammar error in linear-diophantine-equation.md
icpc 2011 problem pdf replaced with practice link
docs: fix bridge count wording to "one or more" in bridge-searching-online.md
Additional Problems on Burnside Lemma
New original article
* Solicit donations on the website * Add donation bar warning * Less intrusive donation banner * default link color in donation banner * reduce HIDE_DAYS to 90 * Update changelog with donation system overhaul --------- Co-authored-by: Michael Hayter <mehayter@gmail.com>
Why does it have 35 files modified and so many commits 💀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
I am Chris from CA.
I just added the suffix-automaton practice file.