Mathematics;Working out an integer and the returns
- Write a Python function that takes a positive integer N and returns the factorial of N, i.e., N!
The factorial of N, denoted N!, is the product of the integers from 1 to N. (1 Point)
Examples:
5!=54321,
4!=432*1
0!=1
- Write a short Python function that takes a sequence of integer values and determines if there is a distinct pair of numbers in the sequence whose product is odd. (1 Point)
Examples:
Inputs: 2 4 5
Outputs: false
Save your time - order a paper!
Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines
Order Paper NowInputs: 1 3 4
Outputs: true
- Write a python function that takes an integer (e.g., 342, -123) and returns its reverse digit (i.e., 243, -321). (2 Point)
Examples:
Input: 234
Output: 432
Input:-241
Output:-142
Notes: This function should be able to deal with both positive and negative integers.
- Write a Python function that takes a string s, representing a sentence,
and returns a copy of the string with all comma removed. (1 Point)
Examples:
Inputs: “Sit down, please”
Output: “Sit down please”
Input: “Hello Python, I don’t really know you well”
Output: “Hello Python I don’t really know you well”
- Given a string s containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[‘ and ‘]’, write a Python function determine if the input string is valid. (2 Point)
An input string is valid if:
- Open brackets must be closed by the same type of brackets.
- Open brackets must be closed in the correct order.
You don’t need to worry about time complexity nor storage complexity.
Examples:
Input: s=”()”
Output: true
Input: s=”({})”
Output: true
Input : s=”(}”
Output: false
Input : s=”([{})]”
Output: false
- Write a Python function that merges two sorted lists and return a new sorted list. Both the input lists and output lists should be sorted. You might use the Python list as the data structure. (3 Point)
Examples:
Input: 1<3<4, 1<2<6<8
Output: 1<1<2<3<4<6<8
Sample Solution
The post Mathematics;Working out an integer and the returns appeared first on homework handlers.


