diff --git a/Leetcode Challenge/January/String to Integer (atoi).cpp b/Leetcode Challenge/January/String to Integer (atoi).cpp index 92da4d3..2ad09ba 100644 --- a/Leetcode Challenge/January/String to Integer (atoi).cpp +++ b/Leetcode Challenge/January/String to Integer (atoi).cpp @@ -25,7 +25,7 @@ class Solution { if(sign == 1 && ans > MAX) return MAX; i++; - }q + } return (int)(sign*ans); }