Closed
Description
In arc1.rs
, the following lines appear:
// Don't change the lines below.
#![forbid(unused_imports)]
use core::num;
use std::{sync::Arc, thread};
As far as I could see, there is no relevant way of using core::num
. And in the solution file, this has, in fact, been modified to the following:
// Don't change the lines below.
#![forbid(unused_imports)]
use std::{sync::Arc, thread};
So I'm assuming use core::num;
should be removed from the exercise?
Metadata
Metadata
Assignees
Labels
No labels