kaist-cp / cs220

269 stars 53 forks source link

[Assignment 3] Mastering common programming concepts (2/2) (due: 10/04, 23:59:59 (KST)) #346

Closed Lee-Janggun closed 1 month ago

Lee-Janggun commented 2 months ago

Re-learn the common programming concepts in Rust, part 2.

nailegg commented 1 month ago

Can i modify derive of enumeration?

Lee-Janggun commented 1 month ago

@nailegg What derive do you want to add?

eorb6502 commented 1 month ago

Can I disable some specific clippy lints?? I met 'if chain' error, so I want to disable clippy::comparison::chain

Jaewookim08 commented 1 month ago

@eorb6502 Could you use a match-case statement instead? If you prefer using an if-else chain for specific reasons, please provide an explanation along with the code.