Difficulty:
We are going to implement a very simple string-based, key-value database, whose only interface is string commands. There are only two commands: SET and GET.
SET <key> <value>: It sets the value of a record.keyis a case-sensitive, alphanumeric (no spaces or special letters) string.valueis the rest of the string afterkeyand can include any characters, or even be an empty string. The output of this command isCREATEDif that key did not exist in the database,UNCHANGEDif the key existed but contained the same value, orUPDATEDif it had a different value.
GET <key>: This command returns the value stored in the database in the format ofVALUE=<value>, or simply outputsNOT FOUNDif the key does not exist.If an invalid key is used, or the command does not exist, the output should be
ERROR. See the sample input/output below for an example.
run([ "invalid command", "set key1 val1", "SET key_1 val1", "SET key1 val1", "GET key1 extra_stuff", "SET key1 val2", "SET key1 val2", "GET key1", "GET key2", "SET key2 val1 val2_=_val3", "GET key2", "GET key1" ]);
[ "ERROR", "ERROR", "ERROR", "CREATED", "ERROR", "UPDATED", "UNCHANGED", "VALUE=val2", "NOT FOUND", "CREATED", "VALUE=val1 val2_=_val3", "VALUE=val2" ]