Best of C++ โ€” May 2023

  1. 1
    Article
    Avatar of communityCommunity Picksยท3y

    Welcome to Comprehensive Rust ๐Ÿฆ€

    The course covers the full spectrum of Rust, from basic syntax to advanced topics like generics and error handling. It also includes Android-specific content on the last day. The goal of the course is to teach you Rust and hope to: - Give you a comprehensive understanding of Rust syntax and language.

  2. 2
    Article
    Avatar of kdnuggetsKDnuggetsยท3y

    Mojo Lang: The New Programming Language

    Mojo Lang is the new programming language designed as a superset of Python. It has been designed to program on AI hardware, such as GPUs running CUDA. It is able to achieve this by using Multi-Level Intermediate Representation (MLIR) to scale hardware types, without complexity.

  3. 3
    Article
    Avatar of medium_jsMediumยท3y

    Daily LeetCode Problems: Problem 934. Shortest Bridge

    LeetCode Problem 934 challenges us to connect two islands in a binary matrix by flipping the minimum number of 0โ€™s. We will explore the problem statement, discuss the DFS+BFS approach, provide pseudocode, analyze the time and space complexity and present a comprehensive solution.