leetcode

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 2bcda09999d926ecaeb70731445ce0684a7cb11c
parent dfbe7c919cadefd04c86216ccfaa81d914f4815c
Author: AndrewLockVI <andrewlaack1@gmail.com>
Date:   Wed, 12 Apr 2023 16:23:27 -0500

Updated execution time

Diffstat:
Msingle-number/single-numberV2.cpp | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/single-number/single-numberV2.cpp b/single-number/single-numberV2.cpp @@ -6,9 +6,11 @@ using namespace std; // Time: Memory: -// 27ms 20.2MB -// 35.71% 14.99% -// +// 20ms 16.9MB +// 64.90% 57.10% +// This is faster than using a map because the map requires a lot of checks +// to see if the map already has a value in it. Then it needs to iterate through the list +// again to find which value did not have a pairing. //Another solution that involves sorting the list and then checking to //see if the next value in the list is equal to the current value.