-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcoderbyte-VowelSquare.py
32 lines (24 loc) · 1.39 KB
/
coderbyte-VowelSquare.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'''
Challenge
Have the function VowelSquare(strArr) take the strArr parameter being passed which will be a 2D matrix of some arbitrary size filled with letters from the alphabet, and determine if a 2x2 square composed entirely of vowels exists in the matrix. For example: strArr is ["abcd", "eikr", "oufj"] then this matrix looks like the following:
a b c d
e i k r
o u f j
Within this matrix there is a 2x2 square of vowels starting in the second row and first column, namely, ei, ou. If a 2x2 square of vowels is found your program should return the top-left position (row-column) of the square, so for this example your program should return 1-0. If no 2x2 square of vowels exists, then return the string not found. If there are multiple squares of vowels, return the one that is at the most top-left position in the whole matrix. The input matrix will at least be of size 2x2.
Sample Test Cases
Input:["aqrst", "ukaei", "ffooo"]
Output:"1-2"
Input:["gg", "ff"]
Output:"not found"
'''
def VowelSquare(strArr):
l = list([[x for x in s] for s in strArr])
row = len(strArr)
col = len(strArr[0])
for i in range(0,row-1):
for j in range(0, col-1):
if l[i][j] in 'aeiou' and l[i][j+1] in 'aeiou' and l[i+1][j] in 'aeiou' and l[i+1][j+1] in 'aeiou':
return str(i) + '-' + str(j)
return 'not found'
# keep this function call here
print VowelSquare(raw_input())