We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e965cf6 + c6e5bdd commit a0eac9dCopy full SHA for a0eac9d
examples/KoreanExample/koreanExample.go
@@ -13,7 +13,7 @@ import (
13
// 이 예제는 백준 코딩 테스트의 쉬운 문제입니다.
14
15
func main() {
16
- url := fmt.Sprintf("https://www.acmicpc.net/problem/1000")
+ url := "https://www.acmicpc.net/problem/1000"
17
// url의 마지막 숫자에 1000이외에 다른 숫자를 추가시키면,
18
// 다른 문제가 등장합니다.
19
examples/errors/errors.go
@@ -15,7 +15,7 @@ func main() {
// Handle as required!
}
- url := fmt.Sprintf("https://xkcd.com/50")
+ url := "https://xkcd.com/50"
xkcd, err := soup.Get(url)
20
if err != nil {
21
// Handle it
0 commit comments