Skip to content

Commit 24e2d19

Browse files
committed
initial commit
0 parents  commit 24e2d19

18 files changed

+699
-0
lines changed

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"python.linting.pylintEnabled": true,
3+
"python.linting.enabled": true
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
'''
2+
Given an array of length N and an integer x, you need to find all the indexes where x is present in the input array. Save all the indexes in an array (in increasing order).
3+
Do this recursively. Indexing in the array starts from 0.
4+
Input Format :
5+
Line 1 : An Integer N i.e. size of array
6+
Line 2 : N integers which are elements of the array, separated by spaces
7+
Line 3 : Integer x
8+
Output Format :
9+
indexes where x is present in the array (separated by space)
10+
Constraints :
11+
1 <= N <= 10^3
12+
Sample Input :
13+
5
14+
9 8 10 8 8
15+
8
16+
Sample Output :
17+
1 3 4
18+
'''
19+
def firstIndex(arr, n, x):
20+
# Please add your code here
21+
if len(arr) == 0:
22+
return
23+
if arr[0] == x:
24+
print(n, end = ' ')
25+
firstIndex(arr[1:], n + 1, x)
26+
27+
# Main
28+
from sys import setrecursionlimit
29+
setrecursionlimit(11000)
30+
n=int(input())
31+
arr=list(int(i) for i in input().strip().split(' '))
32+
x=int(input())
33+
firstIndex(arr, 0, x)

basics_of_recursion/check_number.py

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
'''
2+
Given an array of length N and an integer x, you need to find if x is present in the array or not. Return true or false.
3+
Do this recursively.
4+
Input Format :
5+
Line 1 : An Integer N i.e. size of array
6+
Line 2 : N integers which are elements of the array, separated by spaces
7+
Line 3 : Integer x
8+
Output Format :
9+
'true' or 'false'
10+
Constraints :
11+
1 <= N <= 10^3
12+
Sample Input 1 :
13+
3
14+
9 8 10
15+
8
16+
Sample Output 1 :
17+
true
18+
Sample Input 2 :
19+
3
20+
9 8 10
21+
2
22+
Sample Output 2 :
23+
false
24+
'''
25+
def checkNumber(arr, x):
26+
# Please add your code here
27+
if len(arr) == 0:
28+
return False
29+
if arr[0] == x:
30+
return True
31+
return checkNumber(arr[1:], x)
32+
33+
# Main
34+
from sys import setrecursionlimit
35+
setrecursionlimit(11000)
36+
n=int(input())
37+
arr=list(int(i) for i in input().strip().split(' '))
38+
x=int(input())
39+
if checkNumber(arr, x):
40+
print('true')
41+
else:
42+
print('false')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
'''
2+
Given an array of length N and an integer x, you need to find and return the first index of integer x present in the array. Return -1 if it is not present in the array.
3+
First index means, the index of first occurrence of x in the input array.
4+
Do this recursively. Indexing in the array starts from 0.
5+
Input Format :
6+
Line 1 : An Integer N i.e. size of array
7+
Line 2 : N integers which are elements of the array, separated by spaces
8+
Line 3 : Integer x
9+
Output Format :
10+
first index or -1
11+
Constraints :
12+
1 <= N <= 10^3
13+
Sample Input :
14+
4
15+
9 8 10 8
16+
8
17+
Sample Output :
18+
1
19+
'''
20+
def firstIndex(arr, x):
21+
# Please add your code here
22+
if len(arr) == 0:
23+
return -1
24+
if arr[0] == x:
25+
return 0
26+
so = firstIndex(arr[1:], x)
27+
if so == -1:
28+
return -1
29+
else:
30+
return so + 1
31+
32+
# Main
33+
from sys import setrecursionlimit
34+
setrecursionlimit(11000)
35+
n=int(input())
36+
arr=list(int(i) for i in input().strip().split(' '))
37+
x=int(input())
38+
print(firstIndex(arr, x))
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
'''
2+
Given an array of length N and an integer x, you need to find and return the last index of integer x present in the array. Return -1 if it is not present in the array.
3+
Last index means - if x is present multiple times in the array, return the index at which x comes last in the array.
4+
You should start traversing your array from 0, not from (N - 1).
5+
Do this recursively. Indexing in the array starts from 0.
6+
Input Format :
7+
Line 1 : An Integer N i.e. size of array
8+
Line 2 : N integers which are elements of the array, separated by spaces
9+
Line 3 : Integer x
10+
Output Format :
11+
last index or -1
12+
Constraints :
13+
1 <= N <= 10^3
14+
Sample Input :
15+
4
16+
9 8 10 8
17+
8
18+
Sample Output :
19+
3
20+
'''
21+
## Read input as specified in the question.
22+
## Print output as specified in the question.
23+
def LastIndex(arr, n, x):
24+
# Please add your code here
25+
if len(arr) == 0:
26+
return -1
27+
if arr[n - 1] == x:
28+
return 0
29+
so = LastIndex(arr[0:n - 1], n - 1 , x)
30+
if so == -1:
31+
return -1
32+
else:
33+
return so + 1
34+
35+
# Main
36+
from sys import setrecursionlimit
37+
setrecursionlimit(11000)
38+
n=int(input())
39+
arr=list(int(i) for i in input().strip().split(' '))
40+
x=int(input())
41+
if LastIndex(arr, n, x) != -1:
42+
print(n - 1 - LastIndex(arr, n, x))
43+
else:
44+
print(-1)
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
Given the code to find out and return the number of digits present in a number recursively. But it contains few bugs, that you need to rectify such that all the test cases should pass.
3+
Input Format :
4+
Integer n
5+
Output Format :
6+
Count of digits
7+
Constraints :
8+
1 <= n <= 10^6
9+
Sample Input 1 :
10+
156
11+
Sample Output 1 :
12+
3
13+
Sample Input 2 :
14+
7
15+
Sample Output 2 :
16+
1
17+
*/
18+
int count(int n){
19+
if(n == 0){
20+
return 0;
21+
}
22+
int smallAns = count(n / 10);
23+
return smallAns + 1;
24+
}

