Skip to content

Commit

Permalink
feat: added random function
Browse files Browse the repository at this point in the history
  • Loading branch information
simone-cartalemi committed Nov 8, 2023
1 parent c446327 commit 977e5ce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/random_number.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from random import randint

def random_number(min: int, max: int) -> int:
return randint(min, max)

0 comments on commit 977e5ce

Please sign in to comment.