mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-06 17:44:10 +08:00
Add solution 1576
This commit is contained in:
@ -1,17 +1,17 @@
|
||||
package leetcode
|
||||
|
||||
func lastRemaining(n int) int {
|
||||
start, dir, cnt, step := 1, true, n, 1
|
||||
for cnt > 1 {
|
||||
start, dir, step := 1, true, 1
|
||||
for n > 1 {
|
||||
if dir { // 正向
|
||||
start += step
|
||||
} else { // 反向
|
||||
if cnt%2 == 1 {
|
||||
if n%2 == 1 {
|
||||
start += step
|
||||
}
|
||||
}
|
||||
dir = !dir
|
||||
cnt >>= 1
|
||||
n >>= 1
|
||||
step <<= 1
|
||||
}
|
||||
return start
|
||||
|
@ -0,0 +1,16 @@
|
||||
package leetcode
|
||||
|
||||
func modifyString(s string) string {
|
||||
res := []byte(s)
|
||||
for i, ch := range res {
|
||||
if ch == '?' {
|
||||
for b := byte('a'); b <= 'z'; b++ {
|
||||
if !(i > 0 && res[i-1] == b || i < len(res)-1 && res[i+1] == b) {
|
||||
res[i] = b
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return string(res)
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
package leetcode
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
)
|
||||
|
||||
type question1576 struct {
|
||||
para1576
|
||||
ans1576
|
||||
}
|
||||
|
||||
// para 是参数
|
||||
// one 代表第一个参数
|
||||
type para1576 struct {
|
||||
s string
|
||||
}
|
||||
|
||||
// ans 是答案
|
||||
// one 代表第一个答案
|
||||
type ans1576 struct {
|
||||
one string
|
||||
}
|
||||
|
||||
func Test_Problem1576(t *testing.T) {
|
||||
|
||||
qs := []question1576{
|
||||
|
||||
{
|
||||
para1576{"?zs"},
|
||||
ans1576{"azs"},
|
||||
},
|
||||
|
||||
{
|
||||
para1576{"ubv?w"},
|
||||
ans1576{"ubvaw"},
|
||||
},
|
||||
}
|
||||
|
||||
fmt.Printf("------------------------Leetcode Problem 1576------------------------\n")
|
||||
|
||||
for _, q := range qs {
|
||||
_, p := q.ans1576, q.para1576
|
||||
fmt.Printf("【input】:%v 【output】:%v \n", p, modifyString(p.s))
|
||||
}
|
||||
fmt.Printf("\n\n\n")
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
# [1576. Replace All ?'s to Avoid Consecutive Repeating Characters](https://leetcode.com/problems/replace-all-s-to-avoid-consecutive-repeating-characters/)
|
||||
|
||||
## 题目
|
||||
|
||||
Given a string `s` containing only lowercase English letters and the `'?'` character, convert **all** the `'?'` characters into lowercase letters such that the final string does not contain any **consecutive repeating** characters. You **cannot** modify the non `'?'` characters.
|
||||
|
||||
It is **guaranteed** that there are no consecutive repeating characters in the given string **except** for `'?'`.
|
||||
|
||||
Return *the final string after all the conversions (possibly zero) have been made*. If there is more than one solution, return **any of them**. It can be shown that an answer is always possible with the given constraints.
|
||||
|
||||
**Example 1:**
|
||||
|
||||
```
|
||||
Input: s = "?zs"
|
||||
Output: "azs"
|
||||
Explanation: There are 25 solutions for this problem. From "azs" to "yzs", all are valid. Only "z" is an invalid modification as the string will consist of consecutive repeating characters in "zzs".
|
||||
|
||||
```
|
||||
|
||||
**Example 2:**
|
||||
|
||||
```
|
||||
Input: s = "ubv?w"
|
||||
Output: "ubvaw"
|
||||
Explanation: There are 24 solutions for this problem. Only "v" and "w" are invalid modifications as the strings will consist of consecutive repeating characters in "ubvvw" and "ubvww".
|
||||
|
||||
```
|
||||
|
||||
**Constraints:**
|
||||
|
||||
- `1 <= s.length <= 100`
|
||||
- `s` consist of lowercase English letters and `'?'`.
|
||||
|
||||
## 题目大意
|
||||
|
||||
给你一个仅包含小写英文字母和 '?' 字符的字符串 s,请你将所有的 '?' 转换为若干小写字母,使最终的字符串不包含任何 连续重复 的字符。注意:你 不能 修改非 '?' 字符。
|
||||
|
||||
题目测试用例保证 除 '?' 字符 之外,不存在连续重复的字符。在完成所有转换(可能无需转换)后返回最终的字符串。如果有多个解决方案,请返回其中任何一个。可以证明,在给定的约束条件下,答案总是存在的。
|
||||
|
||||
## 解题思路
|
||||
|
||||
- 简单题。找到源字符串中 ‘?’ 字符的位置,然后依次用 a ~ z 字符去替换,替换进去的字符不能和前后字符相同即可。
|
||||
|
||||
## 代码
|
||||
|
||||
```go
|
||||
package leetcode
|
||||
|
||||
func modifyString(s string) string {
|
||||
res := []byte(s)
|
||||
for i, ch := range res {
|
||||
if ch == '?' {
|
||||
for b := byte('a'); b <= 'z'; b++ {
|
||||
if !(i > 0 && res[i-1] == b || i < len(res)-1 && res[i+1] == b) {
|
||||
res[i] = b
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return string(res)
|
||||
}
|
||||
```
|
Reference in New Issue
Block a user