Skip to content

Practice exercise prerequisites & practices tags #2377

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

Merged
merged 36 commits into from
Mar 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
4c5b6ab
Added prerequisites and practices for hello world, twofer, raindrops,โ€ฆ
BethanyG Mar 2, 2021
8c26e42
Added prerequisites and practices for matrix, hamming, and isogram.
BethanyG Mar 3, 2021
a81dd94
Added prerequisites and practices for twelve-days, word-count, scrabbโ€ฆ
BethanyG Mar 3, 2021
bfabc8b
Added prerequisites and practices for kindergarten-garden, grade-schoโ€ฆ
BethanyG Mar 3, 2021
52c5c96
Added prerequisites and practices for markdown, clock, and tournament.
BethanyG Mar 3, 2021
fd4c37b
Added prerequisites and practices for Bookstore.
BethanyG Mar 3, 2021
a61d1a5
Added prerequisites and practices for etl.
BethanyG Mar 3, 2021
937b0b1
Added prerequisites and practices for flatten-array, sub-list, atbashโ€ฆ
BethanyG Mar 3, 2021
db426f5
Added prerequisites and practices for wordy and say.
BethanyG Mar 3, 2021
fe2edc4
Core exercises and a few side exercises tagged.
BethanyG Mar 3, 2021
6a1184e
Added prerequisites and practices for pangram, robot-name, protein-trโ€ฆ
BethanyG Mar 3, 2021
3b3451f
Added prerequisites and practices for perfect-numbers, phone-numbers,โ€ฆ
BethanyG Mar 3, 2021
4423a1b
Added prerequisites and practices for collatz-conjecture,difference-oโ€ฆ
BethanyG Mar 3, 2021
2c3c216
Added prerequisites and practices for saddle-points, triangle, grainsโ€ฆ
BethanyG Mar 3, 2021
ec2ae30
Added prerequisites and practices for allergies, bob, matching-brackeโ€ฆ
BethanyG Mar 3, 2021
bf244c5
Added prerequisites and practices for simple-cipher, sum-of-multiplesโ€ฆ
BethanyG Mar 4, 2021
5aa1caf
Added prerequisites and practices for sieve, tree-building, go-countiโ€ฆ
BethanyG Mar 4, 2021
446295b
Added prerequisites and practices for beer-song, secret-handshake, laโ€ฆ
BethanyG Mar 4, 2021
ea53659
Prettier.
BethanyG Mar 4, 2021
9b07d31
Added prerequisites and practices for minesweeper, ocr-numbers, pokerโ€ฆ
BethanyG Mar 4, 2021
998dd7e
Added prerequisites and practices for scale-generator.
BethanyG Mar 4, 2021
bd204e3
Added prerequisites and practices for binary-search-tree, affine-ciphโ€ฆ
BethanyG Mar 5, 2021
a195ecc
Added prerequisites and practices for variable-length-quantity, two-bโ€ฆ
BethanyG Mar 5, 2021
c789a9d
Added prerequisites and practices for list-ops, queen-attack, robot-sโ€ฆ
BethanyG Mar 6, 2021
d9bef95
Added prerequisites and practices for simple-linked-list, linked-listโ€ฆ
BethanyG Mar 7, 2021
4707bb2
Added prerequisites and practices for dot-dsl, knapsack, circular-bufโ€ฆ
BethanyG Mar 7, 2021
6fa152a
Added prerequisites and practices for transpose, grep, bowling, and fโ€ฆ
BethanyG Mar 8, 2021
7a631a1
Added prerequisites and practices for ledger, word-search, satellite,โ€ฆ
BethanyG Mar 8, 2021
a3558ed
Added prerequisites and pov, diamond, spiral-matrix, and food-chain.
BethanyG Mar 8, 2021
dd2e8f9
Added prerequisites and practices for dominoes, rest-api, nth-prime, โ€ฆ
BethanyG Mar 9, 2021
0ba02b8
Added prerequisites and practices for rail-fence-cipher, zebra-puzzleโ€ฆ
BethanyG Mar 10, 2021
8774ebf
Added prerequisites and practices for diffie-hellman, dnd-character,โ€ฆ
BethanyG Mar 10, 2021
28aac60
Added prerequisites and practices for leap, resistor-color, resistor-โ€ฆ
BethanyG Mar 10, 2021
03ad206
Added prerequisites and practices for rna-transcription, space-age, yโ€ฆ
BethanyG Mar 10, 2021
12d6708
Added prerequisites and practices for bank-account, hangman, rationalโ€ฆ
BethanyG Mar 10, 2021
7981fd2
Fixed some spelling and formatting errors.
BethanyG Mar 12, 2021
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 concepts/basics/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ x = "foo" #this is an in-line comment

The first statement of a function body can optionally be a [_docstring_][docstring], which concisely summarizes the function or object's purpose. These docstrings are read by automated documentation tools, and are returned by calling **doc** on the function, method, or class. . They are recommended for programs of any size where documentation is needed:


```python
#an example on a user-defined function
def number_to_the_power_of(number_one, number_two):
Expand Down
2 changes: 2 additions & 0 deletions concepts/basics/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Python puts a strong emphasis on code readability and (_similar to Haskell_) use

## Getting Started


Objects are [assigned][assignment statements] to [names][naming and binding] in Python via the `=` or _assignment operator_. [Variables][variables] are written in [`snake_case`][snake case], and _constants_ usually in `SCREAMING_SNAKE_CASE`. A name (_variable or constant_) is not itself _typed_, and can be attached or re-attached to different objects over its lifetime. For extended naming conventions and advice, see [PEP 8][pep8].

```python
Expand All @@ -18,6 +19,7 @@ Objects are [assigned][assignment statements] to [names][naming and binding] in

Constants are usually defined on a [module][module] or _global_ level, and although they _can_ be changed, they are _intended_ to be named only once. Their `SCREAMING_SNAKE_CASE` is a message to other developers that the assignment should not be altered:


```python
# All caps signal that this is intended as a constant
MY_FIRST_CONSTANT = 16
Expand Down
Loading