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
According to the config.json, the exercise teaches:
unicode-identifiers
emoji-symbols
The exercise requires the student to define a Clock struct and to implement addition and subtract functions, which is almost identical to the clock exercise. As we don't allow porting practice exercises to concept exercises, we should change this. That said, I don't object to doing something with a clock-like type, but I would propose to:
Have the Clock type already be defined in the stub
Not have separate + and - functions, but just have the + function
Simplify by not dealing with integer overflow (that can be then practiced in the practice exercise)
List the emojis with their clock values in the instructions
The text was updated successfully, but these errors were encountered:
According to the
config.json
, the exercise teaches:unicode-identifiers
emoji-symbols
The exercise requires the student to define a
Clock
struct and to implement addition and subtract functions, which is almost identical to theclock
exercise. As we don't allow porting practice exercises to concept exercises, we should change this. That said, I don't object to doing something with a clock-like type, but I would propose to:Clock
type already be defined in the stub+
and-
functions, but just have the+
functionThe text was updated successfully, but these errors were encountered: