Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 433 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 433 Bytes

advent-of-code

My solutions for https://adventofcode.com.

Notes

To make VSCode rust-analyzer works for Rust files, you need to:

  • Store Rust files in {year}/src/bin/.
  • Add the below to VS code workspace settings:
    "rust-analyzer.linkedProjects": [
        "{path-to-repo}/advent-of-code/{year}/Cargo.toml" 
    ],