Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/StudyRust/leetcode_rust
/ Solution
Class
Solution
384-shuffle-an-array.rs:2–4 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
use std::time::{SystemTime, UNIX_EPOCH};
2
struct Solution {
3
nums: Vec<i32>
4
}
5
impl Solution {
6
fn new(nums: Vec<i32>) -> Self {
7
Self { nums }
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected