Skip to content

Commit

Permalink
Update Isogram.fs with type signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
jurecuhalev authored Feb 8, 2024
1 parent 0276475 commit a1c1242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/isogram/Isogram.fs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Isogram

let isIsogram str = failwith "You need to implement this function."
let isIsogram (str: string): bool = failwith "You need to implement this function."

0 comments on commit a1c1242

Please sign in to comment.