Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hadeel-abdeljalil/some-challenges-using-dart.
https://github.com/hadeel-abdeljalil/some-challenges-using-dart.
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hadeel-abdeljalil/some-challenges-using-dart.
- Owner: Hadeel-Abdeljalil
- Created: 2023-12-17T16:57:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-18T11:35:21.000Z (about 1 year ago)
- Last Synced: 2024-02-16T23:38:48.975Z (11 months ago)
- Language: Dart
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Challenges using Dart
The challenges are as follows:
* Stacks:
* Challenge 1: Reverse a List
Create a function that prints the contents of a list in reverse order.* Challenge 2: Balance the Parentheses
Check for balanced parentheses. Given a string, check if there are ( and ) characters, and return true if the parentheses in the string are balanced.* Linked List:
* Challenge 1: Print in Reverse
Create a function that prints the nodes of a linked list in reverse order.* Challenge 2: Find the Middle Node
Create a function that finds the middle node of a linked list.* Challenge 3: Reverse a Linked List
Create a function that reverses a linked list. You do this by manipulating the nodes so that they’re linked in the other direction.* Challenge 4: Remove All Occurrences
Create a function that removes all occurrences of a specific element from a linked list.