We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 111c849 commit d977a55Copy full SHA for d977a55
exercises/practice/isogram/.meta/extra.json
@@ -0,0 +1,10 @@
1
+[
2
+ {
3
+ "description": "26 letter name",
4
+ "property": "isIsogram",
5
+ "input": {
6
+ "phrase": "Mamungkukumpurangkuntjunya"
7
+ },
8
+ "expected": false
9
+ }
10
+]
exercises/practice/isogram/IsogramTest.lean
@@ -33,6 +33,8 @@ def isogramTests : TestSuite :=
33
return assertFalse (Isogram.isIsogram "angola"))
34
|>.addTest "word with duplicated character and with two hyphens" (do
35
return assertFalse (Isogram.isIsogram "up-to-date"))
36
+ |>.addTest "26 letter name" (do
37
+ return assertFalse (Isogram.isIsogram "Mamungkukumpurangkuntjunya"))
38
39
def main : IO UInt32 := do
40
runTestSuitesWithExitCode [isogramTests]
0 commit comments