-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse-remote-info.yaml
224 lines (224 loc) · 5.96 KB
/
course-remote-info.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
hyperskill_project:
id: 46
ide_files: https://stepik.org/media/attachments/lesson/209884/additional_files.json
is_template_based: false
use_ide: true
update_date: "Tue, 16 Jul 2024 18:22:55 UTC"
stages:
- id: 245
step: 5387
is_completed: true
- id: 246
step: 5388
is_completed: true
- id: 247
step: 5389
is_completed: true
- id: 248
step: 5390
is_completed: true
- id: 249
step: 5391
is_completed: true
- id: 250
step: 5392
is_completed: true
topics:
0:
- title: "Write, compile, and run"
theory_id: 3739
- title: "Basic terms: JVM, JRE, JDK"
theory_id: 3499
- title: Operating systems
theory_id: 9704
- title: Command line overview
theory_id: 8977
- title: Parameters and options
theory_id: 9746
- title: Running programs on your computer
theory_id: 3746
- title: Introduction to Java
theory_id: 38627
- title: "Basic literals: numbers, strings and characters"
theory_id: 3522
- title: Writing first program
theory_id: 3521
- title: Printing data
theory_id: 3749
- title: Types and variables
theory_id: 3518
- title: Comments
theory_id: 3520
- title: Reading user's input with Scanner
theory_id: 9055
- title: Coding style conventions
theory_id: 12411
- title: Naming variables
theory_id: 3513
- title: Arithmetic operations
theory_id: 3519
- title: Integer types and operations
theory_id: 3565
- title: Boolean type and operations. True and false
theory_id: 3516
- title: Comparing values. Relational operators
theory_id: 3512
- title: Conditional statement
theory_id: 3503
- title: One-line condition with ternary operator
theory_id: 3506
- title: Increment and decrement
theory_id: 5008
- title: Characters
theory_id: 3514
1:
- title: Computer algorithms
theory_id: 16547
- title: Comparing algorithms with big O
theory_id: 35900
- title: "Big O: how to count it"
theory_id: 35901
- title: "Best, average, and worst cases"
theory_id: 40157
- title: Complexity cases and how to use them
theory_id: 20084
- title: String basics
theory_id: 19445
- title: Pseudocode
theory_id: 15090
- title: "Coding: overview"
theory_id: 27265
- title: While and do-while loops
theory_id: 3498
- title: For-loop
theory_id: 3505
- title: Break and continue. Branching
theory_id: 3507
- title: Data types and their sizes
theory_id: 3532
- title: Type casting
theory_id: 3510
- title: Calling methods
theory_id: 10973
- title: Primitive and reference types
theory_id: 5035
- title: Array
theory_id: 3511
- title: String
theory_id: 3523
- title: Processing strings
theory_id: 3551
- title: IntelliJ IDEA
theory_id: 37202
- title: IntelliJ IDEA basics
theory_id: 5819
- title: JetBrains Academy plugin
theory_id: 5839
- title: Caesar cipher
theory_id: 29585
2:
- title: "Multiple conditions: switch"
theory_id: 3504
- title: Declaring methods
theory_id: 10982
- title: Method "main"
theory_id: 3489
- title: Functional decomposition
theory_id: 10570
- title: Overloading
theory_id: 3525
- title: Arrays as parameters
theory_id: 3594
- title: Errors in programs
theory_id: 3536
- title: First glance at exceptions
theory_id: 3497
- title: Hierarchy of exceptions
theory_id: 3570
- title: What are bugs
theory_id: 5504
- title: Introduction to logging
theory_id: 5538
- title: Debugging techniques
theory_id: 13775
- title: Defining classes
theory_id: 3618
- title: Grouping classes with packages
theory_id: 3621
- title: Instance methods
theory_id: 3495
- title: Initializing new instances. Constructor
theory_id: 3535
- title: Access modifiers
theory_id: 3589
- title: Getters and setters
theory_id: 3599
- title: Inheritance
theory_id: 3583
- title: Multiple constructors
theory_id: 3538
- title: Keyword "super"
theory_id: 3588
- title: Objects and their properties
theory_id: 4727
3:
- title: Exception handling
theory_id: 3552
- title: Command-line arguments
theory_id: 3566
- title: Debugging overview
theory_id: 14368
- title: Run and debug with IntelliJ IDEA
theory_id: 37206
- title: IntelliJ IDEA run configurations
theory_id: 10630
4:
- title: Constants. Final variables
theory_id: 7427
- title: File class
theory_id: 3635
- title: Reading files
theory_id: 3636
- title: Formatted output
theory_id: 7046
- title: Writing files
theory_id: 3652
- title: Protected modifier
theory_id: 6692
- title: Referencing subclass objects
theory_id: 3585
- title: Static members
theory_id: 3534
- title: Adding annotations
theory_id: 3622
- title: Method overriding
theory_id: 3572
- title: Polymorphism
theory_id: 3587
5:
- title: What is object-oriented programming
theory_id: 3614
- title: Concept of design patterns
theory_id: 3611
- title: Introduction to software architecture
theory_id: 15368
- title: Class Diagrams
theory_id: 15588
- title: Encapsulating object creation
theory_id: 3577
- title: Strategy
theory_id: 3556
- title: Template method
theory_id: 5155
- title: Introduction to creational patterns
theory_id: 16251
- title: Factory Method and Prototype
theory_id: 16430
- title: Factory method
theory_id: 5761
- title: Declaring functionality with interfaces
theory_id: 3615
- title: Abstract class
theory_id: 3597
- title: Abstract class vs interface
theory_id: 3563