-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
feat: add solution for problem no.1114 and no.1115 #298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
呵呵,来信收到,谢谢
|
这是来自QQ邮箱的假期自动回复邮件。
您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
- [Data Structures](#data-structures) | ||
- [Algorithm](#algorithm) | ||
- [LeetCode Problems](#leetcode-problems) | ||
- [一. 个人数据](#一-个人数据) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这部分应该不用改动
chans []chan bool | ||
} | ||
|
||
func NewFoo() *Foo { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这道题官方没有 go 的语言选择。你那边可以用 go 提交代码么?
return &pt | ||
} | ||
|
||
func (this *FooBar) foo() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
函数名错了,要大写。并且入参需要输入一个函数:
func (fb *FooBar) Foo(printFoo func()) {}
} | ||
} | ||
|
||
func (this *FooBar) bar() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
函数名错了,要大写。并且入参需要输入一个函数:
func (fb *FooBar) Bar(printBar func()) {}
Add solutions for 2 leetcode problem written in Go not presented in repo.