-
Notifications
You must be signed in to change notification settings - Fork 1
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
Hw02 unpack string #2
Conversation
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.
Спасибо за выполненное задание. Хорошая работа
Итого: 10 баллов из 10. Принято
func IsDigit(r rune) bool { | ||
for _, num := range nums { | ||
if num == r { | ||
return true | ||
} | ||
} | ||
return false | ||
} |
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.
Думаю, что можно использовать функцию стандартной библиотеки https://pkg.go.dev/unicode#IsDigit
lenRunes := len(runes) | ||
for i := 0; i < lenRunes; i++ { |
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.
Удобнее и проще будет использовать цикл range. Это позволит на каждой итерации получать текущий символ, при необходимости запоминать предыдущий и не обращаться к элементам по индексу
Домашнее задание №2 «Распаковка строки»
Чек-лист студента (Что это?)
go mod tidy
..sync
файл. Зачем его удалять?Критерии оценки
Зачёт от 7 баллов