Featured Post

Python Logic to Find All Unique Pairs in an Array

Image
 Here's the Python logic for finding all unique pairs in an array that sum up to a target value. Python Unique Pair Problem Write a Python function that finds all unique pairs in an array whose sum equals a target value. Avoid duplicates in the result. For example: Input: arr = [2, 4, 3, 5, 7, 8, 9] , target = 9 Output: [(2, 7), (4, 5)] Hints Use a set for tracking seen numbers. Check for complements efficiently. Example def find_unique_pairs(arr, target):     """     Finds all unique pairs in the array that sum up to the target value.     Parameters:     arr (list): The input array of integers.     target (int): The target sum value.     Returns:     list: A list of unique pairs that sum to the target value.     """     seen = set()     pairs = set()     for num in arr:         complement = target - num         if complement in seen:...

Python - How to Lookup Dictionary by Key

Here's Python Dictionary that explained how to lookup it using Key. Dictionary in Python is Key/Value pair. It's different from the list. The basic rule to identify; is enclosed in flower brackets ({}). Here's a demo about lookup and how to test it. 


Dictionary = { 'key' : 'value', 'key: value'  }  


Dictionary Lookup


IN THIS PAGE

  1. Python Dictionary
  2. Python Lookup
  3. How to check Lookup working or not

Dictionary


Example

my_dict = {'name' : 'srini' , 'salary' : '100000', 'skills' : 'python' }

Here, 'name' is the label.

Then, :

Then, 'srini' -> Value

Explanation
  • Data is enclosed in flower brackets
  • It's an unordered list
  • You can manipulate data (mutable)
  • You can access the value of a particular key. So, in Python, it's called a Lookup. It's one of the best interview questions.



Lookup Dictionary by Key

Python Lookup (a.k.a Dictionary). You can access data quickly. It's really super-speed. 

my_dict['name']

The result will be: 'srini'

  • You should use square brackets ([]) to get lookup data
  • Use key-value in square brackets ([]) with a single quote, you will get value


Output from Lookup

I am now adding new value to the Lookup.

>>> my_dict['role'] = 'Manager'

Now, the my_dict will'be :

>>> my_dict = {'name' : 'srini' , 'salary' : '100000', 'skills' : 'python' , 'role' : 'Manager'}

  • The order of assignmenet will not match with actula storing in Python
  • The order of Key/Value storage is taken care by interpreter

References

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

SQL Query: 3 Methods for Calculating Cumulative SUM

Big Data: Top Cloud Computing Interview Questions (1 of 4)