-
Notifications
You must be signed in to change notification settings - Fork 12
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
Two problem generators similar in structure: "Find Coefficient of Term" and "Evaluate Probability of Choice" Generators #138
Open
NoahTheCorgi
wants to merge
89
commits into
CarletonComputerScienceSociety:master
Choose a base branch
from
NoahTheCorgi:master
base: master
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
Conversation
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
details about exactly how to implement the generators as well as copyright and course material permissions if any.
…of books in shelves problems can be generated The generate_question() in main.py now randomly creates the following three types of books in shelves questions. 1. How many ways to organize $a$ books in $b$ number of book shelves? 2. How many ways to organize $a$ books in $n$ out of $b$ bookshelves? (i.e. exactly $n$ out of $b$ shelves must be used.) 3. How many ways to organize $a$ books in $b$ number of bookshelves? ALL shelves must be used (i.e. there cannot be empty bookshelves.)
…proper question and answers dictionary
"string data" was fixed to "dictionary"
details about exactly how to implement the generators as well as copyright and course material permissions if any.
The answer choices output will have better mathematical mathjax syntax
deleted the commented out codes
Adjusted the problem scenario for "coefficient_of_term" generator so that it is unique compared other generators that cover similar scenarios from before. This should give a good enough variation for the finding coefficient type problems. |
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.
Some notes regarding implementation: