Featured Post

Python Set Operations Explained: From Theory to Real-Time Applications

Image
A  set  in Python is an unordered collection of unique elements. It is useful when storing distinct values and performing operations like union, intersection, or difference. Real-Time Example: Removing Duplicate Customer Emails in a Marketing Campaign Imagine you are working on an email marketing campaign for your company. You have a list of customer emails, but some are duplicated. Using a set , you can remove duplicates efficiently before sending emails. Code Example: # List of customer emails (some duplicates) customer_emails = [ "alice@example.com" , "bob@example.com" , "charlie@example.com" , "alice@example.com" , "david@example.com" , "bob@example.com" ] # Convert list to a set to remove duplicates unique_emails = set (customer_emails) # Convert back to a list (if needed) unique_email_list = list (unique_emails) # Print the unique emails print ( "Unique customer emails:" , unique_email_list) Ou...

How to Create a Symmetric Array in Python

 Here's a Python program that says to write a Symmetric array transformation. A top interview question.


Symmetric array example


Symmetric Array Transformation

Problem:


Write a Python function that transforms a given array into a symmetric array by mirroring it around its center. For example:

  • Input: [1, 2, 3]
  • Output: [1, 2, 3, 2, 1]

Hints:

  • Use slicing for the reverse part.
  • Concatenate the original array with its mirrored part.

Example

def symmetric_array(arr):
    """
    Transforms the input array into a symmetric array by mirroring it around its center.

    Parameters:
    arr (list): The input array.

    Returns:
    list: The symmetric array.
    """
    # Mirror the array by concatenating the original with its reverse (excluding the last element to avoid duplication)
    return arr + arr[-2::-1]

# Example usage
input_array = [1, 2, 3]
symmetric_result = symmetric_array(input_array)
print("Input Array:", input_array)
print("Symmetric Array:", symmetric_result)

Output:

For the input [1, 2, 3], the output will be:

Input Array: [1, 2, 3] Symmetric Array: [1, 2, 3, 2, 1]

Explanation

  1. arr[-2::-1]:

    • This slices the array in reverse order starting from the second-to-last element to avoid duplicating the middle element.
  2. Concatenation (+):

    • Combines the original array with its mirrored part to create symmetry.

Comments

Popular posts from this blog

SQL Query: 3 Methods for Calculating Cumulative SUM

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

5 SQL Queries That Popularly Used in Data Analysis