Skip to content

Commit fabf789

Browse files
authored
Merge pull request #8 from allEyezOnCode/add-url-to-each-problem
Add url to each problem
2 parents 8ef78ef + 058e89c commit fabf789

File tree

114 files changed

+114
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+114
-0
lines changed

BasicDataTypes/Findingthepercentage.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/finding-the-percentage/problem
78
'''
89
# Enter your code here. Read input from STDIN. Print output to STDOUT
910
n=int(input())

BasicDataTypes/FindtheSecondLargestNumber.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/find-second-maximum-number-in-a-list/problem
78
'''
89
# Enter your code here. Read input from STDIN. Print output to STDOUT
910
n=int(raw_input())

BasicDataTypes/ListComprehensions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/list-comprehensions/problem
78
'''
89
# Enter your code here. Read input from STDIN. Print output to STDOUT
910
x=int(raw_input())

BasicDataTypes/Lists.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/python-lists/problem
78
'''
89
# Enter your code here. Read input from STDIN. Print output to STDOUT
910
ar=[]

BasicDataTypes/NestedLists.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/nested-list/problem
78
'''
89
# Enter your code here. Read input from STDIN. Print output to STDOUT
910
from collections import OrderedDict

BasicDataTypes/Tuples.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/python-tuples/problem
78
'''
89
# Enter your code here. Read input from STDIN. Print output to STDOUT
910
n=int(raw_input())

BuiltIns/AnyorAll.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/any-or-all/problem
78
'''
89
n = int(input())
910
ar = list(map(int,input().split()))

BuiltIns/Input.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/input/problem
78
'''
89
x,k=list(map(int,raw_input().split()))
910
print(input() == k)

BuiltIns/PythonEvaluation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/python-eval/problem
78
'''
89
eval(input())

BuiltIns/SortData.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Domain : Python
55
Author : Ahmedur Rahman Shovon
66
Created : 15 July 2016
7+
Problem : https://www.hackerrank.com/challenges/python-sort-sort/problem
78
'''
89
n, m = map(int,input().split())
910
ar = []

0 commit comments

Comments
 (0)