File tree 3 files changed +18
-3
lines changed
exercises/practice/isogram
3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 3
3
"contributors" : [
4
4
" amscotti" ,
5
5
" ankorGH" ,
6
+ " jagdish-15" ,
6
7
" matthewmorgan" ,
7
8
" ovidiu141" ,
8
9
" PakkuDon" ,
Original file line number Diff line number Diff line change 1
- # This is an auto-generated file. Regular comments will be removed when this
2
- # file is regenerated. Regenerating will not touch any manually added keys,
3
- # so comments can be added in a "comment" key.
1
+ # This is an auto-generated file.
2
+ #
3
+ # Regenerating this file via `configlet sync` will:
4
+ # - Recreate every `description` key/value pair
5
+ # - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
6
+ # - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
7
+ # - Preserve any other key/value pair
8
+ #
9
+ # As user-added comments (using the # character) will be removed when this file
10
+ # is regenerated, comments can be added via a `comment` key.
4
11
5
12
[a0e97d2d-669e-47c7-8134-518a1e2c4555 ]
6
13
description = " empty string"
@@ -40,3 +47,6 @@ description = "duplicated character in the middle"
40
47
41
48
[310ac53d-8932-47bc-bbb4-b2b94f25a83e ]
42
49
description = " same first and last characters"
50
+
51
+ [0d0b8644-0a1e-4a31-a432-2b3ee270d847 ]
52
+ description = " word with duplicated character and with two hyphens"
Original file line number Diff line number Diff line change @@ -54,5 +54,9 @@ describe('Isogram', () => {
54
54
xtest ( 'same first and last characters' , ( ) => {
55
55
expect ( isIsogram ( 'angola' ) ) . toEqual ( false ) ;
56
56
} ) ;
57
+
58
+ xtest ( 'word with duplicated character and with two hyphens' , ( ) => {
59
+ expect ( isIsogram ( 'up-to-date' ) ) . toEqual ( false ) ;
60
+ } ) ;
57
61
} ) ;
58
62
} ) ;
You can’t perform that action at this time.
0 commit comments