{255:
     {255:
         {1:
            {2:{}
            }
         }
     }
 },
 {255:
     {255:
         {2:
           {3:{}
           }
         }
     }
 }
My dictionary is highly complex (even more entries than shown above)
Now I want to merge two dictionaries
output should be :
 {255:
     {255:
         {1:
            {2:{}
            }
         },
        {2:
           {3:{}
        }
     }
 }
also the maximum nesting possible is till level 5.
 
     
     
    