Skip to content

Week2 #19

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 33 commits into from
Apr 28, 2019
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7a8685b
Displaying if condition correctly
IdoElk Apr 15, 2019
a737222
Typo
IdoElk Apr 15, 2019
6d3a627
English fixes
IdoElk Apr 15, 2019
270c287
Minor typo fixes
IdoElk Apr 15, 2019
4225ec8
Typo fixes
IdoElk Apr 15, 2019
f84d0e0
Fixes
IdoElk Apr 16, 2019
4026819
Merge branch 'week2' of https://github.com/PythonFreeCourse/Notebooks…
IdoElk Apr 16, 2019
55b40d0
Added code cells for user's exercises and minor fixes
IdoElk Apr 16, 2019
9708626
Using newly learned formatted string in example
IdoElk Apr 16, 2019
d6cea05
Pseudocode explanation
IdoElk Apr 16, 2019
bfb8506
Improved explanation
IdoElk Apr 16, 2019
293fab2
Fixed pseudocode example
IdoElk Apr 16, 2019
4f8e1d5
Final stage for pseudocode
IdoElk Apr 16, 2019
767f1d6
Matched variable names
IdoElk Apr 16, 2019
3711ccf
Added code box for user's exercise
IdoElk Apr 16, 2019
ab52486
Capital letters title
IdoElk Apr 16, 2019
4d9dbee
Polished explanation for replace and added code cells
IdoElk Apr 16, 2019
d702e6f
Code cells for remaining exercises and lowered text
IdoElk Apr 16, 2019
9d16114
Reset cell's execution count
IdoElk Apr 16, 2019
9be008e
Added code cells for all missed exercises
IdoElk Apr 16, 2019
eff152e
Notebook 4 PR fixes
IdoElk Apr 16, 2019
6c75208
CR Fixes
IdoElk Apr 16, 2019
cf4acfe
Typo
IdoElk Apr 17, 2019
307c5b2
Reworded PM list example
IdoElk Apr 17, 2019
0b01cef
Faster learning!
IdoElk Apr 17, 2019
ef88706
Integrated pseudocode explanation in text
IdoElk Apr 17, 2019
49acc6a
Removed all empty code cells placed for exercises
IdoElk Apr 17, 2019
f44c4aa
Merge branch 'week2' of https://github.com/PythonFreeCourse/Notebooks…
IdoElk Apr 21, 2019
13cdbf3
Fstring wording fix
IdoElk Apr 21, 2019
5f062ed
Pseudocode -> Algorithm and improved wording
IdoElk Apr 22, 2019
6c6b25d
Removed space
IdoElk Apr 23, 2019
9d27cbd
Reworded 'strip' explanation
IdoElk Apr 23, 2019
da4cf83
Merge pull request #14 from PythonFreeCourse/week2_fixes
IdoElk Apr 28, 2019
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
Prev Previous commit
Next Next commit
Pseudocode -> Algorithm and improved wording
  • Loading branch information
IdoElk committed Apr 22, 2019
commit 5f062ed717f5e06ff6ddbce24de03edc45cf3c96
11 changes: 5 additions & 6 deletions week2/5_String_Methods.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,7 @@
"metadata": {},
"source": [
"<p style=\"text-align: right; direction: rtl; float: right; clear: both;\">\n",
" כאשר מעבירים לה מחרוזת כארגומנט, היא תבצע את הפסאודוקוד הבא:<br>\n",
" * <dfn>פסאודוקוד</dfn> הוא תיאור מצומצם וקריא לאלגוריתם במחשב אשר נראה כמו קוד אך בפועל אינו מייצג אף שפת תכנות.<br>\n",
" כאשר מעבירים לה מחרוזת כארגומנט, היא תבצע את האלגוריתם הבא:\n",
"</p>"
]
},
Expand All @@ -452,14 +451,14 @@
"metadata": {},
"source": [
"<ol style=\"text-align: right; direction: rtl; float: right; clear: both;\">\n",
" <li>עבור כל תו מצד <b>שמאל</b> של המחרוזת</li>\n",
" <li>תעבור תו-תו מההתחלה של המחרוזת:</li>\n",
" <ul style=\"text-align: right; direction: rtl; float: right; clear: both;\">\n",
" <li>במידה והתו הנוכחי מוכל בארגומנט מחק אותו ועבור לתו הבא</li>\n",
" <li>כל עוד התו הינו אחד מהארגומנטים מחק אותו והמשך</li>\n",
" <li>אחרת, סיימת את הפעולה.</li>\n",
" </ul>\n",
" <li>עבור כל תו מצד <b>ימין</b> של המחרוזת</li>\n",
" <li>תעבור תו-תו מהסוף של המחרוזת:</li>\n",
" <ul style=\"text-align: right; direction: rtl; float: right; clear: both;\">\n",
" <li>במידה והתו הנוכחי מוכל בארגומנט מחק אותו ועבור לתו הבא</li>\n",
" <li>כל עוד התו הינו אחד מהארגומנטים מחק אותו והמשך</li>\n",
" <li>אחרת, סיימת את הפעולה.</li>\n",
" </ul>\n",
" <li>החזר את המחרוזת החדשה</li>\n",
Expand Down