Alex SchiesslforAlexRJS blogsalexrjs.hashnode.net·Feb 26, 2023My k8s journey continues... Part II... In the last part, you could read about the beginning of my k8s journey. The rescue of my Monitor Raspberry Pi, and the build of my 5 Raspberry Pi k8s cluster. Also the basic setup with DietPi OS. In part II, I want to show how I did the k8s setup...Discuss·4 likesk8s adventuresKubernetes
Sood RuchikaforRuchikaSoodruchikasood.hashnode.net·May 17, 2022Strivers DSA sheet - Solutions to pattern problemsIf you want to have a look at the javascript solutions to the pattern problems you can check it out from the below github repo Pattern problems -solutionsDiscuss·91 readsDSA
HanforEunhan's blogeunhanlee.hashnode.net·Jul 27, 2022[ Solution]1189. Maximum Number of BalloonsProblem Problem_Link Solutions (time, space) O(n), O(1) class Solution { public static int maxNumberOfBalloons(String text) { /* //for all alphabet characters int[] charList = new int[26]; for (char c : text.toChar...DiscussAlgorithm Solving Studyleetcode
Alex SchiesslforAlexRJS blogsalexrjs.hashnode.net·Feb 26, 2023My k8s journey continues... Part II... In the last part, you could read about the beginning of my k8s journey. The rescue of my Monitor Raspberry Pi, and the build of my 5 Raspberry Pi k8s cluster. Also the basic setup with DietPi OS. In part II, I want to show how I did the k8s setup...Discuss·4 likesk8s adventuresKubernetes
Jamie RichardsforThe SaaS adventurejamie.hashnode.net·Oct 28, 2022Finding a side hustleI'm part of a web design and development agency and while we're super busy its good to challenge yourselves every now and then. I wanted to challenge myself so have decided to attempt to create a "side hustle" which will bring on some extra revenue ...Discussev
Sudip Ghoshforimsudip's blogimsudip.hashnode.net·Oct 10, 2022Leetcode journey - Question 1328 - Break a PalindromeProblem: Q1328. Break a Palindrome Given a palindromic string of lowercase English letters palindrome, replace exactly one character with any lowercase English letter so that the resulting string is not a palindrome and that it is the lexicographica...Discuss·47 readsleetcode
HanforEunhan's blogeunhanlee.hashnode.net·Jul 27, 2022[ Solution]1189. Maximum Number of BalloonsProblem Problem_Link Solutions (time, space) O(n), O(1) class Solution { public static int maxNumberOfBalloons(String text) { /* //for all alphabet characters int[] charList = new int[26]; for (char c : text.toChar...DiscussAlgorithm Solving Studyleetcode
HanforEunhan's blogeunhanlee.hashnode.net·Jul 22, 2022[Solution] 2148. Count Elements With Strictly Smaller and Greater ElementsProblem Problem_Link Solutions (time, space) O(n), O(1) class Solution { public int countElements(int[] nums) { int min = Integer.MAX_VALUE; int max = Integer.MIN_VALUE; int count = 0; for (int temp : nums) { ...DiscussAlgorithm Solving Studyleetcode
Sood RuchikaforRuchikaSoodruchikasood.hashnode.net·May 17, 2022Strivers DSA sheet - Solutions to pattern problemsIf you want to have a look at the javascript solutions to the pattern problems you can check it out from the below github repo Pattern problems -solutionsDiscuss·91 readsDSA