basics_of_recursion/power.py

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
'''
2+
Write a program to find x to the power n (i.e. x^n). Take x and n from the user. You need to return the answer.
3+
Do this recursively.
4+
Input format :
5+
Two integers x and n (separated by space)
6+
Output Format :
7+
x^n (i.e. x raise to the power n)
8+
Constraints :
9+
1 <= x <= 30
10+
0 <= n <= 30
11+
Sample Input 1 :
12+
3 4
13+
Sample Output 1 :
14+
81
15+
Sample Input 2 :
16+
2 5
17+
Sample Output 2 :
18+
32
19+
'''
20+
21+
def power(x, n):
22+
# Please add your code here
23+
if(n == 0):
24+
return 1
25+
return (x*power(x, n - 1))
26+
27+
# Main
28+
from sys import setrecursionlimit
29+
setrecursionlimit(11000)
30+
x, n=list(int(i) for i in input().strip().split(' '))
31+
print(power(x, n))

basics_of_recursion/print_number.cpp

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
Given is the code to print numbers from 1 to n in increasing order recursively. But it contains few bugs that you need to rectify such that all the test cases pass.
3+
Input Format :
4+
Integer n
5+
Output Format :
6+
Numbers from 1 to n (separated by space)
7+
Constraints :
8+
1 <= n <= 10000
9+
Sample Input 1 :
10+
6
11+
Sample Output 1 :
12+
1 2 3 4 5 6
13+
Sample Input 2 :
14+
4
15+
Sample Output 2 :
16+
1 2 3 4
17+
*/
18+
#include<bits/stdc++.h>
19+
using namespace std;
20+
void print(int n){
21+
if(n == 1){
22+
cout << n << " ";
23+
return;
24+
}
25+
print(n - 1);
26+
cout << n << " ";
27+
}

basics_of_recursion/sum_of_array.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
'''
2+
Given an array of length N, you need to find and return the sum of all elements of the array.
3+
Do this recursively.
4+
Input Format :
5+
Line 1 : An Integer N i.e. size of array
6+
Line 2 : N integers which are elements of the array, separated by spaces
7+
Output Format :
8+
Sum
9+
Constraints :
10+
1 <= N <= 10^3
11+
Sample Input 1 :
12+
3
13+
9 8 9
14+
Sample Output 1 :
15+
26
16+
Sample Input 2 :
17+
3
18+
4 2 1
19+
Sample Output 2 :
20+
7
21+
'''
22+
def sumArray(arr):
23+
# Please add your code here
24+
if(len(arr) == 1):
25+
return arr[0]
26+
return (arr[0] + sumArray(arr[1:]))
27+
28+
# Main
29+
from sys import setrecursionlimit
30+
setrecursionlimit(11000)
31+
n=int(input())
32+
arr=list(int(i) for i in input().strip().split(' '))
33+
print(sumArray(arr))

