Jayesh Karli
Jayesh Karli's Blog

Jayesh Karli's Blog

Follow
Follow
homebadgesnewsletter
Tag

problem solving skills

#problem-solving-skills

More content

Read more stories on Hashnode


Articles with this tag

Subsets - Leetcode

May 22, 20221 min read60 views

Finding subsets of an array using bit manipulation(Power Set) and recursion. · Bit Manipulation public List<List<Integer>> subsets(int[] nums) { ...

Subsets - Leetcode

Search in a Binary Search Tree - LeetCode

Apr 14, 20222 min read89 views

Search in a Binary Search Tree - LeetCode. O(log n) solutions. Iterative and recursive · Binary Search Tree (BST) is an excellent data structure for...

Search in a Binary Search Tree  - LeetCode

Baseball Game - Leetcode

Apr 10, 20222 min read24 views

Solving and analyzing space and time complexity of an easy leetcode problem · This problem is very straightforward, we just have to convert the problem...

Baseball Game - Leetcode

Top K Frequent Elements - Leetcode

Apr 9, 20223 min read28 views

You can find the link to the problem- here First solution with bucket sort and time complexity O(n) class Solution { public int[]...

Top K Frequent Elements - Leetcode