From 284f8d452da59d3578202d00ce4b589d64ee9948 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 20 Oct 2023 10:07:32 -0400 Subject: [PATCH] two sum is p1, not p2 --- lectures/15_maps_I/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/15_maps_I/README.md b/lectures/15_maps_I/README.md index 13df17b..774d2c4 100644 --- a/lectures/15_maps_I/README.md +++ b/lectures/15_maps_I/README.md @@ -157,6 +157,6 @@ on whether or not the key was in a pair in the map. ## 15.10 Leetcode Exercises -- [Leetcode problem 2: Two Sum](https://leetcode.com/problems/two-sum/). Solution: [p2_twosum.cpp](../../leetcode/p2_twosum.cpp). +- [Leetcode problem 1: Two Sum](https://leetcode.com/problems/two-sum/). Solution: [p1_twosum.cpp](../../leetcode/p1_twosum.cpp). - [Leetcode problem 290: Word Pattern](https://leetcode.com/problems/word-pattern/). Solution: [p290_word_pattern.cpp](../../leetcode/p290_word_pattern.cpp).