Post History
J, 19 char Solution: (e.&'aeiouAEIOU'#]) Test examples: (e.&'aeiouAEIOU'#]) '' (e.&'aeiouAEIOU'#]) 'Rhythm' (e.&'aeiouAEIOU'#]) 'a' a (e.&'aeiouAEIOU'#...
Answer
#3: Post edited
# J, 17 char- **Solution:**
- ```
e.&'aeiouAEIOU'#]- ```
- **Test examples:**
- ```
- (e.&'aeiouAEIOU'#]) ''
- (e.&'aeiouAEIOU'#]) 'Rhythm'
- (e.&'aeiouAEIOU'#]) 'a'
- a
- (e.&'aeiouAEIOU'#]) 'emu'
- eu
- (e.&'aeiouAEIOU'#]) 'aLtErNaTe'
- aEae
- ```
- **How it works:**
- ```
- ] is whatever value is on the the far right
- # uses boolean value on its left to select from value on its right
- 'aeiouAEIOU' are the characters being searched for
- & ties the value on its right to the verb on its left
- e. searches for the values on its right within the value on its left
- producing a boolean result for found / not found
- ```
- # J, 19 char
- **Solution:**
- ```
- (e.&'aeiouAEIOU'#])
- ```
- **Test examples:**
- ```
- (e.&'aeiouAEIOU'#]) ''
- (e.&'aeiouAEIOU'#]) 'Rhythm'
- (e.&'aeiouAEIOU'#]) 'a'
- a
- (e.&'aeiouAEIOU'#]) 'emu'
- eu
- (e.&'aeiouAEIOU'#]) 'aLtErNaTe'
- aEae
- ```
- **How it works:**
- ```
- ] is whatever value is on the the far right
- # uses boolean value on its left to select from value on its right
- 'aeiouAEIOU' are the characters being searched for
- & ties the value on its right to the verb on its left
- e. searches for the values on its right within the value on its left
- producing a boolean result for found / not found
- ```
#2: Post edited
- # J, 17 char
**Solution: **- ```
- e.&'aeiouAEIOU'#]
- ```
**test examples: **- ```
- (e.&'aeiouAEIOU'#]) ''
- (e.&'aeiouAEIOU'#]) 'Rhythm'
- (e.&'aeiouAEIOU'#]) 'a'
- a
- (e.&'aeiouAEIOU'#]) 'emu'
- eu
- (e.&'aeiouAEIOU'#]) 'aLtErNaTe'
- aEae
- ```
- **How it works:**
- ```
- ] is whatever value is on the the far right
- # uses boolean value on its left to select from value on its right
- 'aeiouAEIOU' are the characters being searched for
- & ties the value on its right to the verb on its left
- e. searches for the values on its right within the value on its left
- producing a boolean result for found / not found
- ```
- # J, 17 char
- **Solution:**
- ```
- e.&'aeiouAEIOU'#]
- ```
- **Test examples:**
- ```
- (e.&'aeiouAEIOU'#]) ''
- (e.&'aeiouAEIOU'#]) 'Rhythm'
- (e.&'aeiouAEIOU'#]) 'a'
- a
- (e.&'aeiouAEIOU'#]) 'emu'
- eu
- (e.&'aeiouAEIOU'#]) 'aLtErNaTe'
- aEae
- ```
- **How it works:**
- ```
- ] is whatever value is on the the far right
- # uses boolean value on its left to select from value on its right
- 'aeiouAEIOU' are the characters being searched for
- & ties the value on its right to the verb on its left
- e. searches for the values on its right within the value on its left
- producing a boolean result for found / not found
- ```
#1: Initial revision
# J, 17 char **Solution: ** ``` e.&'aeiouAEIOU'#] ``` **test examples: ** ``` (e.&'aeiouAEIOU'#]) '' (e.&'aeiouAEIOU'#]) 'Rhythm' (e.&'aeiouAEIOU'#]) 'a' a (e.&'aeiouAEIOU'#]) 'emu' eu (e.&'aeiouAEIOU'#]) 'aLtErNaTe' aEae ``` **How it works:** ``` ] is whatever value is on the the far right # uses boolean value on its left to select from value on its right 'aeiouAEIOU' are the characters being searched for & ties the value on its right to the verb on its left e. searches for the values on its right within the value on its left producing a boolean result for found / not found ```