fork download
  1. var table =
  2. "3\n\
  3. 2DNail 3\n\
  4. 4DNail 5\n\
  5. 8DNail 10\n\
  6. 8DNail 11\n\
  7. 4DNail 5\n\
  8. 2DNail 2";
  9.  
  10. var rowData = table.split("\n");
  11. rowData.shift(); //do not need the first number
  12.  
  13. var oldList = {};
  14. var newList = {};
  15.  
  16. for (var i = 0; i < rowData.length; i++) {
  17. var tempList = rowData[i].split(" ");
  18. var name = tempList[0];
  19. var price = tempList[1];
  20.  
  21. if(name in oldList) newList[name] = price;
  22. else oldList[name] = price;
  23. }
  24.  
  25. for (var key in oldList) {
  26. var difference;
  27. if(oldList[key] != newList[key]) {
  28. difference = (newList[key] - oldList[key] < 0) ? (newList[key] - oldList[key]).toString() : "+" + (newList[key] - oldList[key]).toString();
  29. print(key, difference);
  30. }
  31. }
Success #stdin #stdout 0.01s 4940KB
stdin
Standard input is empty
stdout
2DNail -1
8DNail +1