2018年1月11日 星期四

Python: Find a distinct pair of numbers whose product is odd from a sequence of integer values

Python: Find a distinct pair of numbers whose product is odd from a sequence of integer values 從一系列整數對中找出一個產品是奇數的

Python Basic: Exercise-150 with Solution

Write a Python function to find a distinct pair of numbers whose product is odd from a sequence of integer values.
Sample Solution :-
def odd_product(nums):
  for i in range(len(nums)):
    for j in range(len(nums)):
      if  i != j:
        product = nums[i] * nums[j]
        if product & 1:
          return True
          return False
          
dt1 = [2, 4, 6, 8]
dt2 = [1, 6, 4, 7, 8]
print(dt1, odd_product(dt1));
print(dt2, odd_product(dt2));

=========== RESTART: F:/Python_APSC/py-ex-basic-150.py ===========
[2, 4, 6, 8] None
[1, 6, 4, 7, 8] True
>>> 

沒有留言:

張貼留言

RFID TI 培訓影片系列

RFID TI 培訓影片系列  https://www.ti.com/zh-tw/video/series/rfid.html 培訓影片系列 RFID 隨著創新技術日益發展,RFID 和 RF 術語越來越容易讓人混淆。本訓練系列詳細介紹了使用案例、權衡技術優缺點,讓您清楚知道該選...