Change e letters to i in words: Difference between revisions

Line 881:
{{works with|jq}}
'''Works with gojq, the Go implementation of jq'''
 
For the sake of brevity, we confine attention to words longer than 6 characters.
 
<lang jq>
def e2i($dict):
Line 889 ⟶ 892:
INDEX( inputs; . )
| . as $dict
| keys[] # keys_unsorted[] if using jq would be faster
| select(length>6)
| . as $w
Line 914 ⟶ 917:
synopses → synopsis
</pre>
 
 
=={{header|Julia}}==
2,442

edits