exercism / exercism/problem-specifications
Specification for VLQ should be explicit on 7-bit bytes starting from the right
- Ngôn ngữ chính
- Ruby
- Star
- 358
- Fork
- 563
- Merge trung bình
- 18 giờ 41 phút
- Pull request đã merge (30 ngày)
- 2
Mô tả
I think the VLQ specification should be more explicit about building 7-bit bytes starting from the right (least significant bits):
Correct order: start from the right (least significant bits):
32 bit input = (4-bits) (7-bits) (7-bits) (7-bits) (7-bits)
Wrong order: start from the left (most significant bits):
32 bit input = (7-bits) (7-bits) (7-bits) (7-bits) (4-bits)
Problem specification:
https://github.com/exercism/problem-specifications/blob/master/exercises/variable-length-quantity/description.md
Of course the student can find the correct order by looking at the test cases, but is there a reason to not being more explicit?
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.