Skip to content

Commit b2d1a63

Browse files
committed
update
1 parent b375830 commit b2d1a63

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

[Q]basic/basic.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
- because when array is full, resizing takes O(n) time
4343

4444
## python
45-
# list
45+
- list
4646
```python
4747
# list
4848

@@ -339,7 +339,7 @@ sl = SortedList([10, 11, 12, 13, 14])
339339
sl.bisect_left(12) # 2
340340
```
341341

342-
# dict
342+
- dict
343343
```python
344344
# dict
345345

@@ -498,7 +498,7 @@ idx = sd.bisect_left(25)
498498
print(idx) # 3
499499
```
500500

501-
# set
501+
- set
502502
```python
503503
# set
504504

@@ -573,7 +573,7 @@ s3 = s1.symmetric_difference(s2)
573573
print(s3) # {1, 2, 4, 5}
574574
```
575575

576-
# tuple
576+
- tuple
577577
```python
578578
# tuple
579579

@@ -594,7 +594,7 @@ t = tuple(["a", "b", "c"]) # ('a', 'b', 'c')
594594
t = ("abc",) # ('abc',)
595595
```
596596

597-
# heap
597+
- heap
598598
```python
599599
# heap
600600

@@ -629,7 +629,7 @@ heapify(list2)
629629
print(list2) # [-9, -7, -5, -1, -3]
630630
```
631631

632-
# queue
632+
- queue
633633
```python
634634
# queue
635635
# in Python, list can be used as stack
@@ -674,7 +674,7 @@ queue2.popleft() # c
674674
# extend() is O(k), add multiple values
675675
```
676676

677-
# number
677+
- number
678678
```python
679679
# number
680680

@@ -962,7 +962,7 @@ print(sqrt(5)) # 2.23606797749979
962962
print(int(sqrt(5))) # 2
963963
```
964964

965-
# string
965+
- string
966966
```python
967967
# string
968968

@@ -1083,7 +1083,7 @@ s = '0'
10831083
s = '1' + s + '1' # '101'
10841084
```
10851085

1086-
# class
1086+
- class
10871087
```python
10881088
# class
10891089

@@ -1187,7 +1187,7 @@ outer()
11871187

11881188
## java
11891189

1190-
# Array
1190+
- Array
11911191
```Java
11921192
package ArraySyntax;
11931193

@@ -1373,7 +1373,7 @@ public class Main {
13731373

13741374
```
13751375

1376-
# ArrayList
1376+
- ArrayList
13771377
```Java
13781378
package ArrayListSyntax;
13791379

@@ -1559,7 +1559,7 @@ public class Main {
15591559

15601560
```
15611561

1562-
# HashMap
1562+
- HashMap
15631563
```Java
15641564
package HashMapSyntax;
15651565

@@ -1724,7 +1724,7 @@ public class Main {
17241724

17251725
```
17261726

1727-
# HashSet
1727+
- HashSet
17281728
```Java
17291729
package HashSetSyntax;
17301730

@@ -1805,7 +1805,7 @@ public class Main {
18051805

18061806
```
18071807

1808-
# PriorityQueue
1808+
- PriorityQueue
18091809
```Java
18101810
package PriorityQueueSyntax;
18111811

@@ -1876,7 +1876,7 @@ record FreqWord(String content, Integer freq) { }
18761876

18771877
```
18781878

1879-
# ArrayDeque
1879+
- ArrayDeque
18801880
```Java
18811881
package ArrayDequeSyntax;
18821882

@@ -1975,7 +1975,7 @@ record Pair(TreeNode node, int level) { };
19751975

19761976
```
19771977

1978-
# String
1978+
- String
19791979
```Java
19801980
package StringSyntax;
19811981

@@ -2187,7 +2187,7 @@ public class Main {
21872187

21882188
```
21892189

2190-
# TreeMap
2190+
- TreeMap
21912191
```Java
21922192
package TreeMapSyntax;
21932193

@@ -2327,7 +2327,7 @@ public class Main {
23272327

23282328
```
23292329

2330-
# Number
2330+
- Number
23312331
```Java
23322332
package NumberSyntax;
23332333

0 commit comments

Comments
 (0)