Skip to content

Commit

Permalink
fix: operations2 return type
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Sep 22, 2023
1 parent db59818 commit b539aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/operations/operations2.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fn modulus(x: u8, y: u8) -> u8 {
res
}

fn floor_division(x: usize, y: usize) -> u32 {
fn floor_division(x: usize, y: usize) -> usize {
// calculate the floor_division of x and y
// FILL ME
res
Expand Down

0 comments on commit b539aa1

Please sign in to comment.