From ea0c2c80936522286122756668d3ba6f07188a2d Mon Sep 17 00:00:00 2001 From: douysu Date: Mon, 1 Jun 2020 16:55:29 +0800 Subject: [PATCH] =?UTF-8?q?[up]=201.TwoSum=E5=AE=9E=E7=8E=B0=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\274\232\344\270\244\346\225\260\344\271\213\345\222\214.md" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/notes/LeetCode\347\254\2541\345\217\267\351\227\256\351\242\230\357\274\232\344\270\244\346\225\260\344\271\213\345\222\214.md" "b/notes/LeetCode\347\254\2541\345\217\267\351\227\256\351\242\230\357\274\232\344\270\244\346\225\260\344\271\213\345\222\214.md" index f7b730d6..99469b0b 100644 --- "a/notes/LeetCode\347\254\2541\345\217\267\351\227\256\351\242\230\357\274\232\344\270\244\346\225\260\344\271\213\345\222\214.md" +++ "b/notes/LeetCode\347\254\2541\345\217\267\351\227\256\351\242\230\357\274\232\344\270\244\346\225\260\344\271\213\345\222\214.md" @@ -58,6 +58,8 @@ public: record[nums[i]] = i; } + + return {}; } };