#java نتائج البحث
Day 29 ✅ Solved “Find Minimum in Rotated Sorted Array” 🔁 ⚡ 0 ms | 💾 41.89 MB Used binary search for an elegant O(log n) solution 🚀 Q: [leetcode.com/problems/find-…] Sol: [github.com/PriyabrataRoy/…] #100DaysOfCode #Java #DSA #Coding #BinarySearch
![Priyo8298966333's tweet image. Day 29 ✅
Solved “Find Minimum in Rotated Sorted Array” 🔁
⚡ 0 ms | 💾 41.89 MB
Used binary search for an elegant O(log n) solution 🚀
Q: [leetcode.com/problems/find-…]
Sol: [github.com/PriyabrataRoy/…]
#100DaysOfCode #Java #DSA #Coding #BinarySearch](https://pbs.twimg.com/media/G3MZzIKW0AA2Gmv.jpg)
What a great time it is to be a #Java developer. As my friend @starbuxman pointed out it's easy to write scripts now... Making all of us Java Script developers 🤣

Began my LeetCode journey this October and honestly, some problems solve themselves faster than expected! Wrapped this one up in just 50 seconds ✅ Not all questions are this straightforward but when they click instantly it feels great. #LeetCode #Java

💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. ✅ Avoids Object[] and casting. #Java #JavaDev
![mario_casari's tweet image. 💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams.
✅ Avoids Object[] and casting.
#Java #JavaDev](https://pbs.twimg.com/media/G2bPbniXUAAl_X6.jpg)
Currently in 4th year. Know only Java for now. Just started learning Spring Boot. Got selected at a small package ,but this is just the beginning. You’ll see me become a full-stack dev in the next few months. Day 1 of #100DaysOfCode #java #react #springboot

Learning react by developing an E-commerce website. So today I build Header Functional component of the website. Day3 of #100DaysOfCode #java #react #springboot

Created an MCP Server that will surface all of the content I create to your favorite LLM. I'll talk more about this soon but if you have any questions please leave them below 👇🏻 This was incredibly easy to do thanks to Spring AI 🤖✨ github.com/danvega/dvaas #Java #SpringAI

Solved Median of Two Sorted Arrays : Finally understood the intuition for Binary Search approach and why we always perform the search on the smaller array #LeetCode #Java #Coding #DSA

Ready to listen @alvaro_sanchez sharing his session about revealing the magic 🧙🏼♂️🪄 behind #Java annotations #JavaCro

Great talk from @brunoborges at #IBMTechXchange on optimizing Java apps for Kubernetes ☕️☁️ ✅ Reduce image size ✅ Tune JVM & GC ✅ Consider vertical scaling ✅ Right-size your K8s cluster Loved the focus on aligning tech optimizations with business needs! #Java #Kubernetes…



Day 3 🌅 Woke up at 6️⃣ am 💪 ✅ Finished Spring IOC ✅ Understood JWT authentication flow 🔐 💻 DSA grind: • Two Sum • Two Sum II • Find the Pivot Index After DSA play with her 😄🐱 🐾 #Java #SpringBoot #DSA #CodingJourney

💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic. ✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it. #Java #JavaDev

🚀 Day 26 of #100DaysOfCode Today I practiced Java DSA with 3 small but useful problems: 1️⃣ Remove the last digit of a number 2️⃣ Check if a number is a power of 2 3️⃣ Swap two numbers without using a third variable #Java #DSA



Today I have developed 1.Footer 2. Page Heading 3. Page title 4. Products cards of the website Day4 of #100DaysOfCode #java #react #springboot

👑N-Queens 👑 Day 51 of #100DaysOfCode ✅ Solved the N-Queens Problem 💻 It was challenging, but finally cracked it using backtracking and recursion 🚀 Feels amazing to solve this classic problem - honestly, this is my biggest achievement so far in DSA 🙌 #Java #DSA

Increase your software development income by leveling up your problem solving skills using algorithms and data structures codersite.dev/book/javaInter… #java #programming #coding #interview #developer #algorithms #codersite
Skill > Info inherent to each class. P start > user input > check with info > if correct send random skill to user. File starts with P. Random skill > new info > save file > load file. User input also connects with end program. #java #Borderlands #randomizer #flowchart
I just published EPAM Senior Java Engineer Interview Questions and Answers medium.com/p/epam-senior-… #Java #Web3
I had a great time at @JavaCro in Rovinj, a unique experience with a lot of great people from the #Java community. A lot of sun, a lot of fun and a lot of Java, with a but of #JakartaEE and @GlassFish! #JavaCro




Spring Boot OpenAPI and OAuth2 codersite.dev/spring-boot-oa… #springboot #java #programming #coding #oauth2 #developer #api #reactive
Day 1 of #DailyLC -Solved the “Reverse Integer” problem on LeetCode today 🔢 Learned how to handle 32-bit overflow without using long — classic logic check! 💪 #LeetCode #Java #100DaysOfCode #CodingJourney

#Testing gRPC Services in #Java - #Java Code Geeks javacodegeeks.com/testing-grpc-s…
The Eclipse Migration Toolkit for #Java offers a toolkit that simplifies the migration of Java applications from previous versions of #OpenJDK, especially those deemed as Long Term Service (LTS) release versions. Learn more! 👀 #opensource hubs.la/Q030jygf0

Most importantly, DDD is not solely about code—it’s about fostering a positive communication process between developers and domain experts to translate business knowledge accurately into software. Read more 👉 lttr.ai/AjvfM #java #DDD

4. spring-ai-alibaba Agentic AI Framework for Java Developers #Java github.com/alibaba/spring…
Turn Your HTML into High-Quality PDFs Using Java! Unlock a smarter way to manage and render #HTML files to #PDF documents in #Java using a secure #Cloud #SDK designed for modern applications. kb.groupdocs.cloud/viewer/java/re… #automation #HTMLtoPDF
Clean and capitalize non-blank strings List<String> formatted = input.stream() .filter(str -> str != null && !str.isBlank()) .map(String::trim) .map(str -> str.substring(0, 1).toUpperCase() + str.substring(1)) .toList(); #Java #StreamAPI #TechTips
Filter and sort prime numbers List<Integer> primes = input.stream() .filter(MyClass::isPrime) .sorted() .toList(); Where isPrime is a Static Class in MyClass class #Java #StreamAPI #TechTips
Filter numeric strings, convert, multiply by 10, sort List<Integer> processed = input.stream() .filter(str -> str.matches("\\d+")) .map(Integer::valueOf) .map(val -> val * 10) .sorted() .toList(); Try It Out #Java #StreamAPI #TechTips
Flatten nested lists, remove duplicates, sort descending List<Integer> flatSorted = nestedLists.stream() .flatMap(List::stream) .distinct() .sorted(Comparator.reverseOrder()) .toList(); #Java #StreamAPI #Coding #Programming #TechTips
Flatten sentences into unique, sorted, lowercase words List<String> words = sentences.stream() .flatMap(sentence -> Arrays.stream(sentence.split(" "))) .map(String::toLowerCase) .distinct() .sorted() .toList(); #Java #Developers #buildinpublic
Day 29 ✅ Solved “Find Minimum in Rotated Sorted Array” 🔁 ⚡ 0 ms | 💾 41.89 MB Used binary search for an elegant O(log n) solution 🚀 Q: [leetcode.com/problems/find-…] Sol: [github.com/PriyabrataRoy/…] #100DaysOfCode #Java #DSA #Coding #BinarySearch
![Priyo8298966333's tweet image. Day 29 ✅
Solved “Find Minimum in Rotated Sorted Array” 🔁
⚡ 0 ms | 💾 41.89 MB
Used binary search for an elegant O(log n) solution 🚀
Q: [leetcode.com/problems/find-…]
Sol: [github.com/PriyabrataRoy/…]
#100DaysOfCode #Java #DSA #Coding #BinarySearch](https://pbs.twimg.com/media/G3MZzIKW0AA2Gmv.jpg)
Began my LeetCode journey this October and honestly, some problems solve themselves faster than expected! Wrapped this one up in just 50 seconds ✅ Not all questions are this straightforward but when they click instantly it feels great. #LeetCode #Java

🗓️ Day 35/90 – #DSA in Java Solved Rat in a Maze 🐭 using Recursion & Backtracking 🧠 → Understood the problem → Built logic to find paths → Implemented the final code 💡 #100DaysOfCode #Java #DSA #Backtracking #Recursion #ProblemSolving #CodingJourney


Solved Median of Two Sorted Arrays : Finally understood the intuition for Binary Search approach and why we always perform the search on the smaller array #LeetCode #Java #Coding #DSA

💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. ✅ Avoids Object[] and casting. #Java #JavaDev
![mario_casari's tweet image. 💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams.
✅ Avoids Object[] and casting.
#Java #JavaDev](https://pbs.twimg.com/media/G2bPbniXUAAl_X6.jpg)
Day 21/100 – Java DSA 🚀 Solved “Snakes and Ladders” on LeetCode By taking help of AI assistance. Learned to apply BFS for finding the minimum moves using board flattening and queue traversal. ⏱ Time: O(N²) 💾 Space: O(N²) #Day21 #Java #LeetCode #100DaysOfCode #BFS #DSA

🚀 Day 26 of #100DaysOfCode Today I practiced Java DSA with 3 small but useful problems: 1️⃣ Remove the last digit of a number 2️⃣ Check if a number is a power of 2 3️⃣ Swap two numbers without using a third variable #Java #DSA



💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic. ✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it. #Java #JavaDev

🇮🇳🔹 LeetCode Daily Challenge 🧩 Problem: Find Resultant Array After Removing Anagrams 📘 LC No.: 2273 💡 Approach: 🌀 Reverse Stack Sweep 🔥 Day 672 Streak #LeetCode #Java #ProblemSolving #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava #DSA #100DaysOfCode

Built and tested the User Service + Controller for my Hotel Booking App 👨🏽💻 Created REST endpoints and confirmed everything works fine in Postman ✅ Github Url: github.com/MarvsConcept/H… #SpringBoot #Java #BackendDev #BuildInPublic #RESTAPI



Do not be surprised Moustapha! How soon & what color? - I love you too 🥰 💵🏡💝✌🏼 #Java #Tchad #SaaS #Reactjs #SelfAwareness

Day 3 🌅 Woke up at 6️⃣ am 💪 ✅ Finished Spring IOC ✅ Understood JWT authentication flow 🔐 💻 DSA grind: • Two Sum • Two Sum II • Find the Pivot Index After DSA play with her 😄🐱 🐾 #Java #SpringBoot #DSA #CodingJourney

Something went wrong.
Something went wrong.
United States Trends
- 1. Happy Birthday Charlie 63K posts
- 2. #tuesdayvibe 3,887 posts
- 3. Good Tuesday 34.2K posts
- 4. Pentagon 77.6K posts
- 5. #NationalDessertDay N/A
- 6. Shilo 2,116 posts
- 7. Sandy Hook 2,136 posts
- 8. Dissidia 7,169 posts
- 9. Happy Heavenly 9,566 posts
- 10. happy 32nd 10.6K posts
- 11. Victory Tuesday 1,093 posts
- 12. #TacoTuesday N/A
- 13. Monad 195K posts
- 14. #14Oct 2,428 posts
- 15. #PutThatInYourPipe N/A
- 16. Larry Fink 5,942 posts
- 17. Standard Time 3,030 posts
- 18. $MON 15.5K posts
- 19. Martin Sheen 6,784 posts
- 20. Nomura 1,757 posts