-
Notifications
You must be signed in to change notification settings - Fork 0
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
HW2 is completed #2
Conversation
e03b2d4
to
324200a
Compare
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.
Спасибо за вариант решения. Хорошая работа
Итого: 8 баллов из 10. Принято
func Unpack(str string) (string, error) { | ||
inputIndex := 0 | ||
resultIndex := 0 | ||
backslash := '\\' |
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.
Рекомендую для неизменяемых значений использовать константы
resultIndex := 0 | ||
backslash := '\\' | ||
input := []rune(str) | ||
result := make([]rune, 0, 200) |
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.
Для итоговой строки рекомендую использовать strings.Builder
if utf8.RuneCountInString(string(input)) == 0 { | ||
return "", nil | ||
} |
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.
Лучше проверить на исходной строке и до всех инициализаций
for inputIndex <= inputLen { | ||
r := input[inputIndex] |
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 nextIndex(sl *[]rune, index int) int { | ||
slLen := math.Max(0, float64(len(*sl)-1)) | ||
nextIndex := index + 1 | ||
return int(math.Min(float64(slLen), float64(nextIndex))) | ||
} | ||
|
||
func previousIndex(sl *[]rune, index int) int { | ||
slLen := math.Max(0, float64(len(*sl)-1)) | ||
previousIndex := index - 1 | ||
return int(math.Min(float64(slLen), math.Max(0, float64(previousIndex)))) |
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.
Кажется, что в качестве аргумента можно использовать вычисленную длину и не передавать в функцию оригинальный слайс, ещё и по указателю.
Для поиска минимального и максимального значений, рекомендую использовать встроенные функции min
и max
{input: `qwe\4\5`, expected: `qwe45`}, | ||
{input: `qwe\45`, expected: `qwe44444`}, | ||
{input: `qwe\\5`, expected: `qwe\\\\\`}, | ||
{input: `qwe\\\3`, expected: `qwe\3`}, |
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.
Будет здорово добавить собственных кейсов, расширяющих существующие сценарии тестирования
Домашнее задание №2 «Распаковка строки»
Чек-лист студента (Что это?)
go mod tidy
..sync
файл. Зачем его удалять?Критерии оценки
Зачёт от 7 баллов