Mobile Tech
1.16K subscribers
92 photos
8 videos
6 files
138 links
Michael Lazebny's blog about @dart and @flutter
lazebny.io
Download Telegram
πŸ‘3
What is the worst case time complexity of inserting into an array?
Anonymous Quiz
8%
O(1)
25%
O(logN)
67%
O(n)
πŸ‘2
Does ListView use slivers under the hood?
Anonymous Quiz
81%
Yes
19%
No
πŸ‘1
List of expected articles πŸ™‚
Currently, I'm working on advanced questions and doc about sizzle starter.
πŸ”₯10
Does Dart support tail call optimisation?
Anonymous Quiz
58%
Yes
42%
No
πŸ‘3
Dive into this week's top-liked Medium article where Arnold Parge shares his expertise on the usage of Autodesk APIs, with insights from his expert team. Stay tuned for the best in tech knowledge-sharing!
https://blog.nonstopio.com/how-to-login-in-flutter-using-autodesk-a9d2d43a634e

#flutter #gpt #automated
Use of Service Locator (i.e. GetIt) makes the code testable, clean and predictable.
Anonymous Quiz
29%
Yes
71%
No
😁4πŸ€”1
Do each widget has a corresponding Element?
Anonymous Quiz
66%
Yes
34%
No
Event and microtask queues are
Anonymous Quiz
88%
FIFO
12%
LIFO
A few days ago I decided to create two scopes for the starter. Theme and Locale scope, so you can switch the themes, create custom ones without any effort. Also you can switch languages in the app.

I believe it would be really beneficial to have these scopesπŸ˜ͺ
πŸ”₯12❀2
Today I learned an interesting algorithm for finding the majority element.

The Boyer-Moore majority algorithm is a popular algorithm for finding the majority element in a list of integers. The majority element in an array (or list) is an element that appears more than n/2 times where n is the size of the array.

Here's a simple way to describe the Boyer-Moore Voting Algorithm:

1. Start with an initial candidate and a counter set to 0.
2. Iterate over the list of numbers.
3. For the current number: If the counter is zero, set the current number as the candidate.
4. If the current number is the candidate, increment the counter. Otherwise, decrement the counter.
5. The candidate will be the majority number.

#dart #leetcode #tipoftheday #algorithm
πŸ‘8πŸ€“2
Media is too big
VIEW IN TELEGRAM
Implemented both theme scope and locale scope for Sizzle Starter
πŸ”₯6πŸ‘5