File: root - text - article - 2020 - 01 - max-and-min-with-limited-comparisons.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 488 Views, 30498 Search Bots | 58 Words
| Browse | Archive
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 488 Views, 30498 Search Bots | 58 Words
| Browse | Archive
Hi, here's your problem today. This problem was recently asked by Microsoft:
Given a list of numbers of size n, where n is greater than 3, find the maximum and minimum of the list using less than 2 * (n - 1) comparisons.
Here's a start:
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 488 Views, 30498 Search Bots | 58 Words Given a list of numbers of size n, where n is greater than 3, find the maximum and minimum of the list using less than 2 * (n - 1) comparisons.
Here's a start:
def find_min_max(nums):
# Fill this in.
print find_min_max([3, 5, 1, 2, 4, 8])
# (1, 8)
Related Articles
- Daily Interview Problem: Running Median
- ImageMagick Vulnerabilities - CVE-2016–3714
- Algorithm Interview: Make the Largest Number
- Daily Interview Problem: Merge List Of Number Into Ranges
- First and Last Indices of an Element in a Sorted Array
- Daily Interview Problem: Maximum Profit From Stocks
- Algorithm Interview: Longest Consecutive Sequence
- Plus One
- [Daily Problem] Longest Palindromic Substring
- Daily Interview Problem: Look and Say Sequence
©2006~2024 SteakOverCooked - 0.00697 Seconds(s) - 2833.152 KB/s - 11 Online Memory: 495.42 KB
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
How to Cook a Perfect Steak? | <meta name="robots" content="index, follow">
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
Comments (0)
Read & Write - Normal - Mini - Post - All Comments - Statistics
Be the first one to comment this page !