Developed to successfully complete tasks provided by Fill Labs during the job application process, this project aims to showcase the skills and capabilities of candidates. Below are details regarding the solutions to the given questions and the "User Management Project," a comprehensive project incorporating these solutions.
-
Question 1: Word Sorting
- Problem: Sort a given list of words based on the number of "a" characters within each word in descending order. If some words have the same number of "a" characters, sort them by their lengths.
- Developed Function: Solution 1
-
Question 2: Recursive Function
- Problem: Write a recursive function that takes an integer parameter and produces output based on a specific algorithm.
- Developed Function: Solution 2
-
Question 3: Most Repeated Data
- Problem: Write a function that takes an array/list as a parameter and finds the most repeated data within the given array.
- Developed Function: Solution 3
-
User Management Project
- For detailed information and instructions, please refer to the User Management Project README.md file.
This project has been created to assess candidates' problem-solving skills during the job application process. Candidates can demonstrate their abilities by presenting solutions to the provided questions and exploring the User Management Project.
Write a function that sorts a list of words based on the number of characters "a" within each word in decreasing order. If some words contain the same number of "a" characters, then sort those words by their lengths.
["aaaasd", "a", "aab", "aaabcd", "ef", "cssssssd", "fdz", "kf", "zc", "lklklklklklklklkl", "l"]
["aaaasd", "aaabcd", "aab", "a", "lklklklklklklklkl", "cssssssd", "fdz", "ef", "kf", "zc", "l"]
Write a recursive function that takes an integer parameter. The function should generate the following output based on the provided algorithm.
9
2
4
9
Write a function that takes an array/list as a parameter and finds the most repeated data within the given array.
["apple", "pie", "apple", "red", "red", "red"]
"red"
For detailed information and instructions, please refer to the User Management Project README.md file.