Skip to content
View Tim-tech-gif's full-sized avatar

Block or report Tim-tech-gif

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Popular repositories Loading

  1. rust-2xx-practice rust-2xx-practice Public template

    Forked from djnzx/rust-practice

    Rust 1

  2. rust-course rust-course Public

    Forked from djnzx/rust-course

    Rust

  3. Comparing-changes Comparing-changes Public

  4. Update-.gitignore Update-.gitignore Public

  5. Create-ASCII Create-ASCII Public

    Rust

  6. Create-bool-2 Create-bool-2 Public

    fn is_palindrome(x: u32) -> bool #[test] fn test() { let data = [ (123, false), (121, true), (1221, true), ]; data .iter() .for_each(|(n, exp)| { assert_eq!(is_palindrome(*n), *exp); }); }