File tree 3 files changed +58
-0
lines changed
3 files changed +58
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema": "https://aka.ms/codetour-schema",
3
+ "title": "example_tour",
4
+ "steps": [
5
+ {
6
+ "file": "markdowns/Daily_Questions.md",
7
+ "description": "List of daily questions in a generated markdown file",
8
+ "line": 1
9
+ },
10
+ {
11
+ "file": "markdowns/Daily_Questions.md",
12
+ "description": "A hard question",
13
+ "line": 45
14
+ },
15
+ {
16
+ "file": "markdowns/_2493. Divide Nodes Into the Maximum Number of Groups.md",
17
+ "description": "The solution for the previous question",
18
+ "line": 98
19
+ },
20
+ {
21
+ "file": "my-submissions/h2493.py",
22
+ "description": "The actual solution file\n",
23
+ "line": 1
24
+ },
25
+ {
26
+ "file": "my-submissions/h2493.py",
27
+ "description": "Helper method called \"furthest_vertex\"",
28
+ "line": 3
29
+ },
30
+ {
31
+ "file": "my-submissions/h2493.py",
32
+ "description": "Helper method called \"odd_cycle_len\"",
33
+ "line": 25
34
+ },
35
+ {
36
+ "file": "my-submissions/h2493.py",
37
+ "description": "Main solving method for the problem called \"magnificentSets\"",
38
+ "line": 37
39
+ }
40
+ ],
41
+ "ref": "main"
42
+ }
Original file line number Diff line number Diff line change
1
+ class Solution :
2
+ def checkPowersOfThree (self , n : int ) -> bool :
3
+ return all ((n % 3 ** (x + 1 )) // (3 ** x ) != 2 for x in range (int (n ** (1 / 3 )), - 1 , - 1 ))
Original file line number Diff line number Diff line change
1
+ class Solution :
2
+ def checkPowersOfThree (self , n : int ) -> bool :
3
+ x = 1
4
+ while x * 3 <= n :
5
+ x *= 3
6
+
7
+ while n :
8
+ if n - 2 * x >= 0 :
9
+ return False
10
+ n %= x
11
+ x //= 3
12
+
13
+ return True
You can’t perform that action at this time.
0 commit comments