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:...

How to Count Vowels in Input Quickly

Here you'll know how python counts characters in the input. This is an interview question asked recently.

How to Count Vowels in Input Quickly


How to Count Vowels in Input String


Below is the Interview Question

Vowels = ('aeiou')

You need to check any vowels are present in the input string. Vowels means 'a', 'e', 'i', 'o', 'u'. The below function checks each character of input and compares it with the Vowels.

3 Steps to Count Vowels in Input


You can achieve this in three steps.

1. Create a function called 'my_vowel' (the name up to you)
2. Use Set & Intersection Method
3. Run the function

1. Created 'my_vowel' Function


#!usr/bin/python
#This function finds vowel counts
#welcome to my function
""" Optional description """
def my_vowel(a):
    vowels=set('aeiou')
    a_1= vowels.intersection(set(a))
# initialized the dictionary
    found = {'a' : 0, 'e' : 0, 'i' : 0, 'o' :, 'u' : 0}
    for indx in a_1:
        if indx in vowels:
            found[indx] += 1
     for k, v sorted(found.items():
        print(k,v)






I used vim editor to create a .py module with the name vowel.py. Below is the actual code.


Logic to count vowels in input


2. Used Set & Intersection Methods

- Set method converts the input string as a set (you aware about this in mathes)

- Intersect method extracts each character and compares it with a Dictionary (that I'have already defined).

- I used the IF condition to work this logic correctly and validate each character.


3. Result

I have imported the .py module to Python3. Then, I have supplied an input string. It is then validated and given the counts.

The result says, in the given string the vowels are like this:
a -> 0
e -> 1
i -> 0
o -> 1
u -> 0

using function counting of vowels


Bottom-line

  • As expected in the result we got counts for matching vowels.
  • It's very tricky and asked in most of the interviews
  • Test your function with various strings and improve your knowledge.

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)