Pythonをブラッシュアップしようとしているだけなので、ここで基本的な間違いを犯したと確信しています。私のコードは、循環的にソートされた配列の中で最大のアイテムを見つけるおもちゃのアプリです。
これが私のコードです:
def listIsSorted(l):
if l[0] < l[-1]:
return 1
return 0
def findLargest(l):
listLength = len(l)
if(listLength == 1):
return l[0]
if(listLength == 2):
if(l[0] > l[1]):
print("OMG I Found it: " + str(l[0]))
return l[0]
return l[1]
halfway = int(listLength/2)
firsthalf = l[:int(halfway)]
secondhalf = l[int(halfway):]
if(listIsSorted(firsthalf) and listIsSorted(secondhalf)):
return max(l[halfway - 1], l[-1])
elif (listIsSorted(firsthalf)):
findLargest(secondhalf)
else:
findLargest(firsthalf)
l4 = [5,1,2,3]
print(findLargest(l4))
これにより、次のように出力されます。
OMG I Found it: 5
None
私の質問はNone
、5として出力されただけなのに、なぜタイプとして返されるのですか?