Skip to content

Commit 84f93a4

Browse files
committed
review two pointer
1 parent 864f0ee commit 84f93a4

File tree

7 files changed

+2380
-132
lines changed

7 files changed

+2380
-132
lines changed

ProblemSolving.playground/Contents.swift

+50-52
Original file line numberDiff line numberDiff line change
@@ -231,66 +231,64 @@ while reveseNode != nil {
231231
}
232232
removeDuplicates(llist: SinglyLinkedListNode(0,SinglyLinkedListNode(1,SinglyLinkedListNode(2, SinglyLinkedListNode(3)))
233233
))
234-
//reversePrint(
235-
// llist: SinglyLinkedListNode(0,SinglyLinkedListNode(1,SinglyLinkedListNode(2, SinglyLinkedListNode(3))))
236-
//)
237-
238-
239-
class Bird {
240-
func fly() {
241-
print("Flying")
234+
//let head = ListNode(1)
235+
//head.next = ListNode(2)
236+
//head.next?.next = ListNode(3)
237+
//
238+
//anotherSolution.splitListToParts(head, 5)
239+
////[3,5,2,6], k = 2
240+
//anotherSolution.mostCompetitive([3,5,2,6], 2)
241+
//anotherSolution.mostCompetitive([71,18,52,29,55,73,24,42,66,8,80,2], 3)
242+
//Input: nums = [1, 3, -1, -3, 5, 3, 6, 7], k = 3
243+
244+
anotherSolution.maxSlidingWindow([1, 3, -1, -3, 5, 3, 6, 7], 3)
245+
246+
let test = Test()
247+
var arr = [5,4,7,5,3,2]
248+
//[1,3,2]
249+
//[3,2,1]
250+
test.permuteUnique([1,1,2])
251+
//test.letterCasePermutation("a1b2")
252+
print(arr)
253+
func binaryGen(_ b: inout [Int], n: Int) {
254+
var i = n - 1 // Chỉ số bắt đầu từ 0 trong Swift, nên giảm 1
255+
while i >= 0 && b[i] == 1 {
256+
b[i] = 0
257+
i -= 1
242258
}
243-
}
244-
245-
class Sparrow: Bird {
246-
override func fly() {
247-
print("Sparrow flying")
259+
if i < 0 {
260+
return
261+
} else {
262+
b[i] = 1
248263
}
249264
}
265+
//var b = [0, 0, 0, 0] // Chuỗi nhị phân ban đầu
266+
//
267+
//binaryGen(&b, n: b.count)
268+
//print(b)
250269

251-
class Penguin: Bird {
252-
override func fly() {
253-
fatalError("Penguins can't fly")
254-
}
255-
}
256-
257-
func letBirdFly(_ bird: Bird) {
258-
bird.fly()
259-
}
260-
261-
262-
//Example: [1,1,4,4,5,5,7,8,8];
263-
//Output: 7
264-
/*
265-
1: Given a sorted array consisting of only integers where each element appears two except for one element which appears once, design an algorithm to find and return the element that appears only once. Your solution must achieve O(log n) time complexity and O(1) space complexity.
266-
267-
Example: [1,1,4,4,5,5,7,8,8];
268-
Output: 7
269-
*/
270270

271-
/*
272-
2, I have a continuous stream of data pouring in from the device. Define an architecture to upload data to the server, ensuring three factors:
273-
Data is uploaded securely and completely.
274-
Data is uploaded in the correct order.
275-
Control over fixed resources of the device is maintained.
276-
- first check permission
277-
- size file want to upload
278-
- encrypt the file send to server
279-
- for each we have unique id or index to acesss
280-
Retry pattern
281-
Sequence numbering
282-
Batch Upload
283271

284-
*/
272+
//var num = [0,1,0,3,12]
273+
//anotherSolution.moveZeroes(&num)
274+
//print(num)
285275

276+
let head = ListNode(1)
277+
head.next = ListNode(2)
278+
head.next?.next = ListNode(2)
279+
head.next?.next?.next = ListNode(1)
286280

281+
//test.isPalindrome(head)
282+
test.isPalindrome("madam")
287283

288-
anotherSolution.strStr1("aaa", "aaaa")
289-
anotherSolution.strStr1("a", "a")
284+
test.isPalindrome("A man, a plan, a canal: Panama")
285+
let arr1 = [1, 3, 5, 7]
286+
let arr2 = [2, 4, 6, 8]
290287

291-
var arr = [1,2,3]
288+
test.mergeSortedArrays(arr1, arr2)
289+
//[1,2,2,1], nums2 = [2,2]
290+
test.intersection([1,2,2,1], [2,2])
291+
//[4,9,5], nums2 = [9,4,9,8,4]
292+
test.intersection([4,9,5], [9,4,9,8,4])
292293

293-
//for value in 0...arr.count {
294-
// print("value \(arr[value])")
295-
//}
296-
//anotherSolution.reverseWords("the sky is blue")
294+
test.intersection2([4,9,5], [9,4,9,8,4])

0 commit comments

Comments
 (0)