Skip to content

Commit c3e1655

Browse files
authored
Update and rename min_Combination_qn4.py to Solution_Tcs_CodeVita_minCombinations.py
1 parent bcda0a8 commit c3e1655

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

min_Combination_qn4.py renamed to Solution_Tcs_CodeVita_minCombinations.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ def myFunction(num_1,num_2):
1010
return itr
1111
itr = itr + 1
1212

13-
test = int(input("No of test:"))
13+
test = int(input())
1414
ans_list = []
1515
if test>=1 and test<=1000:
1616
for i in range(1,test+1):
17-
print("Enter n1 and n2 seperated by space :")
1817
num_1,num_2 = input().split(" ")
1918
num_1 = int(num_1)
2019
num_2 = int(num_2)

0 commit comments

Comments
 (0)