Skip to content

Commit a105f0f

Browse files
author
João Pedro Limão
committed
[abc294] Change function name
1 parent d2676d2 commit a105f0f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

atcoder/abc294/a_filter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Link: https://atcoder.jp/contests/abc294/tasks/abc294_a
1111
Contest: abc294
1212
*/
1313

14-
func main() {
14+
func filter() {
1515
// Time: O(N)
1616
// Space: O(N)
1717

atcoder/abc294/b_ascii_art.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Link: https://atcoder.jp/contests/abc294/tasks/abc294_b
1111
Contest: abc294
1212
*/
1313

14-
func main() {
14+
func asciiArt() {
1515
// Time: O(N^2)
1616
// Space: O(1)
1717

atcoder/abc294/c_merge_sequences.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Link: https://atcoder.jp/contests/abc294/tasks/abc294_c
99
Contest: abc294
1010
*/
1111

12-
func main() {
12+
func mergeSequence() {
1313

1414
var a, b int
1515
fmt.Scanf("%d %d", &a, &b)

0 commit comments

Comments
 (0)