VMware | Phone | Validate JSON

Position: New Grad

Validate a json and return true or false.

Example:

Input:
{ 
   "glossary":{ 
      "title":"exampleglossary",
      "GlossDiv":{ 
         "title":"S",
         "GlossList":{ 
            "GlossEntry":{ 
               "ID":"SGML",
               "SortAs":"SGML",
               "GlossTerm":"StandardGeneralizedMarkupLanguage",
               "Acronym":"SGML",
               "Abbrev":"ISO8879:1986",
               "GlossDef":{ 
                  "para":"Ameta-markuplanguage,usedtocreatemarkuplanguagessuchasDocBook.",
                  "GlossSeeAlso":[ 
                     "GML",
                     "XML"
                  ]
               },
               "GlossSee":"markup"
            }
         }
      }
   }
}

Output: true

Second Phone screen: Print all palindrome substrings, spiral matrix

Comments (4)