Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit bc9cdf5

Browse files
Update README.md
1 parent 7cd9fd4 commit bc9cdf5

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

‎README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ This repository contains python programming with data structures and algorithms.
2424
- [String Formatting](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/String%20Formatting.py)
2525
- [Conditional Statements](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Conditional%20Statements.py)
2626
- [Loop](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Loop.py)
27+
- [List(Array) and String](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/List(Array)%20and%20String.py)
28+
2729

2830

2931

@@ -32,12 +34,21 @@ This repository contains python programming with data structures and algorithms.
3234
- [UVa](https://uva.onlinejudge.org/)
3335
- (1) [10055 - Hashmat the Brave Warrior ](http://uhunt.onlinejudge.org/id/760709)
3436
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/UVa/10055%20Hashmat%20the%20Brave%20Warrior.py)
37+
- (2) [11799 - Horror Dash](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=2899)
38+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/UVa/11799%20-%20Horror%20Dash.py)
39+
- (3) [10370 - Above Average](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1311)
40+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/UVa/10370%20-%20Above%20Average.py)
3541

3642

3743

3844
- [Spoj](http://www.spoj.com/)
3945
- (1) [TEST - Life, the Universe, and Everything](http://www.spoj.com/problems/TEST/)
4046
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Spoj/TEST%20-%20Life%2C%20the%20Universe%2C%20and%20Everythin.py)
47+
48+
- (2) [ADDREV - Adding Reversed Numbers](http://www.spoj.com/problems/ADDREV/)
49+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Spoj/ADDREV%20-%20Adding%20Reversed%20Numbers.py)
50+
51+
4152

4253

4354

@@ -46,6 +57,10 @@ This repository contains python programming with data structures and algorithms.
4657
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/CodeChef/Life%2C%20the%20Universe%2C%20and%20Everything.py)
4758
- (2) [N different palindromes](https://www.codechef.com/SNCKPA16/problems/NDIFFPAL)
4859
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/CodeChef/N%20different%20palindromes.py)
60+
- (3) [Devu and an Array](https://www.codechef.com/problems/DEVARRAY)
61+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/CodeChef/Devu%20and%20an%20Array.py)
62+
63+
4964

5065

5166

@@ -58,31 +73,53 @@ This repository contains python programming with data structures and algorithms.
5873

5974
- (3) [1209. 1, 10, 100, 1000...](https://timus.spatarel.ro/problem.aspx%3Fspace=1&num=1209)
6075
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Timus/1209.%201%2C%2010%2C%20100%2C%201000....py)
76+
- (4) [1000. A+B Problem](http://acm.timus.ru/problem.aspx?space=1&num=1000)
77+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Timus/1000.%20A%2BB%20Problem.py)
78+
79+
80+
81+
6182

6283

6384
- [Codeforces](http://codeforces.com/)
6485
- (1) [A. Theatre Square](http://codeforces.com/problemset/problem/1/A)
6586
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Codeforces/A.%20Theatre%20Square.py)
6687
- (2) [A. Watermelon](http://codeforces.com/problemset/problem/4/A)
6788
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Codeforces/A.%20Watermelon.py)
89+
- (3) [A. Straight «A»](http://codeforces.com/contest/810/problem/A)
90+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/Codeforces/A.%20Straight%20%C2%ABA%C2%BB.py)
6891

6992

7093

94+
95+
7196
- [AtCoder](http://atcoder.jp/)
7297
- (1) [B - Two Switches](http://abc070.contest.atcoder.jp/tasks/abc070_b)
7398
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/AtCoder/B%20-%20Two%20Switches.py)
99+
- (2) [D - Walk and Teleport](http://abc052.contest.atcoder.jp/tasks/arc067_b)
100+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/AtCoder/D%20-%20Walk%20and%20Teleport.py)
74101

75102

103+
104+
105+
76106

77107
- [HackerRank](https://www.hackerrank.com/dashboard)
78108
- (1) [Say "Hello, World!" With Python](https://www.hackerrank.com/challenges/py-hello-world)
79109
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/HackerRank/Say%20%22Hello%2C%20World!%22%20With%20Python.py)
80110

81111
- (2) [Loops](https://www.hackerrank.com/challenges/python-loops/problem)
82112
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/HackerRank/Loops.py)
113+
- (3) [String Split and Join](https://www.hackerrank.com/challenges/python-string-split-and-join/problem)
114+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/HackerRank/String%20Split%20and%20Join.py)
115+
- (4) [Find a string](https://www.hackerrank.com/challenges/find-a-string/problem)
116+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/HackerRank/Find%20a%20string.py)
83117

84118

85119

120+
121+
122+
86123
- [URI](https://www.urionlinejudge.com.br/judge/en)
87124
- (1) [1103 - Alarm Clock](https://www.urionlinejudge.com.br/judge/en/problems/view/1103)
88125
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/URI/1103%20-%20Alarm%20Clock.py)
@@ -92,3 +129,9 @@ This repository contains python programming with data structures and algorithms.
92129

93130
- (3) [1161 - Factorial Sum](https://www.urionlinejudge.com.br/judge/en/problems/view/1161)
94131
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/URI/1161%20Factorial%20Sum.py)
132+
133+
- (4) [1026 To Carry or not to Carry](https://www.urionlinejudge.com.br/judge/en/problems/view/1026)
134+
- [Solution](https://github.com/rezwanulhaquerezwan/python-programming-with-data-structures-and-algorithms/blob/master/URI/1026%20-%20To%20Carry%20or%20not%20to%20Carry.py)
135+
136+
137+

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /