Skip to content
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

Week1 #22

Open
wants to merge 43 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
0e19e59
Create add about.md
VicDik Jun 17, 2021
7e863e6
Rename add about.md to about.md
VicDik Jun 17, 2021
06a235d
Update about.md
VicDik Jun 17, 2021
3cb12f0
Update about.md
VicDik Jun 17, 2021
45e224f
Create chapter1.md
VicDik Jun 17, 2021
38f29a3
Create week1_solutions.md
VicDik Jun 17, 2021
2fa9d2c
Create week1_solutions.md
VicDik Jun 17, 2021
cb47fca
Create week1_solutions.md
VicDik Jun 17, 2021
9317aa5
Create week1_solutions.md
VicDik Jun 17, 2021
b7089c2
Update chapter1.md
VicDik Jun 17, 2021
d1704cc
Update chapter1.md
VicDik Jun 17, 2021
5dce0e1
Update chapter1.md
VicDik Jun 18, 2021
b731245
Update chapter1.md
VicDik Jun 18, 2021
62ef3bc
Update chapter1.md
VicDik Jun 19, 2021
3986049
Update chapter1.md
VicDik Jun 24, 2021
2793d99
Update chapter1.md
VicDik Jun 24, 2021
211c608
Update week1_solutions.md
VicDik Jul 1, 2021
835b498
Update week1_solutions.md
VicDik Jul 1, 2021
45e9ef6
Update week1_solutions.md
VicDik Jul 1, 2021
f25d7c7
Update week1_solutions.md
VicDik Jul 1, 2021
e40df5b
Update week1_solutions.md
VicDik Jul 1, 2021
597a416
Update week1_solutions.md
VicDik Jul 1, 2021
e7f8524
Update week1_solutions.md
VicDik Jul 1, 2021
cf6bf4e
Update week1_solutions.md
VicDik Jul 1, 2021
e96fab2
Update week1_solutions.md
VicDik Jul 1, 2021
6fe5cdf
Update week1_solutions.md
VicDik Jul 1, 2021
c1ef49d
Update week1_solutions.md
VicDik Jul 1, 2021
57848fa
Update week1_solutions.md
VicDik Jul 1, 2021
21042cf
Update week1_solutions.md
VicDik Jul 1, 2021
9d4b342
Update week1_solutions.md
VicDik Jul 1, 2021
32b45f6
Update week1_solutions.md
VicDik Jul 1, 2021
996adba
Update week1_solutions.md
VicDik Jul 1, 2021
c771438
Update week1_solutions.md
VicDik Jul 1, 2021
8e2177c
Update week1_solutions.md
VicDik Jul 1, 2021
41261c6
Update week1_solutions.md
VicDik Jul 1, 2021
e4dc9e8
Create h.py
VicDik Jul 1, 2021
1076374
Update chapter1.md
VicDik Jul 1, 2021
031310e
Delete h.py
VicDik Jul 1, 2021
5f6e285
Update week1_solutions.md
VicDik Jul 2, 2021
585b8bf
Add solutions rosalind
VicDik Jul 5, 2021
c059195
Upgrade my solutions
VicDik Jul 6, 2021
9c0de59
Create synopsis_chapter1
VicDik Jul 6, 2021
0de2067
asgfsdgfd
VicDik Jul 6, 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
4 changes: 2 additions & 2 deletions students/VicDik/codewars/week1_solutions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 1. Unique on order

''' def unique_in_order(unique:str):
``` def unique_in_order(unique:str):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

три лапки слово питон новая строка

list_1 = []
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

странное название переменной, нужно переназвать чтобы было понятно что в ней

for id in range(len(unique)):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

len(unique) - в переменную нужно вынести, ты каждый раз вычисляешь ее

if id == len(unique) - 1:
Expand All @@ -9,4 +9,4 @@
pass
else:
list_1.append(unique[id])
return list_1 '''
return list_1 ```