language_tools/love_for_characters.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
'''
2+
Ayush loves the characters ‘a’, ‘s’, and ‘p’. He got a string of lowercase letters and he wants to find out how many times characters ‘a’, ‘s’, and ‘p’ occurs in the string respectively. Help him find it out.
3+
Input:
4+
First line contains an integer denoting length of the string.
5+
Next line contains the string.
6+
Constraints:
7+
1<=n<=10^5
8+
‘a’<= each character of string <= ‘z’
9+
Output:
10+
Three space separated integers denoting the occurrence of letters ‘a’, ‘s’ and ‘p’ respectively.
11+
Sample Input:
12+
6
13+
aabsas
14+
Sample output:
15+
3 2 0
16+
'''
17+
n = int(input())
18+
19+
str = input()
20+
21+
ca , cs, cp = 0, 0, 0
22+
for c in str:
23+
if c == 'a':
24+
ca += 1
25+
26+
elif c == 's':
27+
cs += 1
28+
29+
elif c == 'p':
30+
cp += 1
31+
32+
print(ca, end = " ")
33+
print(cs, end = " ")
34+
print(cp, end = " ")

prerequisites/chakri.py

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
'''
2+
Diwali is here. While everyone here is busy texting "Happy Diwali" wishes to everybody else, NinjaCoder has some other plans and wants to earn some money this season.
3+
Now, the Apex court has allowed the sale of only green crackers this Diwali. Out of all green crackers, "Chakri" is most popular. Because of the irregular supply of "Chakri", the price of "Chakri" is oscillating daily. NinjaCoder saw a business opportunity in this. He/She got a price list for coming N days from an insider in the market union. Prices in the list are for 1 unit of a large packet of "Chakri". Each large packet contains 100 units of Chakri.
4+
Now, due to financial limitations, NinjaCoder can transact only 1 large packet (100 units of "Chakri") in the market. You have to tell maximum profit possible, given that he/she can transact atmost one time.
5+
Note: 1. Transaction refers to the act of buying and selling.
6+
2. "Chakri" cannot be sold individually. NinjaCoder has to buy/sell the entire packet.
7+
Input Format
8+
First-line contains N - (Integer)
9+
Second-line contains N spaced integers.
10+
Constraints
11+
1 <= N <= 10000
12+
50 <= A(i) <= 100
13+
Output Format
14+
Print the maximum profit that can be generated by NinjaCoder.
15+
Sample Input 0:
16+
7
17+
62 63 70 66 64 68 61
18+
Sample Output 0:
19+
8
20+
'''
21+
def maxProfit(arr):
22+
ans = []
23+
for i in range(len(arr)):
24+
if i + 1 < len(arr):
25+
arr1 = [arr[i] for i in range(i + 1, len(arr))]
26+
#print(arr1)
27+
ans.append(max(arr1) - arr[i])
28+
#print(ans)
29+
return max(ans)
30+
31+
32+
n = int(input())
33+
arr = [int(x) for x in input().split()]
34+
ans = maxProfit(arr)
35+
print(ans)

prerequisites/even_and_odd_indexes.py

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
'''
2+
Given an array of integers, print two integer values:
3+
First, the sum of all numbers which are even as well as whose index are even.
4+
Second, the sum of all numbers which are odd as well as whose index are odd.
5+
Print the two integers space separated. (Arrays is 0-indexed)
6+
Input:
7+
Given an integer denoting the size of array.
8+
Next line will have a line containing ‘n’ space separated integers.
9+
Constraints:
10+
1<=n<=10^5
11+
1 <= Ai <= 10^6
12+
Output:
13+
Two space separated integers denoting even and odd sums respectively.
14+
Sample Input:
15+
5
16+
2 3 5 1 4
17+
Sample Output:
18+
6 4
19+
'''
20+
def even(x):
21+
if(x % 2 == 0):
22+
return True
23+
return False
24+
25+
# Write your code here
26+
i = int(input())
27+
arr = [int(x) for x in input().split()]
28+
os, es = 0, 0
29+
for j in range(i):
30+
if(even(j)):
31+
if(even(arr[j])):
32+
es += arr[j]
33+
else:
34+
if(even(arr[j]) == False):
35+
os += arr[j]
36+
print(es, end = " ")
37+
print(os)

0 commit comments

Comments
 (0)