You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Answer12345678910111213141516class Solution {public: int sumOfDigits(vector<int>& A) { int minNum = INT_MAX; for(auto& num : A) minNum = min(num, minNu
The text was updated successfully, but these errors were encountered:
https://iamczh.com/2019/11/11/1085-Sum-of-Digits-in-the-Minimum-Number/
Answer12345678910111213141516class Solution {public: int sumOfDigits(vector<int>& A) { int minNum = INT_MAX; for(auto& num : A) minNum = min(num, minNu
The text was updated successfully, but these errors were encountered: