Skip to content

Commit b227c26

Browse files
committed
daily
1 parent e62d945 commit b227c26

File tree

3 files changed

+58
-0
lines changed

3 files changed

+58
-0
lines changed

.tours/example_tour.tour

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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+
}

my-submissions/m1780 oneliner.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
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))

my-submissions/m1780.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)