Skip to content

Commit a268f4f

Browse files
add 1271
1 parent e29b7ff commit a268f4f

File tree

7 files changed

+80
-5
lines changed

7 files changed

+80
-5
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -572,4 +572,5 @@ LeetCode
572572
|1266|[Minimum Time Visiting All Points](https://leetcode.com/problems/minimum-time-visiting-all-points/)|c|[c++](./src/1266-Minimum-Time-Visiting-All-Points/1266.cpp)|[python](./src/1266-Minimum-Time-Visiting-All-Points/1266.py)|[go](./src/1266-Minimum-Time-Visiting-All-Points/1266.go)|[js](./src/1266-Minimum-Time-Visiting-All-Points/1266.js)|[java](./src/1266-Minimum-Time-Visiting-All-Points/1266.java)|Easy|
573573
|1267|[Count Servers that Communicate](https://leetcode.com/problems/count-servers-that-communicate/)|c|[c++](./src/1267-Count-Servers-that-Communicate/1267.cpp)|[python](./src/1267-Count-Servers-that-Communicate/1267.py)|[go](./src/1267-Count-Servers-that-Communicate/1267.go)|[js](./src/1267-Count-Servers-that-Communicate/1267.js)|[java](./src/1267-Count-Servers-that-Communicate/1267.java)|Medium|
574574
|1268|[Search Suggestions System](https://leetcode.com/problems/search-suggestions-system/)|c|[c++](./src/1268-Search-Suggestions-System/1268.cpp)|[python](./src/1268-Search-Suggestions-System/1268.py)|[go](./src/1268-Search-Suggestions-System/1268.go)|[js](./src/1268-Search-Suggestions-System/1268.js)|[java](./src/1268-Search-Suggestions-System/1268.java)|Medium|
575-
|1269|[Number of Ways to Stay in the Same Place After Some Steps](https://leetcode.com/problems/number-of-ways-to-stay-in-the-same-place-after-some-steps/)|c|[c++](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.cpp)|[python](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.py)|[go](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.go)|[js](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.js)|[java](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.java)|Hard|
575+
|1269|[Number of Ways to Stay in the Same Place After Some Steps](https://leetcode.com/problems/number-of-ways-to-stay-in-the-same-place-after-some-steps/)|c|[c++](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.cpp)|[python](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.py)|[go](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.go)|[js](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.js)|[java](./src/1269-Number-of-Ways-to-Stay-in-the-Same-Place-After-Some-Steps/1269.java)|Hard|
576+
|1271|[Hexspeak](https://leetcode.com/contest/biweekly-contest-14/problems/hexspeak/)|c|[c++](./src/1271-Hexspeak/1271.cpp)|[python](./src/1271-Hexspeak/1271.py)|[go](./src/1271-Hexspeak/1271.go)|[js](./src/1271-Hexspeak/1271.js)|[java](./src/1271-Hexspeak/1271.java)|Easy|

src/1271-Hexspeak/1271.cpp

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class Solution
2+
{
3+
public:
4+
string toHexspeak(string num)
5+
{
6+
stringstream dataToHex;
7+
string res;
8+
dataToHex << uppercase << hex << stol(num);
9+
10+
char i;
11+
while (dataToHex >> i)
12+
{
13+
if (i > '1' && i <= '9') return "ERROR";
14+
if (i == '0') res += 'O';
15+
else if (i == '1') res += 'I';
16+
else res += i;
17+
}
18+
return res;
19+
}
20+
};

src/1271-Hexspeak/1271.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
func toHexspeak(num string) string {
2+
data, _ := strconv.ParseInt(num, 10, 64)
3+
dataToHex := fmt.Sprintf("%x",data)
4+
res := make([]rune, 0)
5+
for _, i := range dataToHex {
6+
if i > '1' && i <= '9' {
7+
return "ERROR"
8+
}
9+
if i == '0' {
10+
res = append(res, 'O')
11+
} else if i == '1' {
12+
res = append(res, 'I')
13+
} else {
14+
res = append(res, unicode.ToUpper(rune(i)))
15+
}
16+
}
17+
return string(res)
18+
}

src/1271-Hexspeak/1271.java

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution {
2+
public String toHexspeak(String num) {
3+
StringBuilder res = new StringBuilder();
4+
char[] data = Long.toHexString(Long.parseLong(num)).toUpperCase().toCharArray();
5+
for (char i : data) {
6+
if (i > '1' && i <= '9') return "ERROR";
7+
if (i == '0') res.append('O');
8+
else if (i == '1') res.append('I');
9+
else res.append(i);
10+
}
11+
return res.toString();
12+
}
13+
}

src/1271-Hexspeak/1271.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var toHexspeak = function(num) {
2+
let data = Number(num).toString(16).toUpperCase(), res = "";
3+
for (let i of data) {
4+
if (i > '1' && i <= '9') return "ERROR";
5+
if (i == '0') res += 'O';
6+
else if (i == '1') res += 'I';
7+
else res += i;
8+
}
9+
return res;
10+
};

src/1271-Hexspeak/1271.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution:
2+
def toHexspeak(self, num: str) -> str:
3+
data, res = hex(int(num)).upper()[2:], ""
4+
for i in range(len(data)):
5+
if data[i] > '1' or data[i] <= '9':
6+
return "ERROR"
7+
if data[i] == '0':
8+
res += 'O'
9+
elif data[i] == '1':
10+
res += 'I'
11+
else:
12+
res += data[i]
13+
return res

src/addProb.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
import os, bisect
33

44
# 题目名称
5-
name = "Number of Ways to Stay in the Same Place After Some Steps"
6-
ID = 1269
7-
url = "https://leetcode.com/problems/number-of-ways-to-stay-in-the-same-place-after-some-steps/"
8-
difficult = "Hard"
5+
name = "Hexspeak"
6+
ID = 1271
7+
url = "https://leetcode.com/contest/biweekly-contest-14/problems/hexspeak/"
8+
difficult = "Easy"
99
prog = ['c', 'cpp', 'py', 'go', 'js', 'java']
1010

1111

0 commit comments

Comments
 (0)