Solution Exercise 89 *: python algorithm which determines the list of integers within a list
Exercise 89 * Given a list L, write a python algorithm which returns the list of digits contained within the elements of list L without repetition. Example if L =…
Solution Exercise 88 *: python algorithm which determines the list of integers within a list
Exercise 88 * Given a list L, write a python algorithm which returns the list of digits contained within the elements of the list L. Example if L = ["Python3",…
Solution Exercise 87: python algorithm which converts a list into a string
Exercise 87 Given a list L, write a Python algorithm to convert a list into a string without using any predefined method other than the str() method. Example if L…
Solution Exercise 86: python algorithm which returns the list of integers elements of a given list
Exercise 86 Given a list L, write a python algorithm which returns the list of integer elements of L. Example: if L = ["Python3", 91, "Java2", 95] , the algorithm…
Solution Exercise 85: moving the nul elements of a python list to the end
Exercise 85 Write a python program which that move the null values of a list to the end of the list while keeping the order of the other non-null elements.…
Solution Exercise 84: python algorithm which determines the list of integers whose tens digit is divisible by 3
Exercise 84 96 is an integer whose tens digit is divisible by 3 (property (*)) Given an integer n, write an algorithm in python which returns the list of integers…
Solution Exercise 83: python algorithm which replaces even index elements by 2
Exercise 83 Write a python algorithm which replaces the elements of even index by 2 and the elements of odd index by 1. Solution Solution # function which replaces the…