From 522a4bdfbdf31524962e5c7ca2c7f53415c95cb0 Mon Sep 17 00:00:00 2001 From: Srihari Thyagarajan Date: Fri, 30 Aug 2024 00:14:56 +0530 Subject: [PATCH] Update README --- Leetcode/Two_Sum/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Leetcode/Two_Sum/README.md b/Leetcode/Two_Sum/README.md index 46225635..ffebbcc6 100644 --- a/Leetcode/Two_Sum/README.md +++ b/Leetcode/Two_Sum/README.md @@ -6,7 +6,7 @@ - [Examples](#examples) - [Constraints](#constraints) - [Solutions](#solutions) - - [Approach 1: Brute Force (Time Limit Exceeded)](#approach-1-brute-force-time-limit-exceeded) + - [Approach 1: Brute Force](#approach-1-brute-force) - [Approach 2: Hash Map](#approach-2-hash-map) - [Complexity Analysis](#complexity-analysis) - [Code Explanation](#code-explanation) @@ -53,7 +53,7 @@ Output: [0,1] ## Solutions -### Approach 1: Brute Force (Time Limit Exceeded) +### Approach 1: Brute Force ```python class Solution: