Skip to content

Commit fb258cf

Browse files
authored
feat: add solutions to lc problem: No.3498 (#4309)
No.3498.Reverse Degree of a String
1 parent 739d9d0 commit fb258cf

File tree

7 files changed

+153
-8
lines changed

7 files changed

+153
-8
lines changed

solution/3400-3499/3498.Reverse Degree of a String/README.md

+54-4
Original file line numberDiff line numberDiff line change
@@ -130,32 +130,82 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3498.Re
130130

131131
<!-- solution:start -->
132132

133-
### 方法一
133+
### 方法一:模拟
134+
135+
我们可以模拟字符串中每个字符的反转度。对于每个字符,我们计算它在反转字母表中的位置,然后乘以它在字符串中的位置,最后将所有结果相加即可。
136+
137+
时间复杂度 $O(n)$,其中 $n$ 是字符串的长度。空间复杂度 $O(1)$。
134138

135139
<!-- tabs:start -->
136140

137141
#### Python3
138142

139143
```python
140-
144+
class Solution:
145+
def reverseDegree(self, s: str) -> int:
146+
ans = 0
147+
for i, c in enumerate(s, 1):
148+
x = 26 - (ord(c) - ord("a"))
149+
ans += i * x
150+
return ans
141151
```
142152

143153
#### Java
144154

145155
```java
146-
156+
class Solution {
157+
public int reverseDegree(String s) {
158+
int n = s.length();
159+
int ans = 0;
160+
for (int i = 1; i <= n; ++i) {
161+
int x = 26 - (s.charAt(i - 1) - 'a');
162+
ans += i * x;
163+
}
164+
return ans;
165+
}
166+
}
147167
```
148168

149169
#### C++
150170

151171
```cpp
152-
172+
class Solution {
173+
public:
174+
int reverseDegree(string s) {
175+
int n = s.length();
176+
int ans = 0;
177+
for (int i = 1; i <= n; ++i) {
178+
int x = 26 - (s[i - 1] - 'a');
179+
ans += i * x;
180+
}
181+
return ans;
182+
}
183+
};
153184
```
154185
155186
#### Go
156187
157188
```go
189+
func reverseDegree(s string) (ans int) {
190+
for i, c := range s {
191+
x := 26 - int(c-'a')
192+
ans += (i + 1) * x
193+
}
194+
return
195+
}
196+
```
158197

198+
#### TypeScript
199+
200+
```ts
201+
function reverseDegree(s: string): number {
202+
let ans = 0;
203+
for (let i = 1; i <= s.length; ++i) {
204+
const x = 26 - (s.charCodeAt(i - 1) - 'a'.charCodeAt(0));
205+
ans += i * x;
206+
}
207+
return ans;
208+
}
159209
```
160210

161211
<!-- tabs:end -->

solution/3400-3499/3498.Reverse Degree of a String/README_EN.md

+54-4
Original file line numberDiff line numberDiff line change
@@ -128,32 +128,82 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3498.Re
128128

129129
<!-- solution:start -->
130130

131-
### Solution 1
131+
### Solution 1: Simulation
132+
133+
We can simulate the reverse degree of each character in the string. For each character, calculate its position in the reverse alphabet, multiply it by its position in the string, and then sum up all the results.
134+
135+
Time complexity is $O(n)$, where $n$ is the length of the string. Space complexity is $O(1)$.
132136

133137
<!-- tabs:start -->
134138

135139
#### Python3
136140

137141
```python
138-
142+
class Solution:
143+
def reverseDegree(self, s: str) -> int:
144+
ans = 0
145+
for i, c in enumerate(s, 1):
146+
x = 26 - (ord(c) - ord("a"))
147+
ans += i * x
148+
return ans
139149
```
140150

141151
#### Java
142152

143153
```java
144-
154+
class Solution {
155+
public int reverseDegree(String s) {
156+
int n = s.length();
157+
int ans = 0;
158+
for (int i = 1; i <= n; ++i) {
159+
int x = 26 - (s.charAt(i - 1) - 'a');
160+
ans += i * x;
161+
}
162+
return ans;
163+
}
164+
}
145165
```
146166

147167
#### C++
148168

149169
```cpp
150-
170+
class Solution {
171+
public:
172+
int reverseDegree(string s) {
173+
int n = s.length();
174+
int ans = 0;
175+
for (int i = 1; i <= n; ++i) {
176+
int x = 26 - (s[i - 1] - 'a');
177+
ans += i * x;
178+
}
179+
return ans;
180+
}
181+
};
151182
```
152183
153184
#### Go
154185
155186
```go
187+
func reverseDegree(s string) (ans int) {
188+
for i, c := range s {
189+
x := 26 - int(c-'a')
190+
ans += (i + 1) * x
191+
}
192+
return
193+
}
194+
```
156195

196+
#### TypeScript
197+
198+
```ts
199+
function reverseDegree(s: string): number {
200+
let ans = 0;
201+
for (let i = 1; i <= s.length; ++i) {
202+
const x = 26 - (s.charCodeAt(i - 1) - 'a'.charCodeAt(0));
203+
ans += i * x;
204+
}
205+
return ans;
206+
}
157207
```
158208

159209
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Solution {
2+
public:
3+
int reverseDegree(string s) {
4+
int n = s.length();
5+
int ans = 0;
6+
for (int i = 1; i <= n; ++i) {
7+
int x = 26 - (s[i - 1] - 'a');
8+
ans += i * x;
9+
}
10+
return ans;
11+
}
12+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
func reverseDegree(s string) (ans int) {
2+
for i, c := range s {
3+
x := 26 - int(c-'a')
4+
ans += (i + 1) * x
5+
}
6+
return
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class Solution {
2+
public int reverseDegree(String s) {
3+
int n = s.length();
4+
int ans = 0;
5+
for (int i = 1; i <= n; ++i) {
6+
int x = 26 - (s.charAt(i - 1) - 'a');
7+
ans += i * x;
8+
}
9+
return ans;
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
class Solution:
2+
def reverseDegree(self, s: str) -> int:
3+
ans = 0
4+
for i, c in enumerate(s, 1):
5+
x = 26 - (ord(c) - ord("a"))
6+
ans += i * x
7+
return ans
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function reverseDegree(s: string): number {
2+
let ans = 0;
3+
for (let i = 1; i <= s.length; ++i) {
4+
const x = 26 - (s.charCodeAt(i - 1) - 'a'.charCodeAt(0));
5+
ans += i * x;
6+
}
7+
return ans;
8+
}

0 commit comments

Comments
 (0)