•  
      tasks #45318 Check if binary representations of two numbers are anagram
    #45318
    Mohini Singh (mohini)
    2022-08-16 16:15
    2022-08-16 16:15
    Details
    Check if binary representations of two numbers are anagram
    The approach to solving this problem is to first convert integer numbers to binary numbers using the bin() method. Since the length of the binary representation can have different lengths then we will append 0s to make the length equal. We will convert each of the binary strings to a dictionary using Counter() function. Then we will check if the 0s and 1s in both the dictionary are equal, if they are equal then they are anagram else they are not.

    5 - Medium
    State of Progress
    2022-05-16
    100
    2022-05-18
    Mohini Singh (mohini)
    Rakesh Kumar Verma (rakesh.verma)
    2022-05-17
    Closed
    Attachments
    References
    References list is empty