Rust
List of problem that I used rust to solve
Problem | Last update |
---|---|
459. Repeated Substring Pattern | 8:52 PM - October 02, 2023 |
518. Coin Change II | 8:52 PM - October 02, 2023 |
63. Unique Paths II | 8:52 PM - October 02, 2023 |
134. Gas Station | 8:52 PM - October 02, 2023 |
VariableΒΆ
- Assigned using
let
keyword - Print to standard output by
print! ( )
orprintln! ()
- Scope of a variable defined by the block of code in which it is declared
- Function is a named block of code that is reusable
- Shadowing allows a variable to be re-declared in the same scope with the same name
Last update :
October 13, 2023
Created : August 16, 2023
Created : August 16, 2023