Graph traversals BFS/DFS in Swift Shaunak Jagtap 07:51 Add Comment Shaunak Jagtap Graph traversals BFS/DFS in Swift //----------------Graph traversals BFS/DFS in Swift----------------// class Node { var value :... Read More
Advanced Interview Questions for Senior iOS Developer Shaunak Jagtap 23:43 Add Comment Shaunak Jagtap iOS Interview Questions Multithreading/GCD: Q. What care you will take when using sync execution in iOS? Ans: If the order of completion o... Read More
Graphs in Swift Shaunak Jagtap 22:32 Add Comment Shaunak Jagtap Graphs in Swift //----------------Graphs in Swift----------------// //Graphs are made out of nodes and edges. Let's create a struct to... Read More
What is reserveCapacity in Swift? Shaunak Jagtap 21:34 Add Comment Shaunak Jagtap Swift: reserveCapacity() Reserves enough space to store the specified number of elements. Declaration mutating func reserveCapacity ( _ m... Read More