fa
Feedback
Prog Reference

Prog Reference

رفتن به کانال در Telegram

Tags: #cpp #csharp, #asp, #wpf #book #android #java #js, #node #game, #gd #py, #python, #django

نمایش بیشتر
1 126
مشترکین
اطلاعاتی وجود ندارد24 ساعت
+37 روز
-230 روز
آرشیو پست ها
📕 Flutter and Dart: Up and Running: Build native apps for both iOS and Android using a single codebase (2023) #Dart #Flutter
📕 Flutter and Dart: Up and Running: Build native apps for both iOS and Android using a single codebase (2023) #Dart #Flutter 📥 Download or see more information here! 👉 @c_books

📕 Rust for C++ Programmers: Learn how to embed Rust in C/C++ with ease (2023) #Rust #Cpp 📥 Download or see more information
📕 Rust for C++ Programmers: Learn how to embed Rust in C/C++ with ease (2023) #Rust #Cpp 📥 Download or see more information here! 👉 @c_books

My simple solution to today's question 49. Group anagrams in LeetCode:
class Solution {
public:
    string hash(string s){

        string res('*',29);
        for(char c:s)
            res[c-97]++;
        return res; 
    }

    vector<vector<string>> groupAnagrams(vector<string>& strs) {
        vector<vector<string>> res;

        unordered_map<string,vector<string>> mp;
        for(int i=0;i<strs.size();i++){
          mp[hash(strs[i])].push_back(strs[i]);
        }
        for(auto v:mp)
            res.push_back(v.second);
        return res;
    }
};

📚Full Stack Development with MongoDB 🎫Access Library Channel Download #mongo #db @c_books
📚Full Stack Development with MongoDB 🎫Access Library Channel Download #mongo #db @c_books

📚Pro SQL Server 2022 Wait Statistics. 3 Ed 🎫Access Library Channel Download #sql @c_books
📚Pro SQL Server 2022 Wait Statistics. 3 Ed 🎫Access Library Channel Download #sql @c_books

Learn WinUI 3.0: Leverage the power of WinUI, the future of native Windows application development 🎫Access Library Channel D
Learn WinUI 3.0: Leverage the power of WinUI, the future of native Windows application development 🎫Access Library Channel Download #csharp #winui @c_books

📚Practical Design Patterns for Java Developers ✍️Bruno Souza 🎫Access Library Channel Download #java #en @c_books
📚Practical Design Patterns for Java Developers ✍️Bruno Souza 🎫Access Library Channel Download #java #en @c_books

📚Tiny Python Projects 2020 ✍️: Ken Youens-Clark 🎫Access Library Channel Download #python #en @c_books
📚Tiny Python Projects 2020 ✍️: Ken Youens-Clark 🎫Access Library Channel Download #python #en @c_books

📚Introduction to Algorithms ✍️: Thomas Cormen 🎫Access Library Channel Download #algorithms #english @c_books
📚Introduction to Algorithms ✍️: Thomas Cormen 🎫Access Library Channel Download #algorithms #english @c_books

📚Clean Code Principles and Patterns: A Software Practitioner’s Handbook (2023) ✍️Petri Silén 🎫Access Library Channel Downlo
📚Clean Code Principles and Patterns: A Software Practitioner’s Handbook (2023) ✍️Petri Silén 🎫Access Library Channel Download @c_books

📚Clean Code with C#: Refactor your legacy C# code base and improve application performance using best practices (2023) 🎫Acc
📚Clean Code with C#: Refactor your legacy C# code base and improve application performance using best practices (2023) 🎫Access Library Channel Download #csharp #cs @c_books

📚Improve Java Coding: Best Practices for Effective Coding (2023) Sar Maroof 🎫Access Library Channel Download #java #jar @c_
📚Improve Java Coding: Best Practices for Effective Coding (2023) Sar Maroof 🎫Access Library Channel Download #java #jar @c_books

📚Modern TypeScript: A Practical Guide to Accelerate Your Development Velocity (2023) Ben Beattie-Hood 🎫Access Library Chann
📚Modern TypeScript: A Practical Guide to Accelerate Your Development Velocity (2023) Ben Beattie-Hood 🎫Access Library Channel Download #ts @c_books

📚Next.js: Navigating the Future of Web Development (2023) Frahaan Hussain 🎫Access Library Channel Download #js #next #web @
📚Next.js: Navigating the Future of Web Development (2023) Frahaan Hussain 🎫Access Library Channel Download #js #next #web @c_books

📚Algorithms and Data Structures for OOP With C# (2023) ✍️Theophilus Edet 🎫Access Library Channel Download #csharp #oop #ds
📚Algorithms and Data Structures for OOP With C# (2023) ✍️Theophilus Edet 🎫Access Library Channel Download #csharp #oop #ds @c_books

📚PHP Serverless Programming (2023) Ronald C. Sheffield 🎫Access Library Channel Download #php @c_books
📚PHP Serverless Programming (2023) Ronald C. Sheffield 🎫Access Library Channel Download #php @c_books

Repost from C/C++ Programming
📕 Modern C 📅 2020 🖋 Jens Gustedt 📃 390 pages ⚡️ #Beginner #Intermediate 🗒 This book covers: - Getting started - The prin
📕 Modern C 📅 2020 🖋 Jens Gustedt 📃 390 pages ⚡️ #Beginner #Intermediate 🗒 This book covers: - Getting started - The principal structure of a program - Everything is about control - Expressing computations - Basic values and data - Derived data types - Functions - C library functions - Style - Organization and documentation - The C memory model - Storage and More involved processing and IO - Performance and Threads - Atomic access and memory consistency and more... 📌 This book focuses on the new and unique features of modern C programming. The book is based on the latest C standards and offers an up-to-date perspective on this tried-and-true language. 🏷Access Library Channel 📥DOWNLOAD THE BOOK 👉 @cpp_programming_books

Repost from C/C++ Programming
📕 Starting out with C++ From Control Structures through Objects 📅 2014 🖋 Tony Gaddis 📃 1200+ pages ⚡️ #Beginner #Intermed
📕 Starting out with C++ From Control Structures through Objects 📅 2014 🖋 Tony Gaddis 📃 1200+ pages ⚡️ #Beginner #Intermediate 🗒 This book covers: - Introduction to C++ - Expressions and Interactivity - Making Decisions - Loops and Files - Searching and Sorting Arrays - Pointers - Characters, C-Strings, and More About the string Class - Advanced File Operations - Inheritance, Polymorphism, and Virtual Functions - Exceptions, Templates, and the Standard Template Library (STL) - Linked Lists, Stacks and Queues, Recursion, Binary Trees and more 📌 Provides a gentle introduction with a focus on practical applications and avoiding overwhelming theoretical concepts. 🏷Access Library Channel 📥DOWNLOAD THE BOOK 👉 @cpp_programming_books

📚C++ Game Animation Programming, 2nd Edition: Learn modern animation techniques from theory to implementation using C++, Ope
📚C++ Game Animation Programming, 2nd Edition: Learn modern animation techniques from theory to implementation using C++, OpenGL, and Vulkan (2023) ✍️Автор: Gabor Szauer Download #cpp #game @c_books