-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1873-CalculateSpecialBonus.py
More file actions
70 lines (62 loc) · 2.77 KB
/
1873-CalculateSpecialBonus.py
File metadata and controls
70 lines (62 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# 1873. Calculate Special Bonus
# Table: Employees
# +-------------+---------+
# | Column Name | Type |
# +-------------+---------+
# | employee_id | int |
# | name | varchar |
# | salary | int |
# +-------------+---------+
# employee_id is the primary key for this table.
# Each row of this table indicates the employee ID, employee name, and salary.
# Write an SQL query to calculate the bonus of each employee.
# The bonus of an employee is 100% of their salary if the ID of the employee is an odd number and the employee name does not start with the character 'M'. The bonus of an employee is 0 otherwise.
# Return the result table ordered by employee_id.
# The query result format is in the following example.
# Example 1:
# Input:
# Employees table:
# +-------------+---------+--------+
# | employee_id | name | salary |
# +-------------+---------+--------+
# | 2 | Meir | 3000 |
# | 3 | Michael | 3800 |
# | 7 | Addilyn | 7400 |
# | 8 | Juan | 6100 |
# | 9 | Kannon | 7700 |
# +-------------+---------+--------+
# Output:
# +-------------+-------+
# | employee_id | bonus |
# +-------------+-------+
# | 2 | 0 |
# | 3 | 0 |
# | 7 | 7400 |
# | 8 | 0 |
# | 9 | 7700 |
# +-------------+-------+
# Explanation:
# The employees with IDs 2 and 8 get 0 bonus because they have an even employee_id.
# The employee with ID 3 gets 0 bonus because their name starts with 'M'.
# The rest of the employees get a 100% bonus.
import pandas as pd
def calculate_special_bonus(employees: pd.DataFrame) -> pd.DataFrame:
# the ID of the employee is an odd number
# and the employee name does not start with the character 'M'.
# The bonus of an employee is 0 otherwise.
employees['bonus'] = employees.apply(
lambda x:x['salary'] if x['employee_id'] % 2 and x['name'][0] != 'M' else 0,
axis = 1
)
# the result table ordered by employee_id.
return employees[["employee_id","bonus"]].sort_values('employee_id')
def calculate_special_bonus1(employees: pd.DataFrame) -> pd.DataFrame:
employees.loc[(employees['employee_id'] % 2 == 0) | (employees['name'].str[0] == 'M'), 'salary'] = 0
employees.rename(columns = {'salary': 'bonus'},inplace = True)
employees.sort_values(by = 'employee_id',inplace = True)
return employees[['employee_id','bonus']]
if __name__ == "__main__":
data = [[2, 'Meir', 3000], [3, 'Michael', 3800], [7, 'Addilyn', 7400], [8, 'Juan', 6100], [9, 'Kannon', 7700]]
employees = pd.DataFrame(data, columns=['employee_id', 'name', 'salary']).astype({'employee_id':'int64', 'name':'object', 'salary':'int64'})
print(calculate_special_bonus(employees))
print(calculate_special_bonus1(employees))