Skip to content

Commit

Permalink
feat(repeatalpha): add piscine to imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nprimo authored and HarryVasanth committed Jun 27, 2024
1 parent 731e2ff commit d07d9d6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions subjects/repeatalpha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ package main

import (
"fmt"
"piscine"
)

func main() {
fmt.Println(RepeatAlpha("abc"))
fmt.Println(RepeatAlpha("Choumi."))
fmt.Println(RepeatAlpha(""))
fmt.Println(RepeatAlpha("abacadaba 01!"))
fmt.Println(piscine.RepeatAlpha("abc"))
fmt.Println(piscine.RepeatAlpha("Choumi."))
fmt.Println(piscine.RepeatAlpha(""))
fmt.Println(piscine.RepeatAlpha("abacadaba 01!"))
}
```

Expand Down
9 changes: 5 additions & 4 deletions subjects/repeatalpha/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ package main

import (
"fmt"
"piscine"
)

func main() {
fmt.Println(RepeatAlpha("abc"))
fmt.Println(RepeatAlpha("Choumi."))
fmt.Println(RepeatAlpha(""))
fmt.Println(RepeatAlpha("abacadaba 01!"))
fmt.Println(piscine.RepeatAlpha("abc"))
fmt.Println(piscine.RepeatAlpha("Choumi."))
fmt.Println(piscine.RepeatAlpha(""))
fmt.Println(piscine.RepeatAlpha("abacadaba 01!"))
}

0 comments on commit d07d9d6

Please sign in to comment.