Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ brews:
name: homebrew-taps
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
directory: Formula
homepage: https://github.com/conallob/coding-interview-pop-quiz
homepage: https://github.com/conallob/coding-interview-pattern-drill
description: "Pattern recognition trainer for coding interviews — CLI and browser UI"
license: MIT
test: |
Expand Down
2 changes: 1 addition & 1 deletion cache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"time"

"github.com/conallob/coding-interview-pop-quiz/leetcode"
"github.com/conallob/coding-interview-pattern-drill/leetcode"
)

const ttl = 24 * time.Hour
Expand Down
4 changes: 2 additions & 2 deletions cache/cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cache_test
import (
"testing"

"github.com/conallob/coding-interview-pop-quiz/cache"
"github.com/conallob/coding-interview-pop-quiz/leetcode"
"github.com/conallob/coding-interview-pattern-drill/cache"
"github.com/conallob/coding-interview-pattern-drill/leetcode"
)

func setTempCache(t *testing.T) {
Expand Down
10 changes: 5 additions & 5 deletions cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import (
"os"
"strings"

"github.com/conallob/coding-interview-pop-quiz/cache"
"github.com/conallob/coding-interview-pop-quiz/config"
"github.com/conallob/coding-interview-pop-quiz/leetcode"
"github.com/conallob/coding-interview-pop-quiz/patterns"
"github.com/conallob/coding-interview-pop-quiz/quiz"
"github.com/conallob/coding-interview-pattern-drill/cache"
"github.com/conallob/coding-interview-pattern-drill/config"
"github.com/conallob/coding-interview-pattern-drill/leetcode"
"github.com/conallob/coding-interview-pattern-drill/patterns"
"github.com/conallob/coding-interview-pattern-drill/quiz"
)

// ANSI colour constants
Expand Down
4 changes: 2 additions & 2 deletions cmd/coding-interview-pattern-drill/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"os"

"github.com/conallob/coding-interview-pop-quiz/cli"
"github.com/conallob/coding-interview-pop-quiz/server"
"github.com/conallob/coding-interview-pattern-drill/cli"
"github.com/conallob/coding-interview-pattern-drill/server"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package config_test
import (
"testing"

"github.com/conallob/coding-interview-pop-quiz/config"
"github.com/conallob/coding-interview-pattern-drill/config"
)

func TestFromEnvNilWhenBothEmpty(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/conallob/coding-interview-pop-quiz
module github.com/conallob/coding-interview-pattern-drill

go 1.25.0
2 changes: 1 addition & 1 deletion leetcode/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"regexp"
"strings"

"github.com/conallob/coding-interview-pop-quiz/config"
"github.com/conallob/coding-interview-pattern-drill/config"
)

// Tag represents a topic tag on a LeetCode problem.
Expand Down
2 changes: 1 addition & 1 deletion leetcode/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"
"testing"

"github.com/conallob/coding-interview-pop-quiz/leetcode"
"github.com/conallob/coding-interview-pattern-drill/leetcode"
)

func TestHTMLToTextEmpty(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion patterns/patterns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package patterns_test
import (
"testing"

"github.com/conallob/coding-interview-pop-quiz/patterns"
"github.com/conallob/coding-interview-pattern-drill/patterns"
)

func TestAllCount(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions quiz/quiz.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"math/rand"
"strings"

"github.com/conallob/coding-interview-pop-quiz/leetcode"
"github.com/conallob/coding-interview-pop-quiz/patterns"
"github.com/conallob/coding-interview-pattern-drill/leetcode"
"github.com/conallob/coding-interview-pattern-drill/patterns"
)

// Option represents one answer choice in a quiz question.
Expand Down
6 changes: 3 additions & 3 deletions quiz/quiz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"testing"

"github.com/conallob/coding-interview-pop-quiz/leetcode"
"github.com/conallob/coding-interview-pop-quiz/patterns"
"github.com/conallob/coding-interview-pop-quiz/quiz"
"github.com/conallob/coding-interview-pattern-drill/leetcode"
"github.com/conallob/coding-interview-pattern-drill/patterns"
"github.com/conallob/coding-interview-pattern-drill/quiz"
)

// makeProblem is a test helper that builds a Problem with the given tag slugs.
Expand Down
10 changes: 5 additions & 5 deletions server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import (
"strings"
"sync"

"github.com/conallob/coding-interview-pop-quiz/cache"
"github.com/conallob/coding-interview-pop-quiz/config"
"github.com/conallob/coding-interview-pop-quiz/leetcode"
"github.com/conallob/coding-interview-pop-quiz/patterns"
"github.com/conallob/coding-interview-pop-quiz/quiz"
"github.com/conallob/coding-interview-pattern-drill/cache"
"github.com/conallob/coding-interview-pattern-drill/config"
"github.com/conallob/coding-interview-pattern-drill/leetcode"
"github.com/conallob/coding-interview-pattern-drill/patterns"
"github.com/conallob/coding-interview-pattern-drill/quiz"
)

// resultPayload is the JSON payload for a quiz answer result.
Expand Down
Loading