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
vari= 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
242
258
}
243
-
}
244
-
245
-
classSparrow:Bird{
246
-
overridefunc fly(){
247
-
print("Sparrow flying")
259
+
if i <0{
260
+
return
261
+
}else{
262
+
b[i]=1
248
263
}
249
264
}
265
+
//var b = [0, 0, 0, 0] // Chuỗi nhị phân ban đầu
266
+
//
267
+
//binaryGen(&b, n: b.count)
268
+
//print(b)
250
269
251
-
classPenguin:Bird{
252
-
overridefunc 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
-
*/
270
270
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
283
271
284
-
*/
272
+
//var num = [0,1,0,3,12]
273
+
//anotherSolution.moveZeroes(&num)
274
+
//print(num)
285
275
276
+
lethead=ListNode(1)
277
+
head.next =ListNode(2)
278
+
head.next?.next =ListNode(2)
279
+
head.next?.next?.next =ListNode(1)
286
280
281
+
//test.isPalindrome(head)
282
+
test.isPalindrome("madam")
287
283
288
-
anotherSolution.strStr1("aaa","aaaa")
289
-
anotherSolution.strStr1("a","a")
284
+
test.isPalindrome("A man, a plan, a canal: Panama")
0 commit comments