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
Remove unused task files and enhance theme handling
Deleted obsolete example tasks and replaced them with more structured, practical coding tasks. Improved theme configuration by adding support for the 'Dark' theme and ensuring better compatibility with UI updates. Some deprecated code sections were commented for future refactoring.
- description: "Description should be specified here"
3
-
id: main
4
-
name: "Name Example"
2
+
- description: "Create pow method for java language"
3
+
id: powJava
4
+
name: "Pow Java"
5
+
focusFileId: "powJava"
6
+
files:
7
+
- filename: pow
8
+
sourceSet: "SRC"
9
+
templateFile: "pow"
10
+
extension: JAVA
11
+
id: "powJava"
12
+
- description: "Create pow function for kotlin language"
13
+
id: powKotlin
14
+
name: "Pow Kotlin"
15
+
focusFileId: "powKotlin"
16
+
files:
17
+
- filename: pow
18
+
sourceSet: "SRC"
19
+
templateFile: "pow"
20
+
extension: KOTLIN
21
+
id: "powKotlin"
22
+
- description: "Implement binary algorithm"
23
+
id: binary
24
+
name: "Binary algorithm"
25
+
focusFileId: "binary"
26
+
files:
27
+
- filename: binary
28
+
sourceSet: "SRC"
29
+
templateFile: "binary"
30
+
extension: JAVASCRIPT
31
+
id: "binary"
32
+
- description: "implement function `get_even_numbers_set` that generates and returns a set containing all even numbers between 0 and 100, inclusive."
33
+
id: set
34
+
name: "Even Set"
35
+
focusFileId: "collections"
36
+
files:
37
+
- filename: collections
38
+
sourceSet: "SRC"
39
+
templateFile: "collections"
40
+
extension: PYTHON
41
+
id: "collections"
42
+
- description: "implement function `get_even_numbers_list` that generates and returns a list containing all even numbers between 0 and 100, inclusive."
0 commit comments