Skip to content

Commit 782474b

Browse files
committed
feat:leetcode
1 parent ac7639b commit 782474b

File tree

11 files changed

+107
-49
lines changed

11 files changed

+107
-49
lines changed

AddBinary/add_binary.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class E {
180180
b = temp;
181181
}
182182
var carry = '0';
183-
int k = 0;
183+
// int k = 0;
184184
int j = b.length - 1;
185185
for (int i = a.length - 1; i >= 0; i--) {
186186
if (j >= 0) {

LongestPathWithDifferentAdjacentCharacters/longest_path_with_Different_adjacent_characters.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class A {
6767
return maxi;
6868
}
6969

70-
int iterate(Node root) {
70+
int iterate(Node? root) {
7171
if (root == null) {
7272
return 0;
7373
}

MaximumProductOfSplittedBinaryTree/maximum_product_of_splitted_binary_tree.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class A {
5151
int maxProd = 0;
5252
int maxProduct(TreeNode? root) {
5353
dfs(root);
54-
int rootProd = checkMax(root);
54+
// int rootProd = checkMax(root);
5555
return (maxProd % (pow(10, 9) + 7)).toInt();
5656
}
5757

MinimumTimeToMakeRopeColorful/minimum_time_to_make_rope_colorful.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,13 @@ class A {
5353
int sum = 0, maxSum = 0;
5454
for (int i = 0; i < colors.length; i++) {
5555
sum += neededTime[i];
56-
int max = neededTime[i], count = 0;
56+
int max = neededTime[i];
57+
// int count = 0;
5758
for (int j = i + 1;
5859
j < colors.length && colors.codeUnitAt(i) == colors.codeUnitAt(j);
5960
j++) {
6061
sum += neededTime[j];
61-
count++;
62+
// count++;
6263
if (neededTime[j] > max) max = neededTime[j];
6364
i = j;
6465
}

NumberOfGoodPaths/number_of_good_paths.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class C {
228228
}
229229

230230
// traverse node values from lowest to highest
231-
MapEntry<int, List<int>> curr = tm.entries.first;
231+
MapEntry<int, List<int>>? curr = tm.entries.first;
232232
while (curr != null) {
233233
List<int> listNodes = curr.value;
234234

TheSkylineProblem/the_skyline_problem.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import 'dart:math';
4848

4949
class A {
5050
List<List<int>> getSkyline(List<List<int>> buildings) {
51-
int n = buildings.length;
51+
// int n = buildings.length;
5252
List<int> keys = [];
5353
for (List<int> building in buildings) {
5454
keys.add(building[0]);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
3+
*/
4+
5+
import 'dart:collection';
6+
7+
class A {
8+
List<int> topKFrequent(List<int> words, int k) {
9+
final HashMap<int, int> hashMap = HashMap<int, int>();
10+
11+
for (final int word in words) {
12+
if (hashMap[word] == null) {
13+
hashMap[word] = 1;
14+
} else {
15+
hashMap[word] = hashMap[word]! + 1;
16+
}
17+
}
18+
19+
final List<MapEntry<int, int>> sortedHashMap =
20+
hashMap.entries.toList(growable: true)
21+
..sort((a, b) {
22+
if (a.value.compareTo(b.value) == 0) {
23+
return a.key.compareTo(b.key);
24+
}
25+
return b.value.compareTo(a.value);
26+
});
27+
28+
return sortedHashMap.sublist(0, k).map((e) => e.key).toList();
29+
}
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
package main
2+
3+
import "container/heap"
4+
5+
type Word struct {
6+
word int
7+
frequency int
8+
}
9+
10+
func newWord(word int, frequency int) *Word {
11+
return &Word{word: word, frequency: frequency}
12+
}
13+
14+
type H struct {
15+
items []*Word
16+
}
17+
18+
func (h *H) Len() int { return len(h.items) }
19+
20+
func (h *H) Less(i, j int) bool {
21+
if h.items[i].frequency != h.items[j].frequency {
22+
return h.items[i].frequency < h.items[j].frequency
23+
}
24+
return h.items[i].word > h.items[j].word
25+
}
26+
27+
func (h *H) Swap(i, j int) { h.items[i], h.items[j] = h.items[j], h.items[i] }
28+
29+
func (h *H) Push(i interface{}) { h.items = append(h.items, i.(*Word)) }
30+
31+
func (h *H) Pop() interface{} {
32+
n := len(h.items)
33+
item := h.items[n-1]
34+
h.items = h.items[:n-1]
35+
return item
36+
}
37+
38+
func topKFrequent(words []int, k int) []int {
39+
counts := map[int]int{}
40+
h := &H{}
41+
for _, v := range words {
42+
counts[v]++
43+
44+
}
45+
for key, v := range counts {
46+
heap.Push(h, newWord(key, v))
47+
if h.Len() > k {
48+
heap.Pop(h)
49+
}
50+
}
51+
result := []int{}
52+
for h.Len() > 0 {
53+
result = append([]int{heap.Pop(h).(*Word).word}, result...)
54+
}
55+
return result
56+
}

TopKFrequentElements/top_k_frequent_elements.md

Whitespace-only changes.

TopKFrequentWords/top_k_frequent_words.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class A {
3939
List<String> topKFrequent(List<String> words, int k) {
4040
final hashMap = <String, int>{};
4141

42-
for (final word in words) {
42+
for (final String word in words) {
4343
if (hashMap[word] == null) {
4444
hashMap[word] = 1;
4545
} else {

TwoSum/twosum.dart

+12-41
Original file line numberDiff line numberDiff line change
@@ -45,34 +45,6 @@ Follow-up: Can you come up with an algorithm that is less than O(n2) time comple
4545
4646
*/
4747

48-
void main() {
49-
final solution = Solution();
50-
51-
List<int> a = <int>[2, 3, 4];
52-
int target = 5;
53-
54-
final s = solution.twoSum(a, target);
55-
// print(s);
56-
57-
// when you print it will show the position of two value
58-
//their sum will be equal to the target value
59-
// print(s);
60-
61-
// SOLUTION - 2
62-
63-
final solutions = AlgorithmicSolution();
64-
final ss = solutions.solution(a, target);
65-
// print(ss);
66-
67-
final b = A();
68-
final ba = b.twoSum(a, target);
69-
// print(ba);
70-
71-
final c = B();
72-
final ca = c.twoSum(a, target);
73-
print(ca);
74-
}
75-
7648
/**
7749
*
7850
* SOLUTION
@@ -153,18 +125,18 @@ class A {
153125
// Working perfect in Terminal
154126
// but runtime error inclusive range error
155127

156-
List<int> twoSum(List<int> nums, int target) {
157-
List<int> result = <int>[];
158-
for (var i = 0; i < nums.length; i++) {
159-
int complement = target - nums[i];
160-
var index = nums.indexOf(complement, i + 1);
161-
if (nums[index] + nums[i] == target) {
162-
return result = [i, index];
163-
}
164-
break;
165-
}
166-
return result;
167-
}
128+
// List<int> twoSum(List<int> nums, int target) {
129+
// List<int> result = <int>[];
130+
// for (int i = 0; i < nums.length; i++) {
131+
// int complement = target - nums[i];
132+
// var index = nums.indexOf(complement, i + 1);
133+
// if (nums[index] + nums[i] == target) {
134+
// return result = [i, index];
135+
// }
136+
// break;
137+
// }
138+
// return result;
139+
// }
168140
}
169141

170142
class B {
@@ -194,7 +166,6 @@ class B {
194166
correspondence[value] = i;
195167

196168
// Remember = correspondence[missing] is Our key , correspondence[value] is Our Value
197-
198169
}
199170
return [];
200171
}

0 commit comments

Comments
 (0)