Skip to content

Commit ed3e47f

Browse files
committed
refactor: uppercase the lcm function
1 parent 0b32086 commit ed3e47f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

math/lcm.jule

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fn Lcm(a: int, b: int): int {
1+
fn LCM(a: int, b: int): int {
22
if a == 0 || b == 0 {
33
return 0
44
}

0 commit comments

Comments
 (0)