package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev

# README

Description

Implement the Power function

Example 1:

Input: number = 2, exponent = 2
Output: 4

Example 2:

Input: number = 2, exponent = -3
Output: 1/8

# Functions

Power calculates the power.