You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on the "point" assignment, I discovered an issue in the instructions and requirements.
Assignment Description:
Create a directory named point.
Copy the provided code into a main.go file inside the point directory.
Make the necessary changes so that the program works correctly, and the setPoint() function works with the int type.
When the program runs, the expected output should be:
x = 42, y = 21
However, the additional conditions state that github.com/01-edu/z01.PrintRune#4, --no-lit=[1-9] must be used. This requirement does not align with the core focus of the lesson. Using z01.PrintRune leads to a trivial direct printing of the answer, which contradicts the main objective of working with pointers and types. Moreover, the --no-lit=[1-9] option does not clearly fit into the logic of the original assignment and creates confusion.
Issues:
Mismatch with the assignment goal:
The primary purpose of the exercise, as indicated, is to manipulate a point structure and pointers to it, not to use a particular output method like z01.PrintRune.
Lack of clarity regarding additional conditions:
The instructions to use z01.PrintRune and --no-lit=[1-9] are neither explained nor logically connected to the rest of the assignment.
Unclear objectives:
It’s not evident why using an external printing package (z01.PrintRune) is required if the standard fmt.Printf function already achieves the expected result.
Suggestion:
I kindly ask you to reconsider the necessity of these additional output constraints. If the aim of the assignment is to reinforce the understanding of pointers, structures, and types, then using z01.PrintRune adds no real educational value. Instead, it only complicates the task and raises unnecessary questions. It would be beneficial either to clearly explain why z01.PrintRune must be used or to remove this requirement altogether, focusing the assignment on its core objectives.
Thank you for your attention. I hope you will review the assignment conditions to make them more understandable and coherent.
Sincerely, Arman Toleshbekov
The text was updated successfully, but these errors were encountered:
HarryVasanth
changed the title
point subject - Report on an Error and Inconsistency in the "point" Assignment
[QUESTION] point subject - Report on an Error and Inconsistency in the "point" Assignment
Dec 12, 2024
Hello @Armani313!
To clarify, the additional conditions involving github.com/01-edu/z01.PrintRune#4 and --no-lit=[1-9] are not meant to detract from the core focus of the assignment working with pointers and structures. Instead, they serve a specific purpose: to ensure that students do not hardcode the solution by directly printing the answer with multiple z01.PrintRune calls like so:
The first check github.com/01-edu/z01.PrintRune#4 ensures that students are allowed to call z01.PrintRune only 4 times in total, meanwhile, --no-lit=[1-9] prevents the use of literal integers like '4', '2', '1' as hardcoded values.
To summarize, the checks are not meant to force you to use z01.PrintRune, but rather to prevent hard-coding the output when you do use it.
point
Dear Developers,
While working on the "point" assignment, I discovered an issue in the instructions and requirements.
Assignment Description:
point
.main.go
file inside thepoint
directory.setPoint()
function works with theint
type.However, the additional conditions state that
github.com/01-edu/z01.PrintRune#4, --no-lit=[1-9]
must be used. This requirement does not align with the core focus of the lesson. Usingz01.PrintRune
leads to a trivial direct printing of the answer, which contradicts the main objective of working with pointers and types. Moreover, the--no-lit=[1-9]
option does not clearly fit into the logic of the original assignment and creates confusion.Issues:
Mismatch with the assignment goal:
The primary purpose of the exercise, as indicated, is to manipulate a
point
structure and pointers to it, not to use a particular output method likez01.PrintRune
.Lack of clarity regarding additional conditions:
The instructions to use
z01.PrintRune
and--no-lit=[1-9]
are neither explained nor logically connected to the rest of the assignment.Unclear objectives:
It’s not evident why using an external printing package (z01.PrintRune) is required if the standard
fmt.Printf
function already achieves the expected result.Suggestion:
I kindly ask you to reconsider the necessity of these additional output constraints. If the aim of the assignment is to reinforce the understanding of pointers, structures, and types, then using
z01.PrintRune
adds no real educational value. Instead, it only complicates the task and raises unnecessary questions. It would be beneficial either to clearly explain whyz01.PrintRune
must be used or to remove this requirement altogether, focusing the assignment on its core objectives.Thank you for your attention. I hope you will review the assignment conditions to make them more understandable and coherent.
Sincerely, Arman Toleshbekov
The text was updated successfully, but these errors were encountered: