Anonymous Quiz
58%
func (t *Type) Method(m func() Type) {}
8%
func (t Type) Method(m func() Type) {}
33%
func (t *Type) Method(m func() *Type) {}
1%
func t.Type.Method(m func() Type) {}
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥6👍3
Anonymous Quiz
37%
func (t *Type) Method() map[int]string {}
23%
func (t Type) Method() map[string]int {}
28%
func (t *Type) Method() map[string]int {}
11%
func (t Type) Method() map[int]string {}
💊20🤯8😁1
Anonymous Quiz
69%
func (t *Type) Method(m map[int]string) {}
23%
func (t Type) Method(m map[int]string) {}
6%
func Type.Method(m map[int]string) {}
2%
func t.Type.Method(m map[int]string) {}
💊19
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2
Anonymous Quiz
85%
make(chan string, 20)
7%
make(chan string, buffer=20)
7%
make(chan<- string, 20)
0%
make(chan string, 0)
Anonymous Quiz
36%
Использовать isClosed
10%
Использовать reflect
32%
Использовать select с default
21%
Это невозможно
🤔6👍4
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2
Anonymous Quiz
54%
func f(arr *[5]int) {}
5%
func f(arr [5]int) {}
34%
func f(arr *[]int) {}
7%
func f(arr [5]*int) {}
💊8👍6
Anonymous Quiz
85%
make(chan string)
13%
make(chan string, 0)
2%
make(chan<- string)
1%
make(<-chan string)
💊4🔥1
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍8🔥2🤔1
Anonymous Quiz
76%
func (t *Type) Method(s *Type) map[string]int {}
18%
func (t Type) Method(s *Type) map[string]int {}
4%
func Type.Method(s *Type) map[string]int {}
2%
func t.Type.Method(s *Type) map[string]int {}
💊9
Anonymous Quiz
49%
var f func(map[string]int) string
39%
var f func(map[int]string) string
10%
var f func(*map[string]int) string
1%
var f func(map[string]*int) string
💊30😁4👍1👀1
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2🔥1
Anonymous Quiz
45%
0
1%
-1
33%
nil
21%
Паника
👀7
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥2👍1
Anonymous Quiz
1%
-1
92%
0
5%
nil
2%
undefined
Anonymous Quiz
71%
func f(s string) *[5]int {}
7%
func f(s *string) *[5]int {}
18%
func f(s string) [5]*int {}
4%
func f(s *string) [5]*int {}
❤2
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🤔2
Anonymous Quiz
6%
Использовать ключевое слово const
11%
Использовать указатель на структуру в методе
75%
Объявить метод с получателем типа структуры, а не указателя
9%
Использовать ключевое слово readonly
🤔2👀2💊1