Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/palak-463/javadsa
Join me on an adventure where I tackle data structures and algorithms using Java, sharpening my problem-solving skills along the way. ๐ฅ๏ธ
https://github.com/palak-463/javadsa
algorithms data-structures dsa java problem-solving
Last synced: 21 days ago
JSON representation
Join me on an adventure where I tackle data structures and algorithms using Java, sharpening my problem-solving skills along the way. ๐ฅ๏ธ
- Host: GitHub
- URL: https://github.com/palak-463/javadsa
- Owner: palak-463
- Created: 2024-09-14T14:48:20.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-11-08T14:46:45.000Z (3 months ago)
- Last Synced: 2024-11-08T15:37:07.879Z (3 months ago)
- Topics: algorithms, data-structures, dsa, java, problem-solving
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Java DSA
/*
Dedicated to my favourite programming language.
*/public class ReadMe
{public static void main(String [] args)
{
System.out.println("๐ฅ๏ธ Java DSA");
System.out.println("This repository contains daily solutions for 450 questions from the DSA Sheet by Love Babbar.");
System.out.println("Every solution includes the algorithm and approach used to solve the problem in the comment before the code.");
System.out.println("For every solution, you will also find the space and time complexity provided below the code as a comment.");
System.out.println("Find the full sheet at: https://www.geeksforgeeks.org/dsa-sheet-by-love-babbar/");
System.out.println("๐๏ธ Topic-Wise Distribution of 450 Questions: ");
printTopicDistribution();
}
public static void printTopicDistribution()
{
String[] topics =
{
{"๐ Arrays"},
{"๐ข Matrix"},
{"๐งต Strings"},
{"๐ Searching and Sorting"},
{"๐ Linked List"},
{"๐งฎ Bit Manipulation"},
{"๐ก Greedy"},
{"๐ Backtracking"},
{"๐ Dynamic Programming"},
{"๐๏ธ Stacks and Queues"},
{"๐ณ Binary Trees"},
{"๐ฒ Binary Search Trees"},
{"๐ Graphs"},
{"๐๏ธ Heap"},
{"๐ Trie"}
};
}
}/*
Suggestions or feedback with respect to the code are welcome and appreciated.
*/