Skip to content

Commit 3610c37

Browse files
authored
Merge pull request #1845 from s0ooo0k/main
[s0ooo0k] Week5 Solution
2 parents 194fda6 + 5988116 commit 3610c37

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution {
2+
public int maxProfit(int[] prices) {
3+
int price = prices[0];
4+
int maxProfit = 0;
5+
6+
for(int i=1; i<prices.length; i++){
7+
int profit = prices[i]-price;
8+
maxProfit = Math.max(maxProfit, profit);
9+
price = Math.min(price, prices[i]);
10+
}
11+
return maxProfit;
12+
}
13+
}
14+

group-anagrams/s0ooo0k.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class Solution {
2+
public List<List<String>> groupAnagrams(String[] strs) {
3+
HashMap<String, List<String>> map = new HashMap<>();
4+
5+
for(String s : strs) {
6+
char[] c = s.toCharArray();
7+
Arrays.sort(c);
8+
9+
String key = new String(c);
10+
if(!map.containsKey(key)) {
11+
map.put(key, new ArrayList<>());
12+
}
13+
14+
map.get(key).add(s);
15+
}
16+
return new ArrayList<>(map.values());
17+
}
18+
}
19+
20+

0 commit comments

Comments
 (0)