Closed boruno closed 12 months ago
Option (1) is stated as correct, while it cannot be compiled due to typo in cast signature: static_const<double>(a) instead of static_cast<double>(a)
static_const<double>(a)
static_cast<double>(a)
Possible fix: 1) Make (1) incorrect and predict learner to spot the mistake 2) Fix the typo
Option (1) is stated as correct, while it cannot be compiled due to typo in cast signature:
static_const<double>(a)
instead ofstatic_cast<double>(a)
Possible fix: 1) Make (1) incorrect and predict learner to spot the mistake 2) Fix the typo