To the Top
File:  root - text - article - 2019 - 12 - distribute-bonuses.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 478 Views, 14793 Search Bots | 144 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by Twitter:

You are the manager of a number of employees who all sit in a row. The CEO would like to give bonuses to all of your employees, but since the company did not perform so well this year the CEO would like to keep the bonuses to a minimum.

The rules of giving bonuses is that:
- Each employee begins with a bonus factor of 1x.
- For each employee, if they perform better than the person sitting next to them, the employee is given +1 higher bonus (and up to +2 if they perform better than both people to their sides).

Given a list of employee's performance, find the bonuses each employee should get.

Example:
Input: [1, 2, 3, 2, 3, 5, 1]
Output: [1, 2, 3, 1, 2, 3, 1]
Here's your starting point:


def getBonuses(performance):
# Fill this in.

print getBonuses([1, 2, 3, 2, 3, 5, 1])
# [1, 2, 3, 1, 2, 3, 1]
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 478 Views, 14793 Search Bots | 144 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Validate Binary Search Tree
  2. Invert a Binary Tree
  3. Daily Interview Question: Create a Simple Calculator
  4. Staying on a Chess Board
  5. How to Play WAV music under DOS?
  6. Daily Interview Problem: Largest Product of 3 Elements I
  7. Daily Interview Problem: Largest BST in a Binary Tree
  8. Floor and Ceiling of a Binary Search Tree
  9. Number of Ways to Climb Stairs
  10. ImageMagick Vulnerabilities -  CVE-2016–3714

Comments (0)

Your Email (Domain Part Not Exposed):

Your Comments:

Privately By Mail Colors More Smileys S x y @

Verification (Click Image 2 Refresh):

    Be the first one to comment this page !


Page Edited: October 30 2020 14:21:09 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />