@careerdevs
Solved the @hackerrank intermediate algorithm challenge "Organizing Containers of Balls"! This was a tricky problem that I did not understand at first. It involves traversing a 2D list to get the row and column totals.
Check it out:
https://t.co/J55s671dGa
@careerdevs
Working on HackerRank 30 Days of Code challenges to practice algorithm challenges and using algorithmic thinking to solve problems. Trying to see how many problems I can complete in 7 days!
Check it out:
https://t.co/Puu3riHeCY
#Algorithms#SoftwareDeveloper
@careerdevs
Updating the BlackJack card game, breaking up each game action (hit, stand, double, and split) into separate methods to clean up the code. Working on adding a few new features.
Check it out:
https://t.co/OlRKMwXwBy
#SoftwareDeveloper#SiliconRhode#FullStackArmy
@careerdevs
Using the https://t.co/k1XukJYH85 API of disease statistics to list and pull in COVID-19 statistical data for the COVID-Tracker app. Tracks number of cases/recovered/deaths per country and globally.
Check it out here:
https://t.co/O7vKAD3Zix
#SoftwareDeveloper
@careerdevs
Built a RestTemplate gateway to receive incoming GET requests from a microservice API to fetch movie and ratings information.
https://t.co/UExoDjaOU4
@careerdevs
Working on the API gateway microservice using RestTemplate. RestTemplate features cleaner code than HttpClient using less code overall for the same functionality.
The gateway will be able to accept requests from an API and send a response.
https://t.co/FCkiUpHnU9
@careerdevs
Working on an API gateway microservice for a finance transactional microservice project. Built a GET route to an external API that handles the request and sends back a response using HttpClient. Working on adding in a few more routes.
https://t.co/FCkiUpHnU9
@careerdevs
Building a Spring Boot multithreading demo to demonstrate to fellow colleagues the process of multithreading using the CompletableFuture interface.
https://t.co/D85LOXTZvx
@careerdevs
Added a line graph of the trend in covid cases from each month to today's date by adding the package react-chartjs-2 to my project. Working with functional components and state and effect hooks.
#SoftwareDeveloper#FullStackArmy#SiliconRhode
https://t.co/O7vKAD3Zix
@careerdevs
Using React hooks to fetch and display COVID-19 data points of cases, recovered, and deaths worldwide and by country in a single page React application.
Check it out:
https://t.co/O7vKAD3Zix
#SoftwareDeveloper#FullStackDeveloper#SiliconRhode
@careerdevs
Added in the split functionality and allowed multiple players to bet in and play a round of BlackJack. Next, I am working on allowing several rounds to be played until players quit out in between rounds of play or run out of money.
https://t.co/OlRKMwXwBy
@careerdevs
Rebuilding BlackJack to be more object-oriented and with cleaner, maintainable, and more reusable code. Currently testing the game flow.
https://t.co/OlRKMwXwBy
@careerdevs
Incorporated a Random Card Selector into the game flow logic for the opposing player to use. This automates the opponents' requests for card values from the player's hand. SecureRandom is used to ensure more unpredictable values are picked.
https://t.co/UAh55gnjkY
@careerdevs
Pulling apart one of the larger methods and splitting it into a few smaller methods to handle requesting cards from a player's hand and transferring cards to the opposite player's hand. Simplifies modifying game looping structure later. https://t.co/UAh55gnjkY
@careerdevs
Working on a solution to the @hackerrank New Year's Chaos problem. Looking deeper into this, I've learned that this type of problem deals with permutations of inversions, which is from sorted order to a new ordering (not sorted).
https://t.co/pGKqx8rl3b
@careerdevs
Worked on an problem that generates the permutations of an array of an integers using Heap's Algorithm. This is something I want to dive more into to better understand it as well as how to apply backtracking to compute repeated calculations.
https://t.co/PQjfb3PAqa