prompt
stringlengths
236
994
completion
stringlengths
37
915
You are an expert Python programmer, and here is your task: Write a python function to count the number of equal numbers from three given integers. Your code should pass these tests: ['assert test_three_equal(1,1,1) == 3', 'assert test_three_equal(-1,-2,-3) == 0', 'assert test_three_equal(1,2,2) == 2'] [BEGIN]
def test_three_equal(x,y,z): result= set([x,y,z]) if len(result)==3: return 0 else: return (4-len(result)) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to count the number of rotations required to generate a sorted array. Your code should pass these tests: ['assert count_Rotation([3,2,1],3) == 1', 'assert count_Rotation([4,5,1,2,3],5) == 2', 'assert count_Rotation([7,8,9,1,2,3],6) =...
def count_Rotation(arr,n): for i in range (1,n): if (arr[i] < arr[i - 1]): return i return 0 [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether the given number is a perfect square or not. Your code should pass these tests: ['assert is_Perfect_Square(10) == False', 'assert is_Perfect_Square(36) == True', 'assert is_Perfect_Square(14) == False'] [BEGIN]
def is_Perfect_Square(n) : i = 1 while (i * i<= n): if ((n % i == 0) and (n / i == i)): return True i = i + 1 return False [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether the product of numbers is even or not. Your code should pass these tests: ['assert is_Product_Even([1,2,3],3) == True', 'assert is_Product_Even([1,2,1,4],4) == True', 'assert is_Product_Even([1,1],2) == False'] [BEGI...
def is_Product_Even(arr,n): for i in range(0,n): if ((arr[i] & 1) == 0): return True return False [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the list in a list of lists whose sum of elements is the highest. Your code should pass these tests: ['assert max_sum_list([[1,2,3], [4,5,6], [10,11,12], [7,8,9]])==[10, 11, 12] ', 'assert max_sum_list([[3,2,1], [6,5,4], [12,11,10]]...
def max_sum_list(lists): return max(lists, key=sum) [DONE]
You are an expert Python programmer, and here is your task: Write a function to find maximum run of uppercase characters in the given string. Your code should pass these tests: ["assert max_run_uppercase('GeMKSForGERksISBESt') == 5", "assert max_run_uppercase('PrECIOusMOVemENTSYT') == 6", "assert max_run_uppercase('...
def max_run_uppercase(test_str): cnt = 0 res = 0 for idx in range(0, len(test_str)): if test_str[idx].isupper(): cnt += 1 else: res = cnt cnt = 0 if test_str[len(test_str) - 1].isupper(): res = cnt return (res) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find the first odd number in a given list of numbers. Your code should pass these tests: ['assert first_odd([1,3,5]) == 1', 'assert first_odd([2,4,1,3]) == 1', 'assert first_odd ([8,9,1]) == 9'] [BEGIN]
def first_odd(nums): first_odd = next((el for el in nums if el%2!=0),-1) return first_odd [DONE]
You are an expert Python programmer, and here is your task: Write a function to check if the given tuples contain the k or not. Your code should pass these tests: ['assert check_K((10, 4, 5, 6, 8), 6) == True', 'assert check_K((1, 2, 3, 4, 5, 6), 7) == False', 'assert check_K((7, 8, 9, 44, 11, 12), 11) == True'] [BE...
def check_K(test_tup, K): res = False for ele in test_tup: if ele == K: res = True break return (res) [DONE]
You are an expert Python programmer, and here is your task: Write a function to check if each element of second tuple is smaller than its corresponding index in first tuple. Your code should pass these tests: ['assert check_smaller((1, 2, 3), (2, 3, 4)) == False', 'assert check_smaller((4, 5, 6), (3, 4, 5)) == True'...
def check_smaller(test_tup1, test_tup2): res = all(x > y for x, y in zip(test_tup1, test_tup2)) return (res) [DONE]
You are an expert Python programmer, and here is your task: Write a function to iterate over elements repeating each as many times as its count. Your code should pass these tests: ["assert count_variable(4,2,0,-2)==['p', 'p', 'p', 'p', 'q', 'q'] ", "assert count_variable(0,1,2,3)==['q', 'r', 'r', 's', 's', 's'] ", "...
from collections import Counter def count_variable(a,b,c,d): c = Counter(p=a, q=b, r=c, s=d) return list(c.elements()) [DONE]
You are an expert Python programmer, and here is your task: Write a function to check if two lists of tuples are identical or not. Your code should pass these tests: ['assert check_identical([(10, 4), (2, 5)], [(10, 4), (2, 5)]) == True', 'assert check_identical([(1, 2), (3, 7)], [(12, 14), (12, 45)]) == False', 'as...
def check_identical(test_list1, test_list2): res = test_list1 == test_list2 return (res) [DONE]
You are an expert Python programmer, and here is your task: Write a function to abbreviate 'road' as 'rd.' in a given string. Your code should pass these tests: ['assert road_rd("ravipadu Road")==(\'ravipadu Rd.\')', 'assert road_rd("palnadu Road")==(\'palnadu Rd.\')', 'assert road_rd("eshwar enclave Road")==(\'eshw...
import re def road_rd(street): return (re.sub('Road$', 'Rd.', street)) [DONE]
You are an expert Python programmer, and here is your task: Write a function to find length of the string. Your code should pass these tests: ["assert string_length('python')==6", "assert string_length('program')==7", "assert string_length('language')==8"] [BEGIN]
def string_length(str1): count = 0 for char in str1: count += 1 return count [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the area of a rombus. Your code should pass these tests: ['assert rombus_area(10,20)==100', 'assert rombus_area(10,5)==25', 'assert rombus_area(4,2)==4'] [BEGIN]
def rombus_area(p,q): area=(p*q)/2 return area [DONE]
You are an expert Python programmer, and here is your task: Write a function to sort the given array without using any sorting algorithm. the given array consists of only 0, 1, and 2. Your code should pass these tests: ['assert sort_by_dnf([1,2,0,1,0,1,2,1,1], 9) == [0, 0, 1, 1, 1, 1, 1, 2, 2]', 'assert sort_by_dnf(...
def sort_by_dnf(arr, n): low=0 mid=0 high=n-1 while mid <= high: if arr[mid] == 0: arr[low], arr[mid] = arr[mid], arr[low] low = low + 1 mid = mid + 1 elif arr[mid] == 1: mid = mid + 1 else: arr[mid], arr[high] = arr[high], arr[mid] high = high - 1 ...
You are an expert Python programmer, and here is your task: Write a function to clear the values of the given tuples. Your code should pass these tests: ['assert clear_tuple((1, 5, 3, 6, 8)) == ()', 'assert clear_tuple((2, 1, 4 ,5 ,6)) == ()', 'assert clear_tuple((3, 2, 5, 6, 8)) == ()'] [BEGIN]
def clear_tuple(test_tup): temp = list(test_tup) temp.clear() test_tup = tuple(temp) return (test_tup) [DONE]
You are an expert Python programmer, and here is your task: Write a function to find numbers divisible by m or n from a list of numbers using lambda function. Your code should pass these tests: ['assert div_of_nums([19, 65, 57, 39, 152, 639, 121, 44, 90, 190],19,13)==[19, 65, 57, 39, 152, 190]', 'assert div_of_nums(...
def div_of_nums(nums,m,n): result = list(filter(lambda x: (x % m == 0 or x % n == 0), nums)) return result [DONE]
You are an expert Python programmer, and here is your task: Write a python function to count lower case letters in a given string. Your code should pass these tests: ["assert lower_ctr('abc') == 3", "assert lower_ctr('string') == 6", "assert lower_ctr('Python') == 5"] [BEGIN]
def lower_ctr(str): lower_ctr= 0 for i in range(len(str)): if str[i] >= 'a' and str[i] <= 'z': lower_ctr += 1 return lower_ctr [DONE]
You are an expert Python programmer, and here is your task: Write a function to count the frequency of consecutive duplicate elements in a given list of numbers. Your code should pass these tests: ['assert count_duplic([1,2,2,2,4,4,4,5,5,5,5])==([1, 2, 4, 5], [1, 3, 3, 4])', 'assert count_duplic([2,2,3,1,2,6,7,9])==...
def count_duplic(lists): element = [] frequency = [] if not lists: return element running_count = 1 for i in range(len(lists)-1): if lists[i] == lists[i+1]: running_count += 1 else: frequency.append(running_count) element.append(...
You are an expert Python programmer, and here is your task: Write a function to check whether the given month number contains 28 days or not. Your code should pass these tests: ['assert check_monthnum_number(2)==True', 'assert check_monthnum_number(1)==False', 'assert check_monthnum_number(3)==False'] [BEGIN]
def check_monthnum_number(monthnum1): if monthnum1 == 2: return True else: return False [DONE]
You are an expert Python programmer, and here is your task: Write a function to merge two dictionaries into a single expression. Your code should pass these tests: ['assert merge_dictionaries({ "R": "Red", "B": "Black", "P": "Pink" }, { "G": "Green", "W": "White" })=={\'B\': \'Black\', \'R\': \'Red\', \'P\': \'Pink\...
import collections as ct def merge_dictionaries(dict1,dict2): merged_dict = dict(ct.ChainMap({}, dict1, dict2)) return merged_dict [DONE]
You are an expert Python programmer, and here is your task: Write a function to return true if the password is valid. Your code should pass these tests: ['assert pass_validity("password")==False', 'assert pass_validity("Password@10")==True', 'assert pass_validity("password@10")==False'] [BEGIN]
import re def pass_validity(p): x = True while x: if (len(p)<6 or len(p)>12): break elif not re.search("[a-z]",p): break elif not re.search("[0-9]",p): break elif not re.search("[A-Z]",p): break elif not re.search("[$#@]",p): break elif r...
You are an expert Python programmer, and here is your task: Write a function to check if the given string starts with a substring using regex. Your code should pass these tests: ['assert check_substring("dreams for dreams makes life fun", "makes") == \'string doesnt start with the given substring\'', 'assert check_s...
import re def check_substring(string, sample) : if (sample in string): y = "\A" + sample x = re.search(y, string) if x : return ("string starts with the given substring") else : return ("string doesnt start with the given substring") else : retur...
You are an expert Python programmer, and here is your task: Write a python function to remove even numbers from a given list. Your code should pass these tests: ['assert remove_even([1,3,5,2]) == [1,3,5]', 'assert remove_even([5,6,7]) == [5,7]', 'assert remove_even([1,2,3,4]) == [1,3]'] [BEGIN]
def remove_even(l): for i in l: if i % 2 == 0: l.remove(i) return l [DONE]
You are an expert Python programmer, and here is your task: Write a python function to access multiple elements of specified index from a given list. Your code should pass these tests: ['assert access_elements([2,3,8,4,7,9],[0,3,5]) == [2, 4, 9]', 'assert access_elements([1, 2, 3, 4, 5],[1,2]) == [2,3]', 'assert acc...
def access_elements(nums, list_index): result = [nums[i] for i in list_index] return result [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find the type of triangle from the given sides. Your code should pass these tests: ['assert check_Type_Of_Triangle(1,2,3) == "Obtuse-angled Triangle"', 'assert check_Type_Of_Triangle(2,2,2) == "Acute-angled Triangle"', 'assert che...
def check_Type_Of_Triangle(a,b,c): sqa = pow(a,2) sqb = pow(b,2) sqc = pow(c,2) if (sqa == sqa + sqb or sqb == sqa + sqc or sqc == sqa + sqb): return ("Right-angled Triangle") elif (sqa > sqc + sqb or sqb > sqa + sqc or sqc > sqa + sqb): return ("Obtuse-angled Triangle"...
You are an expert Python programmer, and here is your task: Write a function to sum a specific column of a list in a given list of lists. Your code should pass these tests: ['assert sum_column( [[1,2,3,2],[4,5,6,2],[7,8,9,5],],0)==12', 'assert sum_column( [[1,2,3,2],[4,5,6,2],[7,8,9,5],],1)==15', 'assert sum_column(...
def sum_column(list1, C): result = sum(row[C] for row in list1) return result [DONE]
You are an expert Python programmer, and here is your task: Write a function to count alphabets,digits and special charactes in a given string. Your code should pass these tests: ['assert count_alpha_dig_spl("abc!@#123")==(3,3,3)', 'assert count_alpha_dig_spl("dgsuy@#$%&1255")==(5,4,5)', 'assert count_alpha_dig_spl(...
def count_alpha_dig_spl(string): alphabets=digits = special = 0 for i in range(len(string)): if(string[i].isalpha()): alphabets = alphabets + 1 elif(string[i].isdigit()): digits = digits + 1 else: special = special + 1 return (alphabets,digits,special) [DONE]
You are an expert Python programmer, and here is your task: Write a function to find out the second most repeated (or frequent) string in the given sequence. Your code should pass these tests: ["assert second_frequent(['aaa','bbb','ccc','bbb','aaa','aaa']) == 'bbb'", "assert second_frequent(['abc','bcd','abc','bcd',...
from collections import Counter def second_frequent(input): dict = Counter(input) value = sorted(dict.values(), reverse=True) second_large = value[1] for (key, val) in dict.items(): if val == second_large: return (key) [DONE]
You are an expert Python programmer, and here is your task: Write a function to round up a number to specific digits. Your code should pass these tests: ['assert round_up(123.01247,0)==124', 'assert round_up(123.01247,1)==123.1', 'assert round_up(123.01247,2)==123.02'] [BEGIN]
import math def round_up(a, digits): n = 10**-digits return round(math.ceil(a / n) * n, digits) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to count equal element pairs from the given array. Your code should pass these tests: ['assert count_Pairs([1,1,1,1],4) == 6', 'assert count_Pairs([1,5,1],3) == 1', 'assert count_Pairs([3,2,1,7,8,9],6) == 0'] [BEGIN]
def count_Pairs(arr,n): cnt = 0; for i in range(n): for j in range(i + 1,n): if (arr[i] == arr[j]): cnt += 1; return cnt; [DONE]
You are an expert Python programmer, and here is your task: Write a function to extract the maximum numeric value from a string by using regex. Your code should pass these tests: ["assert extract_max('100klh564abc365bg') == 564", "assert extract_max('hello300how546mer231') == 546", "assert extract_max('its233beenalo...
import re def extract_max(input): numbers = re.findall('\d+',input) numbers = map(int,numbers) return max(numbers) [DONE]
You are an expert Python programmer, and here is your task: Write a function to get dictionary keys as a list. Your code should pass these tests: ["assert get_key({1:'python',2:'java'})==[1,2]", "assert get_key({10:'red',20:'blue',30:'black'})==[10,20,30]", "assert get_key({27:'language',39:'java',44:'little'})==[27...
def get_key(dict): list = [] for key in dict.keys(): list.append(key) return list [DONE]
You are an expert Python programmer, and here is your task: Write a function to generate a square matrix filled with elements from 1 to n raised to the power of 2 in spiral order. Your code should pass these tests: ['assert generate_matrix(3)==[[1, 2, 3], [8, 9, 4], [7, 6, 5]] ', 'assert generate_matrix(2)==[[1,2],[...
def generate_matrix(n): if n<=0: return [] matrix=[row[:] for row in [[0]*n]*n] row_st=0 row_ed=n-1 col_st=0 col_ed=n-1 current=1 while (True): if current>n*n: break f...
You are an expert Python programmer, and here is your task: Write a python function to find the slope of a line. Your code should pass these tests: ['assert slope(4,2,2,5) == -1.5', 'assert slope(2,4,4,6) == 1', 'assert slope(1,2,4,2) == 0'] [BEGIN]
def slope(x1,y1,x2,y2): return (float)(y2-y1)/(x2-x1) [DONE]
You are an expert Python programmer, and here is your task: Write a function to find length of the subarray having maximum sum. Your code should pass these tests: ['assert max_sub_array_sum([-2, -3, 4, -1, -2, 1, 5, -3],8) == 5', 'assert max_sub_array_sum([1, -2, 1, 1, -2, 1],6) == 2', 'assert max_sub_array_sum([-1,...
from sys import maxsize def max_sub_array_sum(a,size): max_so_far = -maxsize - 1 max_ending_here = 0 start = 0 end = 0 s = 0 for i in range(0,size): max_ending_here += a[i] if max_so_far < max_ending_here: max_so_far = max_ending_here start = s end = i if max_ending_here < 0: ...
You are an expert Python programmer, and here is your task: Write a python function to find the cube sum of first n odd natural numbers. Your code should pass these tests: ['assert cube_Sum(2) == 28', 'assert cube_Sum(3) == 153', 'assert cube_Sum(4) == 496'] [BEGIN]
def cube_Sum(n): sum = 0 for i in range(0,n) : sum += (2*i+1)*(2*i+1)*(2*i+1) return sum [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find minimum number swaps required to make two binary strings equal. Your code should pass these tests: ['assert min_Swaps("0011","1111") == 1', 'assert min_Swaps("00011","01001") == 2', 'assert min_Swaps("111","111") == 0'] [BEGI...
def min_Swaps(s1,s2) : c0 = 0; c1 = 0; for i in range(len(s1)) : if (s1[i] == '0' and s2[i] == '1') : c0 += 1; elif (s1[i] == '1' and s2[i] == '0') : c1 += 1; result = c0 // 2 + c1 // 2; if (c0 % 2 == 0 and c1 % 2 == 0) : return r...
You are an expert Python programmer, and here is your task: Write a function to sort the tuples alphabetically by the first item of each tuple. Your code should pass these tests: ['assert sort_tuple([("Amana", 28), ("Zenat", 30), ("Abhishek", 29),("Nikhil", 21), ("B", "C")]) == [(\'Abhishek\', 29), (\'Amana\', 28), ...
def sort_tuple(tup): n = len(tup) for i in range(n): for j in range(n-i-1): if tup[j][0] > tup[j + 1][0]: tup[j], tup[j + 1] = tup[j + 1], tup[j] return tup [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether the roots of a quadratic equation are numerically equal but opposite in sign or not. Your code should pass these tests: ['assert Check_Solution(2,0,-1) == "Yes"', 'assert Check_Solution(1,-5,6) == "No"', 'assert Chec...
def Check_Solution(a,b,c): if b == 0: return ("Yes") else: return ("No") [DONE]
You are an expert Python programmer, and here is your task: Write a function to count the number of inversions in the given array. Your code should pass these tests: ['assert get_inv_count([1, 20, 6, 4, 5], 5) == 5', 'assert get_inv_count([8, 4, 2, 1], 4) == 6', 'assert get_inv_count([3, 1, 2], 3) == 2'] [BEGIN]
def get_inv_count(arr, n): inv_count = 0 for i in range(n): for j in range(i + 1, n): if (arr[i] > arr[j]): inv_count += 1 return inv_count [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the number which occurs for odd number of times in the given array. Your code should pass these tests: ['assert get_odd_occurence([2, 3, 5, 4, 5, 2, 4, 3, 5, 2, 4, 4, 2], 13) == 5', 'assert get_odd_occurence([1, 2, 3, 2, 3, 1, 3], 7...
def get_odd_occurence(arr, arr_size): for i in range(0, arr_size): count = 0 for j in range(0, arr_size): if arr[i] == arr[j]: count += 1 if (count % 2 != 0): return arr[i] return -1 [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the nth super ugly number from a given prime list of size k using heap queue algorithm. Your code should pass these tests: ['assert nth_super_ugly_number(12,[2,7,13,19])==32', 'assert nth_super_ugly_number(10,[2,7,13,19])==26', 'ass...
import heapq def nth_super_ugly_number(n, primes): uglies = [1] def gen(prime): for ugly in uglies: yield ugly * prime merged = heapq.merge(*map(gen, primes)) while len(uglies) < n: ugly = next(merged) if ugly != uglies[-1]: uglies.append(ugly) ...
You are an expert Python programmer, and here is your task: Write a python function to find the kth element in an array containing odd elements first and then even elements. Your code should pass these tests: ['assert get_Number(8,5) == 2', 'assert get_Number(7,2) == 3', 'assert get_Number(5,2) == 3'] [BEGIN]
def get_Number(n, k): arr = [0] * n; i = 0; odd = 1; while (odd <= n): arr[i] = odd; i += 1; odd += 2; even = 2; while (even <= n): arr[i] = even; i += 1; even += 2; return arr[k - 1]; [DONE]
You are an expert Python programmer, and here is your task: Write a python function to count the number of digits in factorial of a given number. Your code should pass these tests: ['assert find_Digits(7) == 4', 'assert find_Digits(5) == 3', 'assert find_Digits(4) == 2'] [BEGIN]
import math def find_Digits(n): if (n < 0): return 0; if (n <= 1): return 1; x = ((n * math.log10(n / math.e) + math.log10(2 * math.pi * n) /2.0)); return math.floor(x) + 1; [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the minimum number of platforms required for a railway/bus station. Your code should pass these tests: ['assert find_platform([900, 940, 950, 1100, 1500, 1800],[910, 1200, 1120, 1130, 1900, 2000],6)==3', 'assert find_platform([100,2...
def find_platform(arr, dep, n): arr.sort() dep.sort() plat_needed = 1 result = 1 i = 1 j = 0 while (i < n and j < n): if (arr[i] <= dep[j]): plat_needed+= 1 i+= 1 elif (arr[i] > dep[j]): plat_needed-= 1...
You are an expert Python programmer, and here is your task: Write a python function to copy a list from a singleton tuple. Your code should pass these tests: ['assert lcopy([1, 2, 3]) == [1, 2, 3]', 'assert lcopy([4, 8, 2, 10, 15, 18]) == [4, 8, 2, 10, 15, 18]', 'assert lcopy([4, 5, 6]) == [4, 5, 6]\n'] [BEGIN]
def lcopy(xs): return xs[:] [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the area of a trapezium. Your code should pass these tests: ['assert area_trapezium(6,9,4)==30', 'assert area_trapezium(10,20,30)==450', 'assert area_trapezium(15,25,35)==700'] [BEGIN]
def area_trapezium(base1,base2,height): area = 0.5 * (base1 + base2) * height return area [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find sum of all prime divisors of a given number. Your code should pass these tests: ['assert Sum(60) == 10', 'assert Sum(39) == 16', 'assert Sum(40) == 7'] [BEGIN]
def Sum(N): SumOfPrimeDivisors = [0]*(N + 1) for i in range(2,N + 1) : if (SumOfPrimeDivisors[i] == 0) : for j in range(i,N + 1,i) : SumOfPrimeDivisors[j] += i return SumOfPrimeDivisors[N] [DONE]
You are an expert Python programmer, and here is your task: Write a function to check if a triangle of positive area is possible with the given angles. Your code should pass these tests: ['assert is_triangleexists(50,60,70)==True', 'assert is_triangleexists(90,45,45)==True', 'assert is_triangleexists(150,30,70)==Fal...
def is_triangleexists(a,b,c): if(a != 0 and b != 0 and c != 0 and (a + b + c)== 180): if((a + b)>= c or (b + c)>= a or (a + c)>= b): return True else: return False else: return False [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find sum of inverse of divisors. Your code should pass these tests: ['assert Sum_of_Inverse_Divisors(6,12) == 2', 'assert Sum_of_Inverse_Divisors(9,13) == 1.44', 'assert Sum_of_Inverse_Divisors(1,4) == 4'] [BEGIN]
def Sum_of_Inverse_Divisors(N,Sum): ans = float(Sum)*1.0 /float(N); return round(ans,2); [DONE]
You are an expert Python programmer, and here is your task: Write a python function to remove negative numbers from a list. Your code should pass these tests: ['assert remove_negs([1,-2,3,-4]) == [1,3]', 'assert remove_negs([1,2,3,-4]) == [1,2,3]', 'assert remove_negs([4,5,-6,7,-8]) == [4,5,7]'] [BEGIN]
def remove_negs(num_list): for item in num_list: if item < 0: num_list.remove(item) return num_list [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find sum of odd factors of a number. Your code should pass these tests: ['assert sum_of_odd_Factors(30) == 24', 'assert sum_of_odd_Factors(18) == 13', 'assert sum_of_odd_Factors(2) == 1'] [BEGIN]
import math def sum_of_odd_Factors(n): res = 1 while n % 2 == 0: n = n // 2 for i in range(3,int(math.sqrt(n) + 1)): count = 0 curr_sum = 1 curr_term = 1 while n % i == 0: count+=1 n = n // i curr_term *= i ...
You are an expert Python programmer, and here is your task: Write a function which accepts an arbitrary list and converts it to a heap using heap queue algorithm. Your code should pass these tests: ['assert raw_heap([25, 44, 68, 21, 39, 23, 89])==[21, 25, 23, 44, 39, 68, 89]', 'assert raw_heap([25, 35, 22, 85, 14, 6...
import heapq as hq def raw_heap(rawheap): hq.heapify(rawheap) return rawheap [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check for even parity of a given number. Your code should pass these tests: ['assert check_Even_Parity(10) == True', 'assert check_Even_Parity(11) == False', 'assert check_Even_Parity(18) == True'] [BEGIN]
def check_Even_Parity(x): parity = 0 while (x != 0): x = x & (x - 1) parity += 1 if (parity % 2 == 0): return True else: return False [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find minimum adjacent swaps required to sort binary array. Your code should pass these tests: ['assert find_Min_Swaps([1,0,1,0],4) == 3', 'assert find_Min_Swaps([0,1,0],3) == 1', 'assert find_Min_Swaps([0,0,1,1,0],5) == 2'] [BEGIN...
def find_Min_Swaps(arr,n) : noOfZeroes = [0] * n count = 0 noOfZeroes[n - 1] = 1 - arr[n - 1] for i in range(n-2,-1,-1) : noOfZeroes[i] = noOfZeroes[i + 1] if (arr[i] == 0) : noOfZeroes[i] = noOfZeroes[i] + 1 for i in range(0,n) : if (arr[i] == 1)...
You are an expert Python programmer, and here is your task: Write a function to list out the list of given strings individually using map function. Your code should pass these tests: ["assert listify_list(['Red', 'Blue', 'Black', 'White', 'Pink'])==[['R', 'e', 'd'], ['B', 'l', 'u', 'e'], ['B', 'l', 'a', 'c', 'k'], [...
def listify_list(list1): result = list(map(list,list1)) return result [DONE]
You are an expert Python programmer, and here is your task: Write a function to count number of lists in a given list of lists and square the count. Your code should pass these tests: ['assert count_list([[0], [1, 3], [5, 7], [9, 11], [13, 15, 17]])==25', 'assert count_list([[1, 3], [5, 7], [9, 11], [13, 15, 17]] )=...
def count_list(input_list): return (len(input_list))**2 [DONE]
You are an expert Python programmer, and here is your task: Write a function to generate all sublists of a given list. Your code should pass these tests: ['assert sub_lists([10, 20, 30, 40])==[[], [10], [20], [30], [40], [10, 20], [10, 30], [10, 40], [20, 30], [20, 40], [30, 40], [10, 20, 30], [10, 20, 40], [10, 30,...
from itertools import combinations def sub_lists(my_list): subs = [] for i in range(0, len(my_list)+1): temp = [list(x) for x in combinations(my_list, i)] if len(temp)>0: subs.extend(temp) return subs [DONE]
You are an expert Python programmer, and here is your task: Write a function to check whether the given string is ending with only alphanumeric characters or not using regex. Your code should pass these tests: ['assert check_alphanumeric("dawood@") == \'Discard\'', 'assert check_alphanumeric("skdmsam326") == \'Accep...
import re regex = '[a-zA-z0-9]$' def check_alphanumeric(string): if(re.search(regex, string)): return ("Accept") else: return ("Discard") [DONE]
You are an expert Python programmer, and here is your task: Write a function to find all anagrams of a string in a given list of strings using lambda function. Your code should pass these tests: ['assert anagram_lambda(["bcda", "abce", "cbda", "cbea", "adcb"],"abcd")==[\'bcda\', \'cbda\', \'adcb\']', 'assert anagram...
from collections import Counter def anagram_lambda(texts,str): result = list(filter(lambda x: (Counter(str) == Counter(x)), texts)) return result [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the occurrences of n most common words in a given text. Your code should pass these tests: ['assert n_common_words("python is a programming language",1)==[(\'python\', 1)]', 'assert n_common_words("python is a programming language",...
from collections import Counter import re def n_common_words(text,n): words = re.findall('\w+',text) n_common_words= Counter(words).most_common(n) return list(n_common_words) [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the length of the longest sub-sequence such that elements in the subsequences are consecutive integers. Your code should pass these tests: ['assert find_longest_conseq_subseq([1, 2, 2, 3], 4) == 3', 'assert find_longest_conseq_subse...
def find_longest_conseq_subseq(arr, n): ans = 0 count = 0 arr.sort() v = [] v.append(arr[0]) for i in range(1, n): if (arr[i] != arr[i - 1]): v.append(arr[i]) for i in range(len(v)): if (i > 0 and v[i] == v[i - 1] + 1): count += 1 else: count = 1 ans = max(ans, count) ...
You are an expert Python programmer, and here is your task: Write a function to find palindromes in a given list of strings using lambda function. Your code should pass these tests: ['assert palindrome_lambda(["php", "res", "Python", "abcd", "Java", "aaa"])==[\'php\', \'aaa\']', 'assert palindrome_lambda(["abcd", "P...
def palindrome_lambda(texts): result = list(filter(lambda x: (x == "".join(reversed(x))), texts)) return result [DONE]
You are an expert Python programmer, and here is your task: Write a function to print n-times a list using map function. Your code should pass these tests: ['assert ntimes_list([1, 2, 3, 4, 5, 6, 7],3)==[3, 6, 9, 12, 15, 18, 21]', 'assert ntimes_list([1, 2, 3, 4, 5, 6, 7],4)==[4, 8, 12, 16, 20, 24, 28]', 'assert nti...
def ntimes_list(nums,n): result = map(lambda x:n*x, nums) return list(result) [DONE]
You are an expert Python programmer, and here is your task: Write a function to check whether the given month name contains 31 days or not. Your code should pass these tests: ['assert check_monthnumb("February")==False', 'assert check_monthnumb("January")==True', 'assert check_monthnumb("March")==True'] [BEGIN]
def check_monthnumb(monthname2): if(monthname2=="January" or monthname2=="March"or monthname2=="May" or monthname2=="July" or monthname2=="Augest" or monthname2=="October" or monthname2=="December"): return True else: return False [DONE]
You are an expert Python programmer, and here is your task: Write a python function to add a minimum number such that the sum of array becomes even. Your code should pass these tests: ['assert min_Num([1,2,3,4,5,6,7,8,9],9) == 1', 'assert min_Num([1,2,3,4,5,6,7,8],8) == 2', 'assert min_Num([1,2,3],3) == 2'] [BEGIN]
def min_Num(arr,n): odd = 0 for i in range(n): if (arr[i] % 2): odd += 1 if (odd % 2): return 1 return 2 [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find the length of the last word in a given string. Your code should pass these tests: ['assert length_Of_Last_Word("python language") == 8', 'assert length_Of_Last_Word("PHP") == 3', 'assert length_Of_Last_Word("") == 0'] [BEGIN]...
def length_Of_Last_Word(a): l = 0 x = a.strip() for i in range(len(x)): if x[i] == " ": l = 0 else: l += 1 return l [DONE]
You are an expert Python programmer, and here is your task: Write a function to remove sublists from a given list of lists, which are outside a given range. Your code should pass these tests: ['assert remove_list_range([[2], [0], [1, 2, 3], [0, 1, 2, 3, 6, 7], [9, 11], [13, 14, 15, 17]],13,17)==[[13, 14, 15, 17]]', ...
def remove_list_range(list1, leftrange, rigthrange): result = [i for i in list1 if (min(i)>=leftrange and max(i)<=rigthrange)] return result [DONE]
You are an expert Python programmer, and here is your task: Write a function to calculate the sum of the positive numbers of a given list of numbers using lambda function. Your code should pass these tests: ['assert sum_positivenum([2, 4, -6, -9, 11, -12, 14, -5, 17])==48', 'assert sum_positivenum([10,15,-14,13,-18,...
def sum_positivenum(nums): sum_positivenum = list(filter(lambda nums:nums>0,nums)) return sum(sum_positivenum) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether the given strings are rotations of each other or not. Your code should pass these tests: ['assert are_Rotations("abc","cba") == False', 'assert are_Rotations("abcd","cdba") == False', 'assert are_Rotations("abacd","c...
def are_Rotations(string1,string2): size1 = len(string1) size2 = len(string2) temp = '' if size1 != size2: return False temp = string1 + string1 if (temp.count(string2)> 0): return True else: return False [DONE]
You are an expert Python programmer, and here is your task: Write a function to check if a nested list is a subset of another nested list. Your code should pass these tests: ['assert check_subset([[1, 3], [5, 7], [9, 11], [13, 15, 17]] ,[[1, 3],[13,15,17]])==True', 'assert check_subset([[1, 2], [2, 3], [3, 4], [5, 6...
def check_subset(list1,list2): return all(map(list1.__contains__,list2)) [DONE]
You are an expert Python programmer, and here is your task: Write a function to solve the fibonacci sequence using recursion. Your code should pass these tests: ['assert fibonacci(7) == 13', 'assert fibonacci(8) == 21', 'assert fibonacci(9) == 34'] [BEGIN]
def fibonacci(n): if n == 1 or n == 2: return 1 else: return (fibonacci(n - 1) + (fibonacci(n - 2))) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check if the string is a concatenation of another string. Your code should pass these tests: ['assert check_Concat("abcabcabc","abc") == True', 'assert check_Concat("abcab","abc") == False', 'assert check_Concat("aba","ab") == Fal...
def check_Concat(str1,str2): N = len(str1) M = len(str2) if (N % M != 0): return False for i in range(N): if (str1[i] != str2[i % M]): return False return True [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the minimum difference in the tuple pairs of given tuples. Your code should pass these tests: ['assert min_difference([(3, 5), (1, 7), (10, 3), (1, 2)]) == 1', 'assert min_difference([(4, 6), (12, 8), (11, 4), (2, 13)]) == 2', 'asse...
def min_difference(test_list): temp = [abs(b - a) for a, b in test_list] res = min(temp) return (res) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find lcm of two positive integers. Your code should pass these tests: ['assert lcm(4,6) == 12', 'assert lcm(15,17) == 255', 'assert lcm(2,6) == 6'] [BEGIN]
def lcm(x, y): if x > y: z = x else: z = y while(True): if((z % x == 0) and (z % y == 0)): lcm = z break z += 1 return lcm [DONE]
You are an expert Python programmer, and here is your task: Write a python function to sort the given string. Your code should pass these tests: ['assert sort_String("cba") == "abc"', 'assert sort_String("data") == "aadt"', 'assert sort_String("zxy") == "xyz"'] [BEGIN]
def sort_String(str) : str = ''.join(sorted(str)) return (str) [DONE]
You are an expert Python programmer, and here is your task: Write a function to check if the given tuple contains only k elements. Your code should pass these tests: ['assert check_tuples((3, 5, 6, 5, 3, 6),[3, 6, 5]) == True', 'assert check_tuples((4, 5, 6, 4, 6, 5),[4, 5, 6]) == True', 'assert check_tuples((9, 8, ...
def check_tuples(test_tuple, K): res = all(ele in K for ele in test_tuple) return (res) [DONE]
You are an expert Python programmer, and here is your task: Write a function that matches a string that has an 'a' followed by anything, ending in 'b' by using regex. Your code should pass these tests: ['assert text_match("aabbbbd") == \'Not matched!\'', 'assert text_match("aabAbbbc") == \'Not matched!\'', 'assert t...
import re def text_match(text): patterns = 'a.*?b$' if re.search(patterns, text): return ('Found a match!') else: return ('Not matched!') [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find number of solutions in quadratic equation. Your code should pass these tests: ['assert Check_Solution(2,5,2) == "2 solutions"', 'assert Check_Solution(1,1,1) == "No solutions"', 'assert Check_Solution(1,2,1) == "1 solution"']...
def Check_Solution(a,b,c) : if ((b*b) - (4*a*c)) > 0 : return ("2 solutions") elif ((b*b) - (4*a*c)) == 0 : return ("1 solution") else : return ("No solutions") [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the sum of first even and odd number of a given list. Your code should pass these tests: ['assert sum_even_odd([1,3,5,7,4,1,6,8])==5', 'assert sum_even_odd([1,2,3,4,5,6,7,8,9,10])==3', 'assert sum_even_odd([1,5,7,9,10])==11'] [BEGIN...
def sum_even_odd(list1): first_even = next((el for el in list1 if el%2==0),-1) first_odd = next((el for el in list1 if el%2!=0),-1) return (first_even+first_odd) [DONE]
You are an expert Python programmer, and here is your task: Write a function to caluclate perimeter of a parallelogram. Your code should pass these tests: ['assert parallelogram_perimeter(10,20)==400', 'assert parallelogram_perimeter(15,20)==600', 'assert parallelogram_perimeter(8,9)==144'] [BEGIN]
def parallelogram_perimeter(b,h): perimeter=2*(b*h) return perimeter [DONE]
You are an expert Python programmer, and here is your task: Write a function to find numbers divisible by m and n from a list of numbers using lambda function. Your code should pass these tests: ['assert div_of_nums([19, 65, 57, 39, 152, 639, 121, 44, 90, 190],2,4)==[ 152,44]', 'assert div_of_nums([1, 2, 3, 5, 7, 8,...
def div_of_nums(nums,m,n): result = list(filter(lambda x: (x % m == 0 and x % n == 0), nums)) return result [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether all the bits are within a given range or not. Your code should pass these tests: ['assert all_Bits_Set_In_The_Given_Range(10,2,1) == True ', 'assert all_Bits_Set_In_The_Given_Range(5,2,4) == False', 'assert all_Bits_...
def all_Bits_Set_In_The_Given_Range(n,l,r): num = ((1 << r) - 1) ^ ((1 << (l - 1)) - 1) new_num = n & num if (num == new_num): return True return False [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether the two given strings are isomorphic to each other or not. Your code should pass these tests: ['assert is_Isomorphic("paper","title") == True', 'assert is_Isomorphic("ab","ba") == True', 'assert is_Isomorphic("ab","a...
def is_Isomorphic(str1,str2): dict_str1 = {} dict_str2 = {} for i, value in enumerate(str1): dict_str1[value] = dict_str1.get(value,[]) + [i] for j, value in enumerate(str2): dict_str2[value] = dict_str2.get(value,[]) + [j] if sorted(dict_str1.values()) == so...
You are an expert Python programmer, and here is your task: Write a function to add all the numbers in a list and divide it with the length of the list. Your code should pass these tests: ['assert sum_num((8, 2, 3, 0, 7))==4.0', 'assert sum_num((-10,-20,-30))==-20.0', 'assert sum_num((19,15,18))==17.333333333333332'...
def sum_num(numbers): total = 0 for x in numbers: total += x return total/len(numbers) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether the given number is odd or not using bitwise operator. Your code should pass these tests: ['assert is_odd(5) == True', 'assert is_odd(6) == False', 'assert is_odd(7) == True'] [BEGIN]
def is_odd(n) : if (n^1 == n-1) : return True; else : return False; [DONE]
You are an expert Python programmer, and here is your task: Write a function to substract the elements of the given nested tuples. Your code should pass these tests: ['assert substract_elements(((1, 3), (4, 5), (2, 9), (1, 10)), ((6, 7), (3, 9), (1, 1), (7, 3))) == ((-5, -4), (1, -4), (1, 8), (-6, 7))', 'assert subs...
def substract_elements(test_tup1, test_tup2): res = tuple(tuple(a - b for a, b in zip(tup1, tup2)) for tup1, tup2 in zip(test_tup1, test_tup2)) return (res) [DONE]
You are an expert Python programmer, and here is your task: Write a function to reverse each list in a given list of lists. Your code should pass these tests: ['assert reverse_list_lists([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 16]])==[[4, 3, 2, 1], [8, 7, 6, 5], [12, 11, 10, 9], [16, 15, 14, 13]]'...
def reverse_list_lists(lists): for l in lists: l.sort(reverse = True) return lists [DONE]
You are an expert Python programmer, and here is your task: Write a python function to find the index of an extra element present in one sorted array. Your code should pass these tests: ['assert find_Extra([1,2,3,4],[1,2,3],3) == 3', 'assert find_Extra([2,4,6,8,10],[2,4,6,8],4) == 4', 'assert find_Extra([1,3,5,7,9,1...
def find_Extra(arr1,arr2,n) : for i in range(0, n) : if (arr1[i] != arr2[i]) : return i return n [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether the given two numbers have same number of digits or not. Your code should pass these tests: ['assert same_Length(12,1) == False', 'assert same_Length(2,2) == True', 'assert same_Length(10,20) == True'] [BEGIN]
def same_Length(A,B): while (A > 0 and B > 0): A = A / 10; B = B / 10; if (A == 0 and B == 0): return True; return False; [DONE]
You are an expert Python programmer, and here is your task: Write a function to remove multiple spaces in a string. Your code should pass these tests: ["assert remove_spaces('python program')==('python program')", "assert remove_spaces('python programming language')==('python programming language')", "assert r...
import re def remove_spaces(text): return (re.sub(' +',' ',text)) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to get the last element of each sublist. Your code should pass these tests: ['assert Extract([[1, 2, 3], [4, 5], [6, 7, 8, 9]]) == [3, 5, 9]', "assert Extract([['x', 'y', 'z'], ['m'], ['a', 'b'], ['u', 'v']]) == ['z', 'm', 'b', 'v']"...
def Extract(lst): return [item[-1] for item in lst] [DONE]
You are an expert Python programmer, and here is your task: Write a function to convert the given string of float type into tuple. Your code should pass these tests: ['assert float_to_tuple("1.2, 1.3, 2.3, 2.4, 6.5") == (1.2, 1.3, 2.3, 2.4, 6.5)', 'assert float_to_tuple("2.3, 2.4, 5.6, 5.4, 8.9") == (2.3, 2.4, 5.6, ...
def float_to_tuple(test_str): res = tuple(map(float, test_str.split(', '))) return (res) [DONE]
You are an expert Python programmer, and here is your task: Write a function to find the maximum sum of subsequences of given array with no adjacent elements. Your code should pass these tests: ['assert max_sum_subseq([1, 2, 9, 4, 5, 0, 4, 11, 6]) == 26', 'assert max_sum_subseq([1, 2, 9, 5, 6, 0, 5, 12, 7]) == 28', ...
def max_sum_subseq(A): n = len(A) if n == 1: return A[0] look_up = [None] * n look_up[0] = A[0] look_up[1] = max(A[0], A[1]) for i in range(2, n): look_up[i] = max(look_up[i - 1], look_up[i - 2] + A[i]) look_up[i] = max(look_up[i], A[i]) return look_up[n - 1...
You are an expert Python programmer, and here is your task: Write a function to sort a list in increasing order by the last element in each tuple from a given list of non-empty tuples. Your code should pass these tests: ['assert sort_list_last([(2, 5), (1, 2), (4, 4), (2, 3), (2, 1)])==[(2, 1), (1, 2), (2, 3), (4, 4...
def last(n): return n[-1] def sort_list_last(tuples): return sorted(tuples, key=last) [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether the word is present in a given sentence or not. Your code should pass these tests: ['assert is_Word_Present("machine learning","machine") == True', 'assert is_Word_Present("easy","fun") == False', 'assert is_Word_Pre...
def is_Word_Present(sentence,word): s = sentence.split(" ") for i in s: if (i == word): return True return False [DONE]
You are an expert Python programmer, and here is your task: Write a function to extract specified number of elements from a given list, which follow each other continuously. Your code should pass these tests: ['assert extract_elements([1, 1, 3, 4, 4, 5, 6, 7],2)==[1, 4]', 'assert extract_elements([0, 1, 2, 3, 4, 4, ...
from itertools import groupby def extract_elements(numbers, n): result = [i for i, j in groupby(numbers) if len(list(j)) == n] return result [DONE]
You are an expert Python programmer, and here is your task: Write a python function to check whether an array can be sorted or not by picking only the corner elements. Your code should pass these tests: ['assert check([3,2,1,2,3,4],6) == True', 'assert check([2,1,4,5,1],5) == True', 'assert check([1,2,2,1,2,3],6) ==...
def check(arr,n): g = 0 for i in range(1,n): if (arr[i] - arr[i - 1] > 0 and g == 1): return False if (arr[i] - arr[i] < 0): g = 1 return True [DONE]
You are an expert Python programmer, and here is your task: Write a function where a string will start with a specific number. Your code should pass these tests: ["assert match_num('5-2345861')==True", "assert match_num('6-2345861')==False", "assert match_num('78910')==False"] [BEGIN]
import re def match_num(string): text = re.compile(r"^5") if text.match(string): return True else: return False [DONE]