{"ScriptPreparationCode":"function deleteBySplice (array, element) {\r\n var index = array.indexOf( element );\r\n if (index !== -1) {\r\n \tarray.splice( index, 1 );\r\n }\r\n}\r\n\r\nfunction deleteByDelete (array, element) {\r\n var index = array.indexOf( element );\r\n if (index !== -1) {\r\n \tdelete array[index];\r\n }\r\n}","TestCases":[{"Name":"splice","Code":"deleteBySplice( array, \u0022uyjxmtqnrzvj7mkyqmtoqolxr\u0022 );\r\ndeleteBySplice( array, \u0022m1c6kzws0iubt8g0zlsug14i\u0022 );\r\ndeleteBySplice( array, \u00224wlivut0n1ht80rs5lyf7ds4i\u0022 );","IsDeferred":false},{"Name":"delete","Code":"deleteByDelete( array, \u0022uyjxmtqnrzvj7mkyqmtoqolxr\u0022 );\r\ndeleteByDelete( array, \u0022m1c6kzws0iubt8g0zlsug14i\u0022 );\r\ndeleteByDelete( array, \u00224wlivut0n1ht80rs5lyf7ds4i\u0022 );","IsDeferred":false}]}