Basketball Points

Published by ch47longhorn in

You are counting points for a basketball game, given the amount of 2-pointers scored and 3-pointers scored, find the final points for the team and return that value.

Examples

points(1, 1) ➞ 5

points(7, 5) ➞ 29

points(38, 8) ➞ 100

Notes

N/A

Watch a quick demo on how Edabit works.