leetcode

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

commit f8c8338ce72d74b9d3cc453625e198259ea5fdd5
parent b375dbd77fd05aaa8a5b621816cb041084cdbdd3
Author: AndrewLockVI <andrewlaack1@gmail.com>
Date:   Fri, 21 Apr 2023 01:16:41 -0500

Updated leetcode execution stats

Diffstat:
Mpath-sum/path-sum.dart | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/path-sum/path-sum.dart b/path-sum/path-sum.dart @@ -2,7 +2,8 @@ //added together is equal to the targetSum. //The time complexity of this is O(n) because in the worst case //the algorithm will visit all nodes. - +//Time: 298ms Beats: 61.11% +//Memory: 146.4MB Beats:16.67% class Solution { int goal = 0;