Open In App

Python – Count if dictionary position equals key or value

Last Updated : 27 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Given a dictionary, count instances where dictionary item position equals key or value. Valid for Py >= 3.6 [ Introduction of dictionary ordering ].

Input : test_dict = {5:3, 2:3, 10:4, 7:3, 8:1, 9:5} 
Output : 2 
Explanation : At 3 and 5th position, values are 3 and 5.

Input : test_dict = {5:3, 2:3, 10:4, 8:1, 9:5} 
Output : 1 
Explanation : At 5th position, value is 5. 
 

Method #1 : Using loop

In this we iterate for each dictionary item and test for each item to check if any position is equal to key or value of dictionary, if found, we iterate the counter.

Python3




# Python3 code to demonstrate working of
# Count if dictionary position equals key or value
# Using loop
 
# initializing dictionary
test_dict = {5: 3, 1: 3, 10: 4, 7: 3, 8: 1, 9: 5}
 
# printing original dictionary
print("The original dictionary is : " + str(test_dict))
 
res = 0
test_dict = list(test_dict.items())
for idx in range(0, len(test_dict)):
 
    # checking for key or value equality
    if idx == test_dict[idx][0] or idx == test_dict[idx][1]:
        res += 1
 
# printing result
print("The required frequency : " + str(res))


Output

The original dictionary is : {5: 3, 1: 3, 10: 4, 7: 3, 8: 1, 9: 5}
The required frequency : 3

Method #2 : Using sum() + list comprehension

In this, we assign 1 to each case in which dictionary index is found equal to any of its items, then perform list summation using sum().

Python3




# Python3 code to demonstrate working of
# Count if dictionary position equals key or value
# Using sum() + list comprehension
 
# initializing dictionary
test_dict = {5: 3, 1: 3, 10: 4, 7: 3, 8: 1, 9: 5}
 
# printing original dictionary
print("The original dictionary is : " + str(test_dict))
 
test_dict = list(test_dict.items())
 
# sum() computing sum for filtered cases
res = sum([1 for idx in range(0, len(test_dict)) if idx ==
           test_dict[idx][0] or idx == test_dict[idx][1]])
 
# printing result
print("The required frequency : " + str(res))


Output

The original dictionary is : {5: 3, 1: 3, 10: 4, 7: 3, 8: 1, 9: 5}
The required frequency : 3

Method #3: Using filter() and lambda function

Approach:

  1. Initialize a dictionary test_dict.
  2. Initialize a variable res to 0.
  3. Use a list comprehension to iterate over the enumerated items of the dictionary test_dict.items().
  4. For each enumerated key-value pair, check if the index i is present in the key-value pair.
  5. If the index i is present in the key-value pair, add 1 to the res variable.
  6. Print the resulting frequency of indices that match a key or a value in test_dict.

Python3




# initializing dictionary
test_dict = {5: 3, 1: 3, 10: 4, 7: 3, 8: 1, 9: 5}
 
# printing original dictionary
print("The original dictionary is : " + str(test_dict))
 
# using enumerate() function
res = sum([1 for i, kv in enumerate(test_dict.items()) if i in kv])
 
# printing result
print("The required frequency : " + str(res))


Output

The original dictionary is : {5: 3, 1: 3, 10: 4, 7: 3, 8: 1, 9: 5}
The required frequency : 3

Time complexity: O(n), where n is the number of items in the dictionary.
Auxiliary Space: O(1), as we use only a constant amount of memory.



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads