summaryrefslogtreecommitdiff
path: root/progs/a389.py
blob: 2cfa22e9c3792d2b14c7c739f590d61be7025991 (plain)
1
2
3
4
5
6
7
def check_k_elements(test_list, K):
  res = True
  for tup in test_list:
    for ele in tup:
      if ele != K:
        res = False
  return (